diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..e8e700aa --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,30 @@ +## Legibilidade do Código + +- [ ] O código está legível e segue as boas práticas de codificação? +- [ ] Foram utilizadas convenções de nomenclatura compreensíveis? +- [ ] A formatação do código está consistente e segue as diretrizes do linter? + +## Revisores + +- @revisor1 +- @revisor2 + +## Descrição + + + +## Tarefas + +- [ ] Tarefa 1 +- [ ] Tarefa 2 + +## Screenshots (se aplicável) + + + +## Checklist + +- [ ] Eu testei as alterações localmente. +- [ ] Todos os testes passaram. +- [ ] Eu atualizei a documentação. +- [ ] Eu segui as diretrizes de estilo de código. diff --git a/.gitignore b/.gitignore index 8f8faa28..3da230a6 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,6 @@ node_modules .vscode *.acebase package-lock.json -previous_src \ No newline at end of file +previous_src +./src/settings.ts +**./src/settings.ts \ No newline at end of file diff --git a/package.json b/package.json index 16907943..7a25d744 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,11 @@ "private": false, "repository": "github:ivipcoin/ivipbase", "scripts": { - "dev": "nodemon ./test", + "dev": "nodemon ./src/server/services/database/Node/NodeRestructureJson.ts", + "dev2": "nodemon ./src/server/services/database/Node/NodeResultWithPath.ts", + + "dev3": "nodemon ./test/set.ts", + "dev4": "nodemon ./test/mde.ts", "build": "npm run build:clean && npm run build:esm && npm run build:cjs && npm run build:packages && echo Done!", "build:clean": "rimraf dist", "build:esm": "tsc -p tsconfig.json && npx tsc-esm-fix ---target='dist/esm'", @@ -42,7 +46,7 @@ "dotenv": "^16.0.3", "express": "^4.17.1", "ivipbase-core": "^1.5.2", - "mongodb": "^5.5.0", + "mongodb": "^5.9.1", "proper-lockfile": "^4.1.2", "socket.io": "^4.5.0", "swagger-jsdoc": "^6.1.0", @@ -79,4 +83,4 @@ "exec": "node --loader ts-node/esm", "ext": "js,ts" } -} +} \ No newline at end of file diff --git a/src/server/services/database/MDE/index.ts b/src/server/services/database/MDE/index.ts new file mode 100644 index 00000000..3f045f7b --- /dev/null +++ b/src/server/services/database/MDE/index.ts @@ -0,0 +1,1001 @@ +import { PathInfo, PathReference, SimpleEventEmitter, Utils } from "ivipbase-core"; +import { NoderestructureJson } from "../Node/NodeRestructureJson"; +import settings from "../../../../settings"; +import { randomUUID } from "crypto"; + +const { encodeString, isDate } = Utils; + +export const nodeValueTypes = { + EMPTY: 0, + // Native types: + OBJECT: 1, + ARRAY: 2, + NUMBER: 3, + BOOLEAN: 4, + STRING: 5, + BIGINT: 7, + // Custom types: + DATETIME: 6, + BINARY: 8, + REFERENCE: 9, + + DEDICATED_RECORD: 99, +} as const; + +export type NodeValueType = (typeof nodeValueTypes)[keyof typeof nodeValueTypes]; +export const VALUE_TYPES = nodeValueTypes as Record; + +/** + * Retorna o nome descritivo de um tipo de valor com base no código do tipo. + * + * @param {number} valueType - O código do tipo de valor. + * @returns {string} - O nome descritivo do tipo de valor correspondente. + * @throws {Error} - Se o código do tipo de valor fornecido for desconhecido. + * + * @example + * const typeName = getValueTypeName(VALUE_TYPES.STRING); + * // Retorna: "string" + * + * @example + * const typeName = getValueTypeName(99); + * // Retorna: "dedicated_record" + */ +export function getValueTypeName(valueType: number) { + switch (valueType) { + case VALUE_TYPES.ARRAY: + return "array"; + case VALUE_TYPES.BINARY: + return "binary"; + case VALUE_TYPES.BOOLEAN: + return "boolean"; + case VALUE_TYPES.DATETIME: + return "date"; + case VALUE_TYPES.NUMBER: + return "number"; + case VALUE_TYPES.OBJECT: + return "object"; + case VALUE_TYPES.REFERENCE: + return "reference"; + case VALUE_TYPES.STRING: + return "string"; + case VALUE_TYPES.BIGINT: + return "bigint"; + case VALUE_TYPES.DEDICATED_RECORD: + return "dedicated_record"; + default: + "unknown"; + } +} + +/** + * Retorna um valor padrão para um tipo de valor com base no código do tipo. + * + * @param {number} valueType - O código do tipo de valor. + * @returns {any} - Um valor padrão correspondente ao tipo de valor especificado. + * + * @example + * const defaultValue = getValueTypeDefault(VALUE_TYPES.STRING); + * // Retorna: "" + * + * @example + * const defaultValue = getValueTypeDefault(VALUE_TYPES.NUMBER); + * // Retorna: 0 + */ +function getValueTypeDefault(valueType: number) { + switch (valueType) { + case VALUE_TYPES.ARRAY: + return []; + case VALUE_TYPES.OBJECT: + return {}; + case VALUE_TYPES.NUMBER: + return 0; + case VALUE_TYPES.BOOLEAN: + return false; + case VALUE_TYPES.STRING: + return ""; + case VALUE_TYPES.BIGINT: + return BigInt(0); + case VALUE_TYPES.DATETIME: + return new Date().toISOString(); + case VALUE_TYPES.BINARY: + return new Uint8Array(); + case VALUE_TYPES.REFERENCE: + return null; + default: + return undefined; // Or any other default value you prefer + } +} + +/** + * Determina o tipo de valor de um node com base no valor fornecido. + * + * @param {unknown} value - O valor a ser avaliado. + * @returns {number} - O código do tipo de valor correspondente. + * + * @example + * const valueType = getNodeValueType([1, 2, 3]); + * // Retorna: VALUE_TYPES.ARRAY + * + * @example + * const valueType = getNodeValueType(new PathReference()); + * // Retorna: VALUE_TYPES.REFERENCE + */ +export function getNodeValueType(value: unknown) { + if (value instanceof Array) { + return VALUE_TYPES.ARRAY; + } else if (value instanceof PathReference) { + return VALUE_TYPES.REFERENCE; + } else if (value instanceof ArrayBuffer) { + return VALUE_TYPES.BINARY; + } else if (isDate(value)) { + return VALUE_TYPES.DATETIME; + } + // TODO else if (value instanceof DataDocument) { return VALUE_TYPES.DOCUMENT; } + else if (typeof value === "string") { + return VALUE_TYPES.STRING; + } else if (typeof value === "object") { + return VALUE_TYPES.OBJECT; + } else if (typeof value === "bigint") { + return VALUE_TYPES.BIGINT; + } + return VALUE_TYPES.EMPTY; +} + +/** + * Determina o tipo de valor de um dado com base no valor fornecido. + * + * @param {unknown} value - O valor a ser avaliado. + * @returns {number} - O código do tipo de valor correspondente. + * + * @example + * const valueType = getValueType([1, 2, 3]); + * // Retorna: VALUE_TYPES.ARRAY + * + * @example + * const valueType = getValueType(new PathReference()); + * // Retorna: VALUE_TYPES.REFERENCE + */ +export function getValueType(value: unknown) { + if (value instanceof Array) { + return VALUE_TYPES.ARRAY; + } else if (value instanceof PathReference) { + return VALUE_TYPES.REFERENCE; + } else if (value instanceof ArrayBuffer) { + return VALUE_TYPES.BINARY; + } else if (isDate(value)) { + return VALUE_TYPES.DATETIME; + } + // TODO else if (value instanceof DataDocument) { return VALUE_TYPES.DOCUMENT; } + else if (typeof value === "string") { + return VALUE_TYPES.STRING; + } else if (typeof value === "object") { + return VALUE_TYPES.OBJECT; + } else if (typeof value === "number") { + return VALUE_TYPES.NUMBER; + } else if (typeof value === "boolean") { + return VALUE_TYPES.BOOLEAN; + } else if (typeof value === "bigint") { + return VALUE_TYPES.BIGINT; + } + return VALUE_TYPES.EMPTY; +} + +class NodeAddress { + constructor(public readonly path: string) {} + + toString() { + return `"/${this.path}"`; + } + + /** + * Compares this address to another address + */ + equals(address: NodeAddress) { + return this.path === address.path; + } +} + +class NodeInfo { + path?: string; + type?: NodeValueType; + index?: number; + key?: string; + exists?: boolean; + /** TODO: Move this to BinaryNodeInfo */ + address?: NodeAddress; + value?: any; + childCount?: number; + + constructor(info: Partial) { + this.path = info.path; + this.type = info.type; + this.index = info.index; + this.key = info.key; + this.exists = info.exists; + this.address = info.address; + this.value = info.value; + this.childCount = info.childCount; + + if (typeof this.path === "string" && typeof this.key === "undefined" && typeof this.index === "undefined") { + const pathInfo = PathInfo.get(this.path); + if (typeof pathInfo.key === "number") { + this.index = pathInfo.key; + } else { + this.key = pathInfo.key as any; + } + } + if (typeof this.exists === "undefined") { + this.exists = true; + } + } + + get valueType() { + return this.type; + } + + get valueTypeName() { + return getValueTypeName(this.valueType as any); + } + + toString() { + if (!this.exists) { + return `"${this.path}" doesn't exist`; + } + if (this.address) { + return `"${this.path}" is ${this.valueTypeName} stored at ${this.address.toString()}`; + } else { + return `"${this.path}" is ${this.valueTypeName} with value ${this.value}`; + } + } +} + +class CustomStorageNodeInfo extends NodeInfo { + address?: NodeAddress; + revision: string; + revision_nr: number; + created: Date; + modified: Date; + + constructor(info: Omit) { + super(info); + this.revision = info.revision; + this.revision_nr = info.revision_nr; + this.created = info.created; + this.modified = info.modified; + } +} + +/** Interface for metadata being stored for nodes */ +class StorageNodeMetaData { + /** cuid (time sortable revision id). Nodes stored in the same operation share this id */ + revision = ""; + /** Number of revisions, starting with 1. Resets to 1 after deletion and recreation */ + revision_nr = 0; + /** Creation date/time in ms since epoch UTC */ + created = 0; + /** Last modification date/time in ms since epoch UTC */ + modified = 0; + /** Type of the node's value. 1=object, 2=array, 3=number, 4=boolean, 5=string, 6=date, 7=reserved, 8=binary, 9=reference */ + type = 0 as NodeValueType; +} + +/** Interface for metadata combined with a stored value */ +class StorageNode extends StorageNodeMetaData { + /** only Object, Array, large string and binary values. */ + value: any = null; + constructor() { + super(); + } +} + +interface StorageNodeInfo { + path: string; + content: StorageNode; +} + +/** + * Representa as configurações de um MDE. + */ +class MDESettings { + /** + * O prefixo associado ao armazenamento de dados. Por padrão, é "root". + * @type {string} + * @default "root" + */ + prefix: string = "root"; + + /** + * Tamanho máximo, em bytes, dos dados filhos a serem armazenados em um registro pai + * antes de serem movidos para um registro dedicado. O valor padrão é 50. + * @type {number} + * @default 50 + */ + maxInlineValueSize: number = 50; + + /** + * Em vez de lançar erros em propriedades não definidas, esta opção permite + * remover automaticamente as propriedades não definidas. O valor padrão é false. + * @type {boolean} + * @default false + */ + removeVoidProperties: boolean = false; + + /** + * Uma função que realiza uma pesquisa de dados na base de dados com base em uma expressão regular resultada da propriedade pathToRegex em MDE. + * + * @type {((expression: RegExp) => Promise ) | undefined} + * @default undefined + */ + searchData: (expression: RegExp) => Promise | StorageNodeInfo[] = () => []; + + init: ((this: MDE) => void) | undefined; + + /** + * Cria uma instância de MDESettings com as opções fornecidas. + * @param options - Opções para configurar o node. + */ + constructor(options: Partial) { + if (typeof options.prefix === "string" && options.prefix.trim() !== "") { + this.prefix = options.prefix; + } + + if (typeof options.maxInlineValueSize === "number") { + this.maxInlineValueSize = options.maxInlineValueSize; + } + + if (typeof options.removeVoidProperties === "boolean") { + this.removeVoidProperties = options.removeVoidProperties; + } + + if (typeof options.removeVoidProperties === "boolean") { + this.removeVoidProperties = options.removeVoidProperties; + } + + this.searchData = async (reg) => { + if (typeof options.searchData === "function") { + return await Promise.race([options.searchData(reg)]); + } + return []; + }; + + if (typeof options.init === "function") { + this.init = options.init; + } + } +} + +export default class MDE extends SimpleEventEmitter { + /** + * As configurações do node. + */ + readonly settings: MDESettings; + + /** + * Uma lista de informações sobre nodes, mantido em cache até que as modificações sejam processadas no BD com êxito. + * + * @type {StorageNodeInfo[]} + */ + private nodes: StorageNodeInfo[] = []; + + constructor(options: Partial) { + super(); + this.settings = new MDESettings(options); + this.init(); + } + + private init() { + if (typeof this.settings.init === "function") { + this.settings.init.apply(this, []); + } + } + + /** + * Converte um caminho em uma expressão regular. + * + * @param {string} path - O caminho a ser convertido em expressão regular. + * @param {boolean} allHeirs - Indica se todos os descendentes devem ser incluídos. + * @returns {RegExp} - A expressão regular resultante. + */ + private pathToRegex(path: string, allHeirs: boolean = false): RegExp { + const pathsRegex: string[] = []; + + /** + * Substitui o caminho por uma expressão regular. + * @param path - O caminho a ser convertido em expressão regular. + * @returns {string} O caminho convertido em expressão regular. + */ + const replasePathToRegex = (path: string) => { + path = path.replace(/\/((\*)|(\$[^/\$]*))/g, "/([^/]*)"); + path = path.replace(/\[\*\]/g, "\\[(\\d+)\\]"); + return path; + }; + + // Adiciona a expressão regular do caminho principal ao array. + pathsRegex.push(`${replasePathToRegex(path)}(/([^/]*))${allHeirs ? "+" : ""}?`); + + // Obtém o caminho pai e adiciona a expressão regular correspondente ao array. + const parentPath = new PathInfo(path).parentPath; + pathsRegex.push(`${replasePathToRegex(parentPath)}(/([^/]*))${allHeirs ? "+" : ""}?`); + + // Cria a expressão regular completa combinando as expressões individuais no array. + const fullRegex: RegExp = new RegExp(`^(${pathsRegex.join("$)|(")}$)`); + + return fullRegex; + } + + /** + * Verifica se um caminho específico existe no nó. + * @param path - O caminho a ser verificado. + * @returns {Promise} `true` se o caminho existir no nó, `false` caso contrário. + */ + async isPathExists(path: string): Promise { + const reg = this.pathToRegex(path, false); + let nodeList: StorageNodeInfo[] = this.nodes.filter(({ path }) => reg.test(path)); + + try { + const response = await this.settings.searchData(reg); + nodeList = nodeList.concat(response ?? []); + } catch {} + + nodeList = nodeList + .sort(({ content: { modified: aM } }, { content: { modified: bM } }) => { + return aM > bM ? -1 : aM < bM ? 1 : 0; + }) + .filter(({ path, content: { modified } }, i, l) => { + const indexRecent = l.findIndex(({ path: p, content: { modified: m } }) => p === path && m > modified); + return indexRecent < 0 || indexRecent === i; + }); + + return nodeList.findIndex(({ path: p }) => p === path) >= 0; + } + + /** + * Verifica se um valor pode ser armazenado em um objeto pai ou se deve ser movido + * para um registro dedicado com base nas configurações de tamanho máximo (`maxInlineValueSize`). + * @param value - O valor a ser verificado. + * @returns {boolean} `true` se o valor pode ser armazenado inline, `false` caso contrário. + * @throws {TypeError} Lança um erro se o tipo do valor não for suportado. + */ + private valueFitsInline(value: any) { + if (typeof value === "number" || typeof value === "boolean" || isDate(value)) { + return true; + } else if (typeof value === "string") { + if (value.length > this.settings.maxInlineValueSize) { + return false; + } + // Se a string contém caracteres Unicode, o tamanho em bytes será maior do que `value.length`. + const encoded = encodeString(value); + return encoded.length < this.settings.maxInlineValueSize; + } else if (value instanceof PathReference) { + if (value.path.length > this.settings.maxInlineValueSize) { + return false; + } + // Se o caminho contém caracteres Unicode, o tamanho em bytes será maior do que `value.path.length`. + const encoded = encodeString(value.path); + return encoded.length < this.settings.maxInlineValueSize; + } else if (value instanceof ArrayBuffer) { + return value.byteLength < this.settings.maxInlineValueSize; + } else if (value instanceof Array) { + return value.length === 0; + } else if (typeof value === "object") { + return Object.keys(value).length === 0; + } else { + throw new TypeError("What else is there?"); + } + } + + /** + * Responsável pela mesclagem de nodes soltos, apropriado para evitar conflitos de dados. + * + * @param {StorageNodeInfo[]} nodes - Lista de nodes a serem processados. + * + * @returns {{ + * result: StorageNodeInfo[]; + * added: StorageNodeInfo[]; + * modified: StorageNodeInfo[]; + * removed: StorageNodeInfo[]; + * }} Retorna uma lista de informações sobre os nodes de acordo com seu estado. + */ + private prepareMergeNodes = ( + nodes: StorageNodeInfo[], + ): { + result: StorageNodeInfo[]; + added: StorageNodeInfo[]; + modified: StorageNodeInfo[]; + removed: StorageNodeInfo[]; + } => { + const result: StorageNodeInfo[] = []; + + let added: StorageNodeInfo[] = []; + let modified: StorageNodeInfo[] = []; + let removed: StorageNodeInfo[] = []; + + const setNodeBy = (node: StorageNodeInfo): number => { + const index = result.findIndex(({ path }) => PathInfo.get(node.path).equals(path)); + if (index < 0) { + result.push(node); + added.push(node); + return result.length - 1; + } + + result[index] = node; + const indexModified = modified.findIndex(({ path }) => PathInfo.get(node.path).equals(path)); + + if (indexModified < 0) { + added = added.filter(({ path }) => PathInfo.get(node.path).equals(path) !== true); + modified.push(node); + } + + return index; + }; + + const pathsRemoved: string[] = nodes + .sort(({ content: { modified: aM } }, { content: { modified: bM } }) => { + return aM > bM ? -1 : aM < bM ? 1 : 0; + }) + .filter(({ path, content: { modified } }, i, l) => { + const indexRecent = l.findIndex(({ path: p, content: { modified: m } }) => p === path && m > modified); + return indexRecent < 0 || indexRecent === i; + }) + .filter(({ content }) => content.type === nodeValueTypes.EMPTY || content.value === null) + .map(({ path }) => path); + + for (let node of nodes) { + if (pathsRemoved.findIndex((path) => PathInfo.get(path).equals(node.path) || PathInfo.get(path).isAncestorOf(node.path)) >= 0) { + removed.push(node); + continue; + } + + if (node.content.type === nodeValueTypes.EMPTY || node.content.value === null) { + continue; + } + + const pathInfo = PathInfo.get(node.path); + const index = result.findIndex(({ path }) => pathInfo.equals(path) || pathInfo.isParentOf(path) || pathInfo.isChildOf(path)); + if (index < 0) { + setNodeBy(node); + continue; + } + + const lastNode = result[index]; + + if (pathInfo.equals(lastNode.path)) { + switch (lastNode.content.type) { + case nodeValueTypes.OBJECT: + case nodeValueTypes.ARRAY: { + const { created, revision_nr } = lastNode.content.modified > node.content.modified ? node.content : lastNode.content; + + const contents = lastNode.content.modified > node.content.modified ? [node.content, lastNode.content] : [lastNode.content, node.content]; + const content_values: object[] = contents.map(({ value }) => value); + + const new_content_value = Object.assign.apply(null, content_values as any); + + result[index].content = Object.assign.apply(null, [ + ...contents, + { + value: Object.fromEntries(Object.entries(new_content_value).filter(([k, v]) => v !== null)), + created, + revision_nr: revision_nr + 1, + } as StorageNode, + ] as any); + + setNodeBy(result[index]); + break; + } + default: { + if (lastNode.content.modified < node.content.modified) { + setNodeBy(node); + } + } + } + + continue; + } + + const parentNodeIsLast = pathInfo.isChildOf(lastNode.path); + const parentNode = !parentNodeIsLast ? node : lastNode; + const childNode = parentNodeIsLast ? node : lastNode; + const childKey = PathInfo.get(childNode.path).key; + + if (parentNode.content.type === nodeValueTypes.OBJECT && childKey !== null) { + let parentNodeModified: boolean = false; + + if ( + [nodeValueTypes.STRING, nodeValueTypes.BIGINT, nodeValueTypes.BOOLEAN, nodeValueTypes.DATETIME, nodeValueTypes.NUMBER].includes(childNode.content.type as any) && + this.valueFitsInline(childNode.content.value) + ) { + parentNode.content.value[childKey] = childNode.content.value; + parentNodeModified = true; + } else if (childNode.content.type === nodeValueTypes.EMPTY) { + parentNode.content.value[childKey] = null; + parentNodeModified = true; + } + + if (parentNodeModified) { + result[index] = parentNode; + setNodeBy(result[index]); + continue; + } + } + + setNodeBy(node); + } + + return { result, added, modified, removed }; + }; + + /** + * Obtém uma lista de nodes com base em um caminho e opções adicionais. + * + * @param {string} path - O caminho a ser usado para filtrar os nodes. + * @param {boolean} [allHeirs=false] - Indica se todos os descendentes devem ser incluídos. + * @returns {Promise} - Uma Promise que resolve para uma lista de informações sobre os nodes. + * @throws {Error} - Lança um erro se ocorrer algum problema durante a busca assíncrona. + */ + async getNodesBy(path: string, allHeirs: boolean = false): Promise { + const reg = this.pathToRegex(path, allHeirs); + let nodeList: StorageNodeInfo[] = this.nodes.filter(({ path }) => reg.test(path)); + + try { + const response = await this.settings.searchData(reg); + nodeList = nodeList.concat(response ?? []); + } catch {} + + const result = this.prepareMergeNodes( + nodeList.sort(({ content: { modified: aM } }, { content: { modified: bM } }) => { + return aM > bM ? -1 : aM < bM ? 1 : 0; + }), + ).result; + + let nodes = result.filter(({ path: p }) => PathInfo.get(path).equals(p)); + + if (nodes.length > 0 && allHeirs) { + nodes = result.filter(({ path: p }) => PathInfo.get(path).equals(p) || PathInfo.get(path).isAncestorOf(p)); + } else if (nodes.length <= 0) { + nodes = result.filter(({ path: p }) => PathInfo.get(path).isChildOf(p)); + } + + return nodes; + } + + /** + * Obtém o node pai de um caminho específico. + * @param path - O caminho para o qual o node pai deve ser obtido. + * @returns {Promise} O node pai correspondente ao caminho ou `undefined` se não for encontrado. + */ + private async getNodeParentBy(path: string): Promise { + const pathInfo = PathInfo.get(path); + + const nodes = await this.getNodesBy(path, false); + + return nodes + .filter((node) => { + const nodePath = PathInfo.get(node.path); + return nodePath.path === "" || pathInfo.path === nodePath.path || nodePath.isParentOf(pathInfo); + }) + .sort((a: StorageNodeInfo, b: StorageNodeInfo): number => { + const pathA = PathInfo.get(a.path); + const pathB = PathInfo.get(b.path); + return pathA.isDescendantOf(pathB.path) ? -1 : pathB.isDescendantOf(pathA.path) ? 1 : 0; + }) + .shift(); + } + + /** + * Adiciona um ou mais nodes a matriz de nodes atual e aplica evento de alteração. + * @param nodes - Um ou mais nós a serem adicionados. + * @returns {MDE} O nó atual após a adição dos nós. + */ + pushNode(...nodes: (StorageNodeInfo[] | StorageNodeInfo)[]): MDE { + const forNodes: StorageNodeInfo[] = + Array.prototype.concat + .apply( + [], + nodes.map((node) => (Array.isArray(node) ? node : [node])), + ) + .filter((node: any = {}) => node && typeof node.path === "string" && "content" in node) ?? []; + + for (let node of forNodes) { + this.nodes.push(node); + } + + return this; + } + + /** + * Obtém informações personalizadas sobre um node com base no caminho especificado. + * + * @param {string} path - O caminho do node para o qual as informações devem ser obtidas. + * @returns {CustomStorageNodeInfo} - Informações personalizadas sobre o node especificado. + */ + getInfoBy(path: string): CustomStorageNodeInfo { + const pathInfo = PathInfo.get(path); + + const defaultNode = new CustomStorageNodeInfo({ + path: pathInfo.path, + key: typeof pathInfo.key === "string" ? pathInfo.key : undefined, + index: typeof pathInfo.key === "number" ? pathInfo.key : undefined, + type: 0 as NodeValueType, + exists: false, + address: undefined, + created: new Date(), + modified: new Date(), + revision: "", + revision_nr: 0, + }); + + return defaultNode; + } + + /** + * Obtém valor referente ao path específico. + * + * @template T - Tipo genérico para o retorno da função. + * @param {string} path - Caminho de um node raiz. + * @param {boolean} [onlyChildren=true] - Se verdadeiro, exporta apenas os filhos do node especificado. + * @return {Promise} - Retorna valor referente ao path ou undefined se nenhum node for encontrado. + */ + async get(path: string, onlyChildren: boolean = true): Promise { + const nodes = await this.getNodesBy(path, onlyChildren); + + const restructurerInstance = new NoderestructureJson(settings.uri); + + const restructuredJson = restructurerInstance.restructureJson(nodes); + + const dataFromMongoConvertedToJSON = JSON.stringify(restructuredJson, null, 2); + + const saveJsonIntoFile = restructurerInstance.convertToJsonAndSaveToFile(dataFromMongoConvertedToJSON); + + return dataFromMongoConvertedToJSON as any; + } + + /** + * Define um valor no armazenamento com o caminho especificado. + * + * @param {string} path - O caminho do node a ser definido. + * @param {any} value - O valor a ser armazenado em nodes. + * @param {Object} [options] - Opções adicionais para controlar o comportamento da definição. + * @param {string} [options.assert_revision] - Uma string que representa a revisão associada ao node, se necessário. + * @returns {Promise} + */ + +set(path: string, value: any, options: { assert_revision?: string } = {}): Result[] { + const results: Result[] = []; + + if (path.trim() === "") { + throw new Error(`Invalid path node`); + } + + const pathInfo = PathInfo.get(path); + + if (typeof value === "object" && !Array.isArray(value)) { + this.processObject(value, { path: pathInfo.path }, results, options); + } + let currentPath = ""; + + PathInfo.get(path).keys.forEach((part, i) => { + currentPath += (i > 0 ? "/" : "") + part; + + if (!Array.isArray(value)) { + const arrayResult = { + path: currentPath.substring(1), + type: "VERIFY", + content: { + // type: nodeValueTypes.ARRAY, + type: this.getType(value), + value: {}, + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + if (arrayResult.path) { + results.push(arrayResult as any); + } + } + }); + + const theKey: any = pathInfo.key; + + if (Array.isArray(value) && value.length > 0) { + value.forEach((obj, i) => { + const currentPath = `${path}[${i}]`; + const processedValue = { + [theKey]: obj, + }; + const arrayResult: Result = { + path: currentPath, + type: "SET", + content: { + type: nodeValueTypes.ARRAY, + value: processedValue, + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(arrayResult); + }); + const arrayResult: Result = { + path: pathInfo.path, + type: "SET", + content: { + type: nodeValueTypes.ARRAY, + value: {}, + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(arrayResult); + } else { + const valueType = this.getType(value); + const processedValue = { + [theKey]: value, + }; + + if (typeof value === "string") { + const processedValue = { + [theKey]: value, + }; + const nonObjectResult: Result = { + path: pathInfo.parentPath as string, + type: "SET", + content: { + type: valueType as any, + value: processedValue, + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(nonObjectResult); + } + } + return results; + } + + + public getType(value: unknown): number { + if (Array.isArray(value)) { + return nodeValueTypes.ARRAY; + } else if (value && typeof value === "object") { + return nodeValueTypes.OBJECT; + } else if (typeof value === "number") { + return nodeValueTypes.NUMBER; + } else if (typeof value === "boolean") { + return nodeValueTypes.BOOLEAN; + } else if (typeof value === "string") { + return nodeValueTypes.STRING; + } else if (typeof value === "bigint") { + return nodeValueTypes.BIGINT; + } else if (typeof value === "object" && (value as any).type === 6) { + return nodeValueTypes.DATETIME; + } else { + return nodeValueTypes.EMPTY; + } + } + + public generateShortUUID(): string { + const fullUUID = randomUUID(); + const shortUUID = fullUUID.replace(/-/g, "").slice(0, 24); + return shortUUID; + } + + public processObject(obj, pathInfo, results, options) { + const currentPath = pathInfo.path; + const { assert_revision = "lnt02q7v0007oohx37705737" } = options; + const MAX_KEY_LENGTH = 50; + + if (typeof obj !== "object" || Array.isArray(obj)) { + return; + } + + const nonObjectKeys = {}; + let otherObject; + let maior; + + for (const [key, value] of Object.entries(obj)) { + const childPath = `${currentPath}/${key}`; + + if (Array.isArray(value)) { + value.forEach((element, index) => { + const arrayElementPath = `${childPath}[${index}]`; + this.processObject(element, { path: arrayElementPath }, results, options); + }); + const resultContent = { + path: childPath, + type: "SET", + content: { + type: nodeValueTypes.ARRAY, + value: {}, + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(resultContent); + } else if (typeof value === "object") { + this.processObject(value, { path: childPath }, results, options); + } else { + const valueType = this.getType(value); + if (String(value).length >= MAX_KEY_LENGTH) { + const resultContent = { + path: childPath, + type: "SET", + content: { + type: valueType, + value: value, + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(resultContent); + } else { + nonObjectKeys[key] = value; + if (String(value).length >= MAX_KEY_LENGTH) { + maior = Object.entries(nonObjectKeys) + .filter(([k, v]) => typeof v !== "string" || String(v).length >= MAX_KEY_LENGTH) + .reduce((acc, [k, v]) => { + acc[k] = v; + return acc; + }, {}); + } + } + } + } + + if (Object.keys(nonObjectKeys).length > 0) { + const resultContent = { + path: currentPath, + type: "SET", + content: { + type: nodeValueTypes.OBJECT, + value: otherObject || nonObjectKeys, + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(resultContent); + } + + if (maior) { + const resultContent = { + path: `${currentPath}/maior`, + type: "SET", + content: { + type: nodeValueTypes.OBJECT, + value: maior, + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(resultContent); + } + } +} + + +type Result = { + path: string; + type: string, + content: { + type: (typeof nodeValueTypes)[keyof typeof nodeValueTypes]; + value: Record | string | number; + revision: string; + revision_nr: number; + created: number; + modified: number; + }; +}; \ No newline at end of file diff --git a/src/server/services/database/Node/NodeRestructureJson.ts b/src/server/services/database/Node/NodeRestructureJson.ts new file mode 100644 index 00000000..53bfe588 --- /dev/null +++ b/src/server/services/database/Node/NodeRestructureJson.ts @@ -0,0 +1,186 @@ +import { MongoClient } from "mongodb"; +import fs from "fs"; +import path from "path"; + +const INPUT_FILE_NAME = "../../../../../test/myjsonfile.json"; + +// Class encapsulating the data restructuring functionality +export class NoderestructureJson { + private readonly uri: string; + private readonly client: MongoClient; + + constructor(uri: string) { + this.uri = uri; + this.client = new MongoClient(uri); + } + + // Establish a connection to the MongoDB database + private async connectToDatabase() { + await this.client.connect(); + } + + // Close the connection to the MongoDB database + private async closeDatabaseConnection() { + await this.client.close(); + } + + // Restructure JSON data based on specified logic + public restructureJson(entries: any[] | Record) { + let array_entries = entries; + + if (!Array.isArray(entries)) { + array_entries = [entries]; + } + + function convertDates(obj) { + // Verifica se o argumento é um objeto + if (typeof obj === "object" && obj !== null) { + // Percorre as chaves do objeto + for (const key in obj) { + // Verifica se a chave é um objeto que atende à condição especificada + if (obj[key] && typeof obj[key] === "object" && obj[key].type === 6 && obj[key].value && typeof obj[key].value === "number") { + // Converte o valor da chave para uma string de data formatada + obj[key] = new Date(obj[key].value).toISOString(); + } else if (typeof obj[key] === "object") { + // Se a chave for um objeto, chama a função recursivamente para processar os subobjetos + convertDates(obj[key]); + } + } + } + + return obj; + } + + const result = {}; + const KEY_THAT_MUST_BE_ARRAY = ["costs"]; + + array_entries.forEach((entry) => { + const { path, content } = entry; + convertDates(entry); + + if (typeof path !== "string") { + console.error("Invalid input: path should be a string"); + return; + } + + const parts = path.split("/"); + let current = result; + + for (let i = 0; i < parts.length; i++) { + const part = parts[i]; + + if (i === parts.length - 1) { + let key = part.replace(/__+/g, "_").replace(/^_+|_+$/g, ""); + const { value } = content; + + if (!current[key]) { + key = key.split("[")[0]; + + if (KEY_THAT_MUST_BE_ARRAY.includes(key)) { + current[key] = []; + + if (Object.keys(value).length) { + current[key].push(value); + } + } else { + current[key] = value; + } + } + } else { + if (!current[part]) { + current[part] = {}; + } + + current = current[part]; + } + } + }); + + return result; + } + + // Fetch data from MongoDB collection + private async fetchDataFromMongoDB() { + const collection = this.client.db("root").collection("teste"); + const limit = 50; + + // console.log(new Date().getSeconds(), "antes da busca"); + const resultData = await collection.find().toArray(); + const afterLimit = resultData.slice(0, limit); + + return afterLimit; + } + + // Convert JSON data to string and save it to a file + public convertToJsonAndSaveToFile(dataWithOutPathFromMongodb) { + // console.log(dataWithOutPathFromMongodb); + + const fileAddress: any = "./test/outputRestructuredJSON.json"; + fs.writeFile(fileAddress, dataWithOutPathFromMongodb, (error) => { + if (error) { + console.error("Algum erro aconteceu", error); + } else { + console.log(fileAddress); + } + }); + + return dataWithOutPathFromMongodb; + } + + private async readFilesUsingPath(inputFile) { + const filePath = path.join(__dirname, inputFile); + + try { + const data = fs.readFileSync(filePath, "utf8"); + const result = JSON.parse(data); + + return result; + } catch (err) { + console.error("Error reading or parsing the file:", err); + } + } + + // public async main(choose: string) { + // switch (choose) { + // case "REMOTE": + // try { + // await this.connectToDatabase(); + + // const entries = await this.fetchDataFromMongoDB(); + // const dataAfterToBeRestructured = this.restructureJson(entries); + // const dataFromMongoConvertedToJSON = JSON.stringify(dataAfterToBeRestructured, null, 2); + + // // // console.log(this.convertToJsonAndSaveToFile(dataFromMongoConvertedToJSON)); + // // console.log(dataFromMongoConvertedToJSON, "to aqui"); + // this.convertToJsonAndSaveToFile(dataFromMongoConvertedToJSON); + + // // console.log(new Date().getSeconds(), "final da busca"); + // } finally { + // await this.closeDatabaseConnection(); + // } + + // break; + // case "LOCAL": + // try { + // const entries = await this.readFilesUsingPath(INPUT_FILE_NAME); + + // const dataAfterToBeRestructured = this.restructureJson(entries); + // const dataFromMongoConvertedToJSON = JSON.stringify(dataAfterToBeRestructured, null, 2); + + // this.convertToJsonAndSaveToFile(dataFromMongoConvertedToJSON); + + // // console.log(new Date().getSeconds(), "final da busca"); + // } finally { + // console.log("LIDO COM SUCESSO"); + // } + // break; + + // default: + // } + // } +} + +// // Usage +// const uri = "mongodb://manager:9Hq91q5oExU9biOZ7yq98I8P1DU1ge@ivipcoin-api.com:4048/?authMechanism=DEFAULT"; +// const dataRestructure = new NoderestructureJson(uri); +// dataRestructure.main("REMOTE").catch(console.error); diff --git a/src/server/services/database/Node/NodeResultWithPath.ts b/src/server/services/database/Node/NodeResultWithPath.ts new file mode 100644 index 00000000..80b281c3 --- /dev/null +++ b/src/server/services/database/Node/NodeResultWithPath.ts @@ -0,0 +1,268 @@ +import * as fs from "fs"; +import * as path from "path"; + +import { randomUUID } from "crypto"; + +type NodeValueType = keyof typeof nodeValueTypes; + +type Result = { + path: string; + content: { + type: number; + value: Record | string | number | any; + revision: string; + revision_nr: number; + created: number; + modified: number; + }; +}; + +const FILE_ADDRESS_INPUT = "../../../../../test/__movement_wallet__.json"; + +const FILE_ADDRESS_OUTPUT = "./test/outputResultWithPathJSON.json"; +const nodeValueTypes = { + EMPTY: 0, + OBJECT: 1, + ARRAY: 2, + NUMBER: 3, + BOOLEAN: 4, + STRING: 5, + DATETIME: 6, + BIGINT: 7, + BINARY: 8, + REFERENCE: 9, +} as const; + +class ReadFiles { + private fileAddress: string; + private outputResultPath: string; + private fileAddressParam: string; + + constructor(fileAddress?: string, outputResultPath?: string, fileAddressParam?: string) { + this.fileAddress = fileAddress || "./test/outputResultWithPathJSON.json"; + this.outputResultPath = outputResultPath || FILE_ADDRESS_INPUT; + this.fileAddressParam = fileAddressParam || FILE_ADDRESS_INPUT; + } + + public readPath() { + const filePath = path.join(__dirname, this.fileAddressParam); + + fs.readFile(filePath, "utf8", (err, data) => { + if (err) { + console.error("Error reading the file:", err); + return; + } + + console.log(filePath); + + try { + const dataToArray = JSON.parse(data); + const nodeJsonTransformer = new NodeJsonTransformer(); + + const result = nodeJsonTransformer.transform(dataToArray); + + const dataJSONModel = JSON.stringify(result, null, 2); + + const afterRestructureSaveIntoJSONFile = (dataWithOutPathFromMongodb: any) => { + console.log(new Date().getSeconds(), "started"); + + fs.writeFile(this.fileAddress, dataWithOutPathFromMongodb, (error) => { + if (error) { + console.error("Algum erro aconteceu", error); + } else { + console.log(this.fileAddress); + } + }); + + return dataWithOutPathFromMongodb; + }; + + afterRestructureSaveIntoJSONFile(dataJSONModel); + } catch (parseError) { + console.error("Error parsing JSON:", parseError); + } + }); + console.log(new Date().getSeconds(), "end"); + } +} + +class NodeJsonTransformer { + private generateShortUUID(): string { + const fullUUID = randomUUID(); + const shortUUID = fullUUID.replace(/-/g, "").slice(0, 24); + return shortUUID; + } + + public getType(value: unknown): number { + if (Array.isArray(value)) { + return nodeValueTypes.ARRAY; + } else if (value && typeof value === "object") { + return nodeValueTypes.OBJECT; + } else if (typeof value === "number") { + return nodeValueTypes.NUMBER; + } else if (typeof value === "boolean") { + return nodeValueTypes.BOOLEAN; + } else if (typeof value === "string") { + return nodeValueTypes.STRING; + } else if (typeof value === "bigint") { + return nodeValueTypes.BIGINT; + } else if (typeof value === "object" && (value as any).type === 6) { + return nodeValueTypes.DATETIME; + } else { + return nodeValueTypes.EMPTY; + } + } + + public transform(json: Record, prefix: string = ""): Result[] { + const results: Result[] = []; + const nonObjectKeys: Record = {}; + const arrayResults: Result[] = []; + let otherObject; + + for (const key in json) { + const currentPath = `${prefix.replace(/^\//, "")}/${key.replace(/\*\*/g, "")}`; + const currentValue = json[key]; + const valueType = this.getType(currentValue); + + if (typeof currentValue === "string" && currentValue.length >= 50) { + arrayResults.push({ + path: currentPath, + content: { + type: valueType, + value: currentValue, + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }); + } + + if (Array.isArray(currentValue) && currentValue.length > 0 && currentValue.length <= 49) { + // Se for um array com valores, itera por cada elemento + for (let i = 0; i < currentValue.length; i++) { + results.push(...this.transform(currentValue[i] as Record, `${currentPath}[${i}]`)); + } + // Adiciona um resultado para o array vazio + arrayResults.push({ + path: currentPath, + content: { + type: nodeValueTypes.ARRAY, + value: {}, + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }); + } else if (valueType === nodeValueTypes.OBJECT) { + results.push(...this.transform(currentValue as unknown as Record, currentPath)); + } else { + nonObjectKeys[key] = currentValue; + let ob = nonObjectKeys; + otherObject = Object.entries(ob) + .filter(([key, value]) => typeof value !== "string" || value.length < 49) + .reduce((acc, [key, value]) => { + acc[key] = value; + return acc; + }, {} as Record); + } + } + + // Adiciona um único resultado para chaves não objeto + + if (Object.keys(nonObjectKeys).length > 0) { + if (typeof otherObject === "object" && otherObject !== null) { + const nonObjectResult: Result = { + path: `${prefix.replace(/^\//, "")}`, + content: { + type: this.getType(nonObjectKeys), + value: this.filterKeysFromObject(otherObject), + // value: otherObject, + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + + if (nonObjectResult.path) { + results.push(nonObjectResult); + } + } else { + console.error("otherObject is not an object"); + } + } + + // Se não há chaves não objeto, adiciona um resultado com objeto vazio + if (Object.keys(nonObjectKeys).length === 0) { + const nonObjectResult: Result = { + path: `${prefix.replace(/^\//, "")}`, + content: { + type: this.getType({}), + value: {} as any, + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + if (nonObjectResult.path) { + results.push(nonObjectResult); + } + } + + // Adiciona resultados para arrays + results.push(...arrayResults); + + return results; + } + + private filterKeysFromObject(obj) { + const checkIsValidDate = (string) => { + // Expressão regular para validar o padrão da string de data + const datePattern = /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d{3})?([+-]\d{2}:\d{2})?Z?$/; + + if (datePattern.test(string)) { + let date = new Date(string); + return !isNaN(date.getTime()); + } + + return false; + }; + + const processObject = (inputObj) => { + const filteredObject = {}; + + for (const key in inputObj) { + if (checkIsValidDate(inputObj[key])) { + let newDate = new Date(inputObj[key]); + filteredObject[key] = { + type: 6, + value: newDate.getTime(), + }; + } else if (typeof inputObj[key] === "object" && inputObj[key] !== null) { + // Recursively process nested objects + filteredObject[key] = processObject(inputObj[key]); + } else { + // Copy other types of values as is + filteredObject[key] = inputObj[key]; + } + } + + return filteredObject; + }; + + return processObject(obj); + } + // Public method to initiate the transformation + public startTransformation() { + // Example usage: + const instance = new ReadFiles("./test/outputResultWithPathJSON.json", FILE_ADDRESS_OUTPUT, FILE_ADDRESS_INPUT); + instance.readPath(); + } +} + +// Usage +const transformer = new NodeJsonTransformer(); +transformer.startTransformation(); diff --git a/src/server/services/database/Node/index.ts b/src/server/services/database/Node/index.ts index ca68e584..b07e1db8 100644 --- a/src/server/services/database/Node/index.ts +++ b/src/server/services/database/Node/index.ts @@ -36,6 +36,21 @@ export const nodeValueTypes = { export type NodeValueType = (typeof nodeValueTypes)[keyof typeof nodeValueTypes]; export const VALUE_TYPES = nodeValueTypes as Record; +/** + * Retorna o nome descritivo de um tipo de valor com base no código do tipo. + * + * @param {number} valueType - O código do tipo de valor. + * @returns {string} - O nome descritivo do tipo de valor correspondente. + * @throws {Error} - Se o código do tipo de valor fornecido for desconhecido. + * + * @example + * const typeName = getValueTypeName(VALUE_TYPES.STRING); + * // Retorna: "string" + * + * @example + * const typeName = getValueTypeName(99); + * // Retorna: "dedicated_record" + */ export function getValueTypeName(valueType: number) { switch (valueType) { case VALUE_TYPES.ARRAY: @@ -63,6 +78,20 @@ export function getValueTypeName(valueType: number) { } } +/** + * Retorna um valor padrão para um tipo de valor com base no código do tipo. + * + * @param {number} valueType - O código do tipo de valor. + * @returns {any} - Um valor padrão correspondente ao tipo de valor especificado. + * + * @example + * const defaultValue = getValueTypeDefault(VALUE_TYPES.STRING); + * // Retorna: "" + * + * @example + * const defaultValue = getValueTypeDefault(VALUE_TYPES.NUMBER); + * // Retorna: 0 + */ function getValueTypeDefault(valueType: number) { switch (valueType) { case VALUE_TYPES.ARRAY: @@ -88,6 +117,20 @@ function getValueTypeDefault(valueType: number) { } } +/** + * Determina o tipo de valor de um nó com base no valor fornecido. + * + * @param {unknown} value - O valor a ser avaliado. + * @returns {number} - O código do tipo de valor correspondente. + * + * @example + * const valueType = getNodeValueType([1, 2, 3]); + * // Retorna: VALUE_TYPES.ARRAY + * + * @example + * const valueType = getNodeValueType(new PathReference()); + * // Retorna: VALUE_TYPES.REFERENCE + */ export function getNodeValueType(value: unknown) { if (value instanceof Array) { return VALUE_TYPES.ARRAY; @@ -109,6 +152,20 @@ export function getNodeValueType(value: unknown) { return VALUE_TYPES.EMPTY; } +/** + * Determina o tipo de valor de um dado com base no valor fornecido. + * + * @param {unknown} value - O valor a ser avaliado. + * @returns {number} - O código do tipo de valor correspondente. + * + * @example + * const valueType = getValueType([1, 2, 3]); + * // Retorna: VALUE_TYPES.ARRAY + * + * @example + * const valueType = getValueType(new PathReference()); + * // Retorna: VALUE_TYPES.REFERENCE + */ export function getValueType(value: unknown) { if (value instanceof Array) { return VALUE_TYPES.ARRAY; diff --git a/src/settings.example.ts b/src/settings.example.ts new file mode 100644 index 00000000..90d35330 --- /dev/null +++ b/src/settings.example.ts @@ -0,0 +1,6 @@ +import { NoderestructureJson } from "./server/services/database/Node/NodeRestructureJson"; + +// SETTINGS + +const uri = ""; +const dataRestructure = new NoderestructureJson(uri); diff --git a/src/settings.ts b/src/settings.ts new file mode 100644 index 00000000..70aded11 --- /dev/null +++ b/src/settings.ts @@ -0,0 +1,8 @@ +import { NoderestructureJson } from "./server/services/database/Node/NodeRestructureJson"; + +// SETTINGS + +const uri = "mongodb://manager:9Hq91q5oExU9biOZ7yq98I8P1DU1ge@ivipcoin-api.com:4048/?authMechanism=DEFAULT"; +const dataRestructure = new NoderestructureJson(uri); + +export default { uri, dataRestructure }; diff --git a/test/MDE/teste.ts b/test/MDE/teste.ts new file mode 100644 index 00000000..ac1b0d7e --- /dev/null +++ b/test/MDE/teste.ts @@ -0,0 +1,12 @@ +import MDE from "../../src/server/services/database/MDE"; +import jsondata from "../myjsonfile.json"; + +const instance = new MDE({ + prefix: "", + searchData: async (search) => { + return jsondata.filter((node) => search.test(node.path)) as any; + }, +}); + +instance.get("ivipcoin-db::__movement_wallet__/007219693774253022", true); +// instance.get("ivipcoin-db::__movement_wallet__/000523147298669313/balances/", true).then(console.log); diff --git a/test/example.ts b/test/example.ts new file mode 100644 index 00000000..5afe5733 --- /dev/null +++ b/test/example.ts @@ -0,0 +1,191 @@ +import fs from "fs"; +import path from "path"; +import { randomUUID } from "crypto"; + +type NodeValueType = keyof typeof nodeValueTypes; + +type Result = { + path: string; + content: { + type: NodeValueType; + value: Record | string | number; + revision: string; + revision_nr: number; + created: number; + modified: number; + }; +}; + +const nodeValueTypes = { + EMPTY: 0, + OBJECT: 1, + ARRAY: 2, + NUMBER: 3, + BOOLEAN: 4, + STRING: 5, + DATETIME: 6, + BIGINT: 7, + BINARY: 8, + REFERENCE: 9, +} as const; + +function generateShortUUID(): string { + const fullUUID = randomUUID(); + const shortUUID = fullUUID.replace(/-/g, "").slice(0, 24); + return shortUUID; +} + +function getType(value: unknown): NodeValueType { + if (Array.isArray(value)) { + return "ARRAY"; + } else if (value && typeof value === "object") { + return "OBJECT"; + } else if (typeof value === "number") { + return "NUMBER"; + } else if (typeof value === "boolean") { + return "BOOLEAN"; + } else if (typeof value === "string") { + return "STRING"; + } else if (typeof value === "bigint") { + return "BIGINT"; + } else if (typeof value === "object" && (value as any).type === 6) { + return "DATETIME"; + } else { + return "EMPTY"; + } +} + +// +const LITERAL = ["qr_code_base64", "qr_code", "ticket_url", "description", "external_resource_url"]; +function transform(json: Record, prefix: string = ""): Result[] { + const results: Result[] = []; + const nonObjectKeys: Record = {}; + const arrayResults: Result[] = []; + + for (const key in json) { + const currentPath = `${prefix.replace(/^\//, "")}/${key.replace(/\*\*/g, "")}`; + const currentValue = json[key]; + const valueType = getType(currentValue); + + if (typeof currentValue === "string" && currentValue.length >= 50) { + arrayResults.push({ + path: currentPath, + content: { + type: valueType, + value: currentValue, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }); + } + + if (Array.isArray(currentValue) && currentValue.length > 0 && currentValue.length <= 49) { + // Se for um array com valores, itera por cada elemento + for (let i = 0; i < currentValue.length; i++) { + results.push(...transform(currentValue[i] as Record, `${currentPath}[${i}]`)); + } + // Adiciona um resultado para o array vazio + arrayResults.push({ + path: currentPath, + content: { + type: "ARRAY", + value: {}, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }); + } else if (valueType === "OBJECT" && LITERAL.includes(key)) { + console.log(currentValue); + results.push(...transform(currentValue as unknown as Record, currentPath)); + } else { + nonObjectKeys[key] = currentValue; + } + } + + // Adiciona um único resultado para chaves não objeto + + if (Object.keys(nonObjectKeys).length > 0) { + const nonObjectResult: Result = { + path: `${prefix.replace(/^\//, "")}`, + content: { + type: getType(nonObjectKeys), + value: nonObjectKeys as any, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + if (nonObjectResult.path) { + results.push(nonObjectResult); + } + } + + // Se não há chaves não objeto, adiciona um resultado com objeto vazio + if (Object.keys(nonObjectKeys).length === 0) { + const nonObjectResult: Result = { + path: `${prefix.replace(/^\//, "")}`, + content: { + type: getType({}), + value: {} as any, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + if (nonObjectResult.path) { + results.push(nonObjectResult); + } + } + + // Adiciona resultados para arrays + results.push(...arrayResults); + + return results; +} + +function readPath() { + const fileName = "__movement_wallet__.json"; + + const filePath = path.join(__dirname, fileName); + + fs.readFile(filePath, "utf8", (err, data) => { + if (err) { + console.error("Error reading the file:", err); + return; + } + + try { + var dataToArray = JSON.parse(data); + + const result = transform(dataToArray); + + const dataJSONModel = JSON.stringify(result, null, 2); + + function afterRestructureSaveIntoJSONFile(dataWithOutPathFromMongodb) { + console.log(new Date().getSeconds(), "started"); + + const fileAddress: any = "./test/outputResultWithPathJSON.json"; + fs.writeFile(fileAddress, dataWithOutPathFromMongodb, (error) => { + if (error) { + console.error("Algum erro aconteceu", error); + } else { + console.log(fileAddress); + } + }); + + return dataWithOutPathFromMongodb; + } + afterRestructureSaveIntoJSONFile(dataJSONModel); + } catch (parseError) { + console.error("Error parsing JSON:", parseError); + } + }); + console.log(new Date().getSeconds(), "end"); +} +readPath(); diff --git a/test/exemple2.ts b/test/exemple2.ts new file mode 100644 index 00000000..7d185bef --- /dev/null +++ b/test/exemple2.ts @@ -0,0 +1,229 @@ +import fs from "fs"; +import path from "path"; +import { randomUUID } from "crypto"; + +type NodeValueType = keyof typeof nodeValueTypes; + +type Result = { + path: string; + content: { + type: NodeValueType; + value: Record | string | number | any; + revision: string; + revision_nr: number; + created: number; + modified: number; + }; +}; + +const nodeValueTypes = { + EMPTY: 0, + OBJECT: 1, + ARRAY: 2, + NUMBER: 3, + BOOLEAN: 4, + STRING: 5, + DATETIME: 6, + BIGINT: 7, + BINARY: 8, + REFERENCE: 9, +} as const; + +function generateShortUUID(): string { + const fullUUID = randomUUID(); + const shortUUID = fullUUID.replace(/-/g, "").slice(0, 24); + return shortUUID; +} + +function getType(value: unknown): NodeValueType { + if (Array.isArray(value)) { + return "ARRAY"; + } else if (value && typeof value === "object") { + return "OBJECT"; + } else if (typeof value === "number") { + return "NUMBER"; + } else if (typeof value === "boolean") { + return "BOOLEAN"; + } else if (typeof value === "string") { + return "STRING"; + } else if (typeof value === "bigint") { + return "BIGINT"; + } else if (typeof value === "object" && (value as any).type === 6) { + return "DATETIME"; + } else { + return "EMPTY"; + } +} + +function transform(json: Record, prefix: string = ""): Result[] { + const results: Result[] = []; + const nonObjectKeys: Record = {}; + const arrayResults: Result[] = []; + let otherObject; + + for (const key in json) { + const currentPath = `${prefix.replace(/^\//, "")}/${key.replace(/\*\*/g, "")}`; + const currentValue = json[key]; + const valueType = getType(currentValue); + + if (typeof currentValue === "string" && currentValue.length >= 50) { + arrayResults.push({ + path: currentPath, + content: { + type: valueType, + value: currentValue, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }); + // console.log(currentValue, "string"); + } + + if (Array.isArray(currentValue) && currentValue.length > 0 && currentValue.length <= 49) { + // Se for um array com valores, itera por cada elemento + for (let i = 0; i < currentValue.length; i++) { + results.push(...transform(currentValue[i] as Record, `${currentPath}[${i}]`)); + } + // Adiciona um resultado para o array vazio + arrayResults.push({ + path: currentPath, + content: { + type: "ARRAY", + value: {}, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }); + } else if (valueType === "OBJECT") { + results.push(...transform(currentValue as unknown as Record, currentPath)); + } else { + nonObjectKeys[key] = currentValue; + let ob = nonObjectKeys; + otherObject = Object.entries(ob) + .filter(([key, value]) => typeof value !== "string" || value.length < 49) + .reduce((acc, [key, value]) => { + acc[key] = value; + return acc; + }, {} as Record); + } + } + + // Adiciona um único resultado para chaves não objeto + + if (Object.keys(nonObjectKeys).length > 0) { + if (typeof otherObject === "object" && otherObject !== null) { + const nonObjectResult: Result = { + path: `${prefix.replace(/^\//, "")}`, + content: { + type: getType(nonObjectKeys), + value: filterKeysFromObject(otherObject, ["date_created", "date_last_updated", "date_of_expiration"]), + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + + if (nonObjectResult.content.value.history_id !== undefined) { + nonObjectResult.content.value.date_created = { + type: 6, + value: Date.now(), + }; + + nonObjectResult.content.value.date_last_updated = { + type: 6, + value: Date.now(), + }; + + nonObjectResult.content.value.date_of_expiration = { + type: 6, + value: Date.now(), + }; + } + + if (nonObjectResult.path) { + results.push(nonObjectResult); + } + } else { + console.error("otherObject is not an object"); + } + } + + function filterKeysFromObject(obj, keysToFilter) { + const filteredObject = {}; + for (const key in obj) { + if (!keysToFilter.includes(key)) { + filteredObject[key] = obj[key]; + } + } + return filteredObject; + } + + // Se não há chaves não objeto, adiciona um resultado com objeto vazio + if (Object.keys(nonObjectKeys).length === 0) { + const nonObjectResult: Result = { + path: `${prefix.replace(/^\//, "")}`, + content: { + type: getType({}), + value: {} as any, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + if (nonObjectResult.path) { + results.push(nonObjectResult); + } + } + + // Adiciona resultados para arrays + results.push(...arrayResults); + + return results; +} + +function readPath() { + const fileName = "__movement_wallet__.json"; + + const filePath = path.join(__dirname, fileName); + + fs.readFile(filePath, "utf8", (err, data) => { + if (err) { + console.error("Error reading the file:", err); + return; + } + + try { + var dataToArray = JSON.parse(data); + + const result = transform(dataToArray); + + const dataJSONModel = JSON.stringify(result, null, 2); + + function afterRestructureSaveIntoJSONFile(dataWithOutPathFromMongodb) { + console.log(new Date().getSeconds(), "started"); + + const fileAddress: any = "./test/outputResultWithPathJSON.json"; + fs.writeFile(fileAddress, dataWithOutPathFromMongodb, (error) => { + if (error) { + console.error("Algum erro aconteceu", error); + } else { + console.log(fileAddress); + } + }); + + return dataWithOutPathFromMongodb; + } + afterRestructureSaveIntoJSONFile(dataJSONModel); + } catch (parseError) { + console.error("Error parsing JSON:", parseError); + } + }); + console.log(new Date().getSeconds(), "end"); +} +readPath(); diff --git a/test/index.ts b/test/index.ts index 2fa2fed0..b60ad921 100644 --- a/test/index.ts +++ b/test/index.ts @@ -222,6 +222,7 @@ import Node from "../src/server/services/database/Node"; await data.synchronize(path, true); + //console.log(new Date().toLocaleString("pt-BR")); //console.log(new Date().toLocaleString("pt-BR")); // data.setNode("ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/currency_id", "USD- test"); diff --git a/test/mde.ts b/test/mde.ts new file mode 100644 index 00000000..3d6a66b6 --- /dev/null +++ b/test/mde.ts @@ -0,0 +1,46 @@ +import MDE from "../src/server/services/database/MDE"; +import myJsonfile from "../test/myjsonfile.json"; + +const instance = new MDE({ + prefix: "", + searchData: async (search) => { + return myJsonfile.filter((node) => + search.test(node.path) + ) + } +}) + + +const path = "ivipcoin-db::movement_wallet/000523147298669313/history/1677138262468"; +const value = { + type: "deposit", + wallet_type: + "Valor da string maior Valor da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres.Valor da string maior Valor da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres.....", + payment_method: "bolbradesco", + original_amount: 603, + total_amount: [{ title: "Taxa de serviço", label: "Taxa de R$ 3,49", amount: 3.49 }], + id: 1311772470, + operation_type: "regular_payment", + payment_type: "ticket", + status: { + payment_method: + "Valor da string maior Valor da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres.Valor da string maior Valor da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres.....", + original_amount: 603, + total_amount: 606.49, + id: [{ title: "Taxa de serviço", label: "Taxa de R$ 3,49", amount: 3.49 }], + operation_type: "regular_payment", + payment_type: "ticket", + currency_id: "BRL", + history_id: "1677138262468", + striue50: + "Valor da string maior Valor Valor da string maior Valor da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres... da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres...", + }, + status_detail: "pending_waiting_payment", + currency_id: "BRL", + history_id: "1677138262468", +}; + +const options = { assert_revision: "algum_valor" }; +const results = instance.set(path, value, options); + +console.log(JSON.stringify(results, null, 2)); \ No newline at end of file diff --git a/test/myjsonfile.json b/test/myjsonfile.json index c2cbf9db..e81a85a3 100644 --- a/test/myjsonfile.json +++ b/test/myjsonfile.json @@ -3,7 +3,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/balances/BRL", "content": { "type": 1, - "value": { "available": "2528.00700001", "symbol": "BRL", "value": 494.23 }, + "value": { + "available": "2528.00700001", + "symbol": "BRL", + "value": 494.23 + }, "revision": "lnt02q7v0006oohx1hd4856x", "revision_nr": 1, "created": 1697467086139, @@ -14,7 +18,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/balances/IVIP", "content": { "type": 1, - "value": { "available": "1499269.00000000", "symbol": "IVIP", "value": 158.48 }, + "value": { + "available": "1499269.00000000", + "symbol": "IVIP", + "value": 158.48 + }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, "created": 1697467086139, @@ -23,7 +31,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02q7v0005oohx3xm7c536", "revision_nr": 1, "created": 1697467086139, "modified": 1697467086139 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0005oohx3xm7c536", + "revision_nr": 1, + "created": 1697467086139, + "modified": 1697467086139 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/description", @@ -51,7 +66,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/barcode", "content": { "type": 1, - "value": { "content": "23796927400000606493380261019404283200633330" }, + "value": { + "content": "23796927400000606493380261019404283200633330" + }, "revision": "lnt02q7w000doohxasia0o3e", "revision_nr": 1, "created": 1697467086141, @@ -62,7 +79,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, "revision": "lnt02q7x000foohxf8r4h6ku", "revision_nr": 1, "created": 1697467086141, @@ -71,7 +92,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q7x000eoohx91rb246i", "revision_nr": 1, "created": 1697467086141, "modified": 1697467086141 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q7x000eoohx91rb246i", + "revision_nr": 1, + "created": 1697467086141, + "modified": 1697467086141 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details", @@ -105,9 +133,18 @@ "original_amount": 603, "total_amount": 606.49, "id": 1311772470, - "date_created": { "type": 6, "value": 1677138263122 }, - "date_last_updated": { "type": 6, "value": 1677138263122 }, - "date_of_expiration": { "type": 6, "value": 1677553199000 }, + "date_created": { + "type": 6, + "value": 1677138263122 + }, + "date_last_updated": { + "type": 6, + "value": 1677138263122 + }, + "date_of_expiration": { + "type": 6, + "value": 1677553199000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -147,7 +184,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/barcode", "content": { "type": 1, - "value": { "content": "23799927400000595493380261019404380900633330" }, + "value": { + "content": "23799927400000595493380261019404380900633330" + }, "revision": "lnt02q7y000koohx9oq4f5ng", "revision_nr": 1, "created": 1697467086142, @@ -158,7 +197,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, "revision": "lnt02q7y000moohxbtckd7dc", "revision_nr": 1, "created": 1697467086142, @@ -167,7 +210,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q7y000loohxhpxl9hc9", "revision_nr": 1, "created": 1697467086142, "modified": 1697467086142 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q7y000loohxhpxl9hc9", + "revision_nr": 1, + "created": 1697467086142, + "modified": 1697467086142 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details", @@ -201,9 +251,18 @@ "original_amount": 592, "total_amount": 595.49, "id": 1311772488, - "date_created": { "type": 6, "value": 1677138656477 }, - "date_last_updated": { "type": 6, "value": 1677138656477 }, - "date_of_expiration": { "type": 6, "value": 1677553199000 }, + "date_created": { + "type": 6, + "value": 1677138656477 + }, + "date_last_updated": { + "type": 6, + "value": 1677138656477 + }, + "date_of_expiration": { + "type": 6, + "value": 1677553199000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -265,7 +324,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, "revision": "lnt02q7z000uoohx9lqg36hw", "revision_nr": 1, "created": 1697467086143, @@ -274,13 +335,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02q7z000toohx3fuw68ar", "revision_nr": 1, "created": 1697467086143, "modified": 1697467086143 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02q7z000toohx3fuw68ar", + "revision_nr": 1, + "created": 1697467086143, + "modified": 1697467086143 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 4.95 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 4.95 + }, "revision": "lnt02q7z000woohx9sytgk42", "revision_nr": 1, "created": 1697467086143, @@ -289,13 +363,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q7z000voohxbaoh0b7n", "revision_nr": 1, "created": 1697467086144, "modified": 1697467086144 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q7z000voohxbaoh0b7n", + "revision_nr": 1, + "created": 1697467086144, + "modified": 1697467086144 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 504.95, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 504.95, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02q7y000poohx67pn46g1", "revision_nr": 1, "created": 1697467086144, @@ -313,9 +400,18 @@ "original_amount": 500, "total_amount": 504.95, "id": 1312722165, - "date_created": { "type": 6, "value": 1677139565681 }, - "date_last_updated": { "type": 6, "value": 1677139565681 }, - "date_of_expiration": { "type": 6, "value": 1677225965440 }, + "date_created": { + "type": 6, + "value": 1677139565681 + }, + "date_last_updated": { + "type": 6, + "value": 1677139565681 + }, + "date_of_expiration": { + "type": 6, + "value": 1677225965440 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -377,7 +473,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.198 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, "revision": "lnt02q810014oohx0fwlhy2y", "revision_nr": 1, "created": 1697467086145, @@ -386,13 +486,22 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q810013oohx7ndx9e83", "revision_nr": 1, "created": 1697467086145, "modified": 1697467086145 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q810013oohx7ndx9e83", + "revision_nr": 1, + "created": 1697467086145, + "modified": 1697467086145 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, "revision": "lnt02q810016oohxcyhigmwi", "revision_nr": 1, "created": 1697467086145, @@ -401,13 +510,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02q810015oohx45o46mhr", "revision_nr": 1, "created": 1697467086145, "modified": 1697467086145 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02q810015oohx45o46mhr", + "revision_nr": 1, + "created": 1697467086145, + "modified": 1697467086145 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02q80000zoohxbz2mg62l", "revision_nr": 1, "created": 1697467086146, @@ -425,9 +549,18 @@ "original_amount": 20, "total_amount": 20.2, "id": 1311772556, - "date_created": { "type": 6, "value": 1677140213522 }, - "date_last_updated": { "type": 6, "value": 1677140213522 }, - "date_of_expiration": { "type": 6, "value": 1677226613246 }, + "date_created": { + "type": 6, + "value": 1677140213522 + }, + "date_last_updated": { + "type": 6, + "value": 1677140213522 + }, + "date_of_expiration": { + "type": 6, + "value": 1677226613246 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -467,7 +600,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/barcode", "content": { "type": 1, - "value": { "content": "23791927400000051993380260600338163800633330" }, + "value": { + "content": "23791927400000051993380260600338163800633330" + }, "revision": "lnt02q83001boohxb05eeh8r", "revision_nr": 1, "created": 1697467086147, @@ -478,7 +613,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3.99%", "amount": 1.9949999999999999 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3.99%", + "amount": 1.9949999999999999 + }, "revision": "lnt02q83001doohxex87562h", "revision_nr": 1, "created": 1697467086147, @@ -487,7 +626,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q83001coohx8u510vc1", "revision_nr": 1, "created": 1697467086148, "modified": 1697467086148 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q83001coohx8u510vc1", + "revision_nr": 1, + "created": 1697467086148, + "modified": 1697467086148 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details", @@ -521,9 +667,18 @@ "original_amount": 50, "total_amount": 51.99, "id": 1311772574, - "date_created": { "type": 6, "value": 1677141075312 }, - "date_last_updated": { "type": 6, "value": 1677141075312 }, - "date_of_expiration": { "type": 6, "value": 1677553199000 }, + "date_created": { + "type": 6, + "value": 1677141075312 + }, + "date_last_updated": { + "type": 6, + "value": 1677141075312 + }, + "date_of_expiration": { + "type": 6, + "value": 1677553199000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -563,7 +718,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/barcode", "content": { "type": 1, - "value": { "content": "23792927400000075493380261019405215900633330" }, + "value": { + "content": "23792927400000075493380261019405215900633330" + }, "revision": "lnt02q85001ioohxf0bxatlc", "revision_nr": 1, "created": 1697467086149, @@ -574,7 +731,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, "revision": "lnt02q85001koohxdjx9618g", "revision_nr": 1, "created": 1697467086149, @@ -583,7 +744,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q85001joohx37t15ju0", "revision_nr": 1, "created": 1697467086150, "modified": 1697467086150 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q85001joohx37t15ju0", + "revision_nr": 1, + "created": 1697467086150, + "modified": 1697467086150 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details", @@ -616,9 +784,18 @@ "payment_method": "bolbradesco", "total_amount": 75.49, "id": 1312722387, - "date_created": { "type": 6, "value": 1677143334435 }, - "date_last_updated": { "type": 6, "value": 1677143334435 }, - "date_of_expiration": { "type": 6, "value": 1677553199000 }, + "date_created": { + "type": 6, + "value": 1677143334435 + }, + "date_last_updated": { + "type": 6, + "value": 1677143334435 + }, + "date_of_expiration": { + "type": 6, + "value": 1677553199000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -659,7 +836,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/barcode", "content": { "type": 1, - "value": { "content": "23791927400000803493380261019405351400633330" }, + "value": { + "content": "23791927400000803493380261019405351400633330" + }, "revision": "lnt02q88001poohx9mu29vh8", "revision_nr": 1, "created": 1697467086152, @@ -670,7 +849,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, "revision": "lnt02q88001roohx82brh9zu", "revision_nr": 1, "created": 1697467086153, @@ -679,7 +862,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q88001qoohx9ql9emjn", "revision_nr": 1, "created": 1697467086153, "modified": 1697467086153 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q88001qoohx9ql9emjn", + "revision_nr": 1, + "created": 1697467086153, + "modified": 1697467086153 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details", @@ -713,9 +903,18 @@ "original_amount": 800, "total_amount": 803.49, "id": 1311772850, - "date_created": { "type": 6, "value": 1677146363578 }, - "date_last_updated": { "type": 6, "value": 1677146363578 }, - "date_of_expiration": { "type": 6, "value": 1677553199000 }, + "date_created": { + "type": 6, + "value": 1677146363578 + }, + "date_last_updated": { + "type": 6, + "value": 1677146363578 + }, + "date_of_expiration": { + "type": 6, + "value": 1677553199000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -777,7 +976,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, "revision": "lnt02q8d001zoohxf3608rnh", "revision_nr": 1, "created": 1697467086157, @@ -786,13 +987,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02q8d001yoohxcr0yeex2", "revision_nr": 1, "created": 1697467086157, "modified": 1697467086157 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02q8d001yoohxcr0yeex2", + "revision_nr": 1, + "created": 1697467086157, + "modified": 1697467086157 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.198 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, "revision": "lnt02q8d0021oohxhte0gtth", "revision_nr": 1, "created": 1697467086158, @@ -801,13 +1015,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q8d0020oohxg0sb5cl4", "revision_nr": 1, "created": 1697467086158, "modified": 1697467086158 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q8d0020oohxg0sb5cl4", + "revision_nr": 1, + "created": 1697467086158, + "modified": 1697467086158 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02q8c001uoohx7emz0kt6", "revision_nr": 1, "created": 1697467086158, @@ -826,9 +1053,18 @@ "total_amount": 20.2, "history_id": 1677340892851, "id": 55087284163, - "date_created": { "type": 6, "value": 1677340896928 }, - "date_last_updated": { "type": 6, "value": 1677340896000 }, - "date_of_expiration": { "type": 6, "value": 1677427296705 }, + "date_created": { + "type": 6, + "value": 1677340896928 + }, + "date_last_updated": { + "type": 6, + "value": 1677340896000 + }, + "date_of_expiration": { + "type": 6, + "value": 1677427296705 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -889,7 +1125,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, "revision": "lnt02q8g0029oohxdk1sey7o", "revision_nr": 1, "created": 1697467086160, @@ -898,13 +1136,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02q8g0028oohxfpzhfbbe", "revision_nr": 1, "created": 1697467086160, "modified": 1697467086160 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02q8g0028oohxfpzhfbbe", + "revision_nr": 1, + "created": 1697467086160, + "modified": 1697467086160 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.198 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, "revision": "lnt02q8g002boohx13aw2mwb", "revision_nr": 1, "created": 1697467086160, @@ -913,13 +1164,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q8g002aoohx6y3bebjk", "revision_nr": 1, "created": 1697467086161, "modified": 1697467086161 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q8g002aoohx6y3bebjk", + "revision_nr": 1, + "created": 1697467086161, + "modified": 1697467086161 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02q8f0024oohx9ep05fyt", "revision_nr": 1, "created": 1697467086161, @@ -938,16 +1202,31 @@ "total_amount": 20.2, "history_id": 1677340905412, "id": 55094059932, - "date_created": { "type": 6, "value": 1677340909292 }, - "date_last_updated": { "type": 6, "value": 1677341040000 }, - "date_of_expiration": { "type": 6, "value": 1677427309106 }, + "date_created": { + "type": 6, + "value": 1677340909292 + }, + "date_last_updated": { + "type": 6, + "value": 1677341040000 + }, + "date_of_expiration": { + "type": 6, + "value": 1677427309106 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677340991000 }, - "money_release_date": { "type": 6, "value": 1677340991000 }, + "date_approved": { + "type": 6, + "value": 1677340991000 + }, + "money_release_date": { + "type": 6, + "value": 1677340991000 + }, "wasDebited": true }, "revision": "lnt02q8e0022oohxelxa80t8", @@ -1004,7 +1283,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.198 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, "revision": "lnt02q8m002joohxd352brle", "revision_nr": 1, "created": 1697467086166, @@ -1013,13 +1296,22 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q8m002ioohxabhk0ohe", "revision_nr": 1, "created": 1697467086166, "modified": 1697467086166 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q8m002ioohxabhk0ohe", + "revision_nr": 1, + "created": 1697467086166, + "modified": 1697467086166 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, "revision": "lnt02q8m002loohx832zh2ou", "revision_nr": 1, "created": 1697467086166, @@ -1028,13 +1320,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02q8m002koohx4gogfcot", "revision_nr": 1, "created": 1697467086167, "modified": 1697467086167 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02q8m002koohx4gogfcot", + "revision_nr": 1, + "created": 1697467086167, + "modified": 1697467086167 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02q8h002eoohx6yqo8m37", "revision_nr": 1, "created": 1697467086167, @@ -1053,16 +1360,31 @@ "total_amount": 20.2, "history_id": 1677342602434, "id": 55095321700, - "date_created": { "type": 6, "value": 1677342606615 }, - "date_last_updated": { "type": 6, "value": 1677342755000 }, - "date_of_expiration": { "type": 6, "value": 1677429006238 }, + "date_created": { + "type": 6, + "value": 1677342606615 + }, + "date_last_updated": { + "type": 6, + "value": 1677342755000 + }, + "date_of_expiration": { + "type": 6, + "value": 1677429006238 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677342740000 }, - "money_release_date": { "type": 6, "value": 1677342740000 }, + "date_approved": { + "type": 6, + "value": 1677342740000 + }, + "money_release_date": { + "type": 6, + "value": 1677342740000 + }, "wasDebited": true }, "revision": "lnt02q8h002coohxe5v35ar8", @@ -1119,7 +1441,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 3.9600000000000004 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 3.9600000000000004 + }, "revision": "lnt02q8o002toohx1omb93x5", "revision_nr": 1, "created": 1697467086169, @@ -1128,13 +1454,22 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q8o002soohx8b6p16cd", "revision_nr": 1, "created": 1697467086169, "modified": 1697467086169 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q8o002soohx8b6p16cd", + "revision_nr": 1, + "created": 1697467086169, + "modified": 1697467086169 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, "revision": "lnt02q8p002voohx16o8a11q", "revision_nr": 1, "created": 1697467086169, @@ -1143,13 +1478,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02q8p002uoohxbkei8vqr", "revision_nr": 1, "created": 1697467086170, "modified": 1697467086170 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02q8p002uoohxbkei8vqr", + "revision_nr": 1, + "created": 1697467086170, + "modified": 1697467086170 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 403.96, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 403.96, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02q8o002ooohxabbph50g", "revision_nr": 1, "created": 1697467086170, @@ -1168,9 +1518,18 @@ "total_amount": 403.96, "history_id": 1677356987387, "id": 55103336998, - "date_created": { "type": 6, "value": 1677356988037 }, - "date_last_updated": { "type": 6, "value": 1677356988037 }, - "date_of_expiration": { "type": 6, "value": 1677443387844 }, + "date_created": { + "type": 6, + "value": 1677356988037 + }, + "date_last_updated": { + "type": 6, + "value": 1677356988037 + }, + "date_of_expiration": { + "type": 6, + "value": 1677443387844 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -1231,7 +1590,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 9.9 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 9.9 + }, "revision": "lnt02q8s0033oohx1kh2bc2b", "revision_nr": 1, "created": 1697467086173, @@ -1240,13 +1603,22 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q8s0032oohxg7goac0o", "revision_nr": 1, "created": 1697467086174, "modified": 1697467086174 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q8s0032oohxg7goac0o", + "revision_nr": 1, + "created": 1697467086174, + "modified": 1697467086174 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, "revision": "lnt02q8u0035oohxan4jegus", "revision_nr": 1, "created": 1697467086174, @@ -1255,13 +1627,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02q8u0034oohx14f6h9dx", "revision_nr": 1, "created": 1697467086175, "modified": 1697467086175 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02q8u0034oohx14f6h9dx", + "revision_nr": 1, + "created": 1697467086175, + "modified": 1697467086175 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 1009.9, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 1009.9, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02q8r002yoohx0ikmf4o4", "revision_nr": 1, "created": 1697467086175, @@ -1280,9 +1667,18 @@ "total_amount": 1009.9, "history_id": 1677357024740, "id": 55096573577, - "date_created": { "type": 6, "value": 1677357025343 }, - "date_last_updated": { "type": 6, "value": 1677357025343 }, - "date_of_expiration": { "type": 6, "value": 1677443425167 }, + "date_created": { + "type": 6, + "value": 1677357025343 + }, + "date_last_updated": { + "type": 6, + "value": 1677357025343 + }, + "date_of_expiration": { + "type": 6, + "value": 1677443425167 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -1343,7 +1739,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, "revision": "lnt02q8x003doohx5aor8xjl", "revision_nr": 1, "created": 1697467086177, @@ -1352,13 +1750,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02q8x003coohxhcwqh1lc", "revision_nr": 1, "created": 1697467086177, "modified": 1697467086177 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02q8x003coohxhcwqh1lc", + "revision_nr": 1, + "created": 1697467086177, + "modified": 1697467086177 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.34650000000000003 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.34650000000000003 + }, "revision": "lnt02q8y003foohx093hazxg", "revision_nr": 1, "created": 1697467086178, @@ -1367,13 +1778,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q8x003eoohxhb8c80tp", "revision_nr": 1, "created": 1697467086178, "modified": 1697467086178 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q8x003eoohxhb8c80tp", + "revision_nr": 1, + "created": 1697467086178, + "modified": 1697467086178 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 35.35, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 35.35, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02q8w0038oohxgptyd0ct", "revision_nr": 1, "created": 1697467086178, @@ -1392,9 +1816,18 @@ "total_amount": 35.35, "history_id": 1677366880189, "id": 55102778083, - "date_created": { "type": 6, "value": 1677366880808 }, - "date_last_updated": { "type": 6, "value": 1677366880808 }, - "date_of_expiration": { "type": 6, "value": 1677453280616 }, + "date_created": { + "type": 6, + "value": 1677366880808 + }, + "date_last_updated": { + "type": 6, + "value": 1677366880808 + }, + "date_of_expiration": { + "type": 6, + "value": 1677453280616 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -1420,7 +1853,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710195891/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02q90003ioohxa4k91c1t", "revision_nr": 1, "created": 1697467086181, "modified": 1697467086181 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02q90003ioohxa4k91c1t", + "revision_nr": 1, + "created": 1697467086181, + "modified": 1697467086181 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710195891", @@ -1433,9 +1875,18 @@ "total_amount": 234.59, "history_id": 1677710195891, "id": 1677710195891, - "date_created": { "type": 6, "value": 1677710195891 }, - "date_last_updated": { "type": 6, "value": 1677710195891 }, - "date_of_expiration": { "type": 6, "value": 1680302195891 }, + "date_created": { + "type": 6, + "value": 1677710195891 + }, + "date_last_updated": { + "type": 6, + "value": 1677710195891 + }, + "date_of_expiration": { + "type": 6, + "value": 1680302195891 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -1461,7 +1912,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710725908/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02q91003loohx4pxp9rp0", "revision_nr": 1, "created": 1697467086182, "modified": 1697467086182 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02q91003loohx4pxp9rp0", + "revision_nr": 1, + "created": 1697467086182, + "modified": 1697467086182 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710725908", @@ -1474,15 +1934,30 @@ "total_amount": 35.99, "history_id": 1677710725908, "id": 1677710725908, - "date_created": { "type": 6, "value": 1677710725908 }, - "date_last_updated": { "type": 6, "value": 1677711571236 }, - "date_of_expiration": { "type": 6, "value": 1680302725908 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677711571236 }, - "money_release_date": { "type": 6, "value": 1677711571236 }, + "date_created": { + "type": 6, + "value": 1677710725908 + }, + "date_last_updated": { + "type": 6, + "value": 1677711571236 + }, + "date_of_expiration": { + "type": 6, + "value": 1680302725908 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677711571236 + }, + "money_release_date": { + "type": 6, + "value": 1677711571236 + }, "money_release_status": "approved", "wasDebited": true, "payment_method_id": "whatsapp", @@ -1507,7 +1982,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677711669840/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02q93003ooohxemswhbzy", "revision_nr": 1, "created": 1697467086183, "modified": 1697467086183 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02q93003ooohxemswhbzy", + "revision_nr": 1, + "created": 1697467086183, + "modified": 1697467086183 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677711669840", @@ -1520,16 +2004,31 @@ "total_amount": 450.32, "history_id": 1677711669840, "id": 1677711669840, - "date_created": { "type": 6, "value": 1677711669840 }, - "date_last_updated": { "type": 6, "value": 1677712164561 }, - "date_of_expiration": { "type": 6, "value": 1680303669840 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1677712164561 }, + "date_created": { + "type": 6, + "value": 1677711669840 + }, + "date_last_updated": { + "type": 6, + "value": 1677712164561 + }, + "date_of_expiration": { + "type": 6, + "value": 1680303669840 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1677712164561 + }, "money_release_status": "approved", - "date_approved": { "type": 6, "value": 1677712164561 }, + "date_approved": { + "type": 6, + "value": 1677712164561 + }, "wasDebited": true, "payment_method_id": "whatsapp", "payment_method": "whatsapp" @@ -1553,7 +2052,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677716372778/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02q94003roohx5etm8jb4", "revision_nr": 1, "created": 1697467086184, "modified": 1697467086184 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02q94003roohx5etm8jb4", + "revision_nr": 1, + "created": 1697467086184, + "modified": 1697467086184 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677716372778", @@ -1567,14 +2075,26 @@ "total_amount": 600.2, "history_id": 1677716372778, "id": 1677716372778, - "date_created": { "type": 6, "value": 1677716372778 }, - "date_last_updated": { "type": 6, "value": 1677716444134 }, - "date_of_expiration": { "type": 6, "value": 1680308372778 }, + "date_created": { + "type": 6, + "value": 1677716372778 + }, + "date_last_updated": { + "type": 6, + "value": 1677716444134 + }, + "date_of_expiration": { + "type": 6, + "value": 1680308372778 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1677716444134 }, + "money_release_date": { + "type": 6, + "value": 1677716444134 + }, "money_release_status": "rejected" }, "revision": "lnt02q93003poohx1seh2tkj", @@ -1585,7 +2105,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677721233156/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02q95003toohxa3q17uli", "revision_nr": 1, "created": 1697467086185, "modified": 1697467086185 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02q95003toohxa3q17uli", + "revision_nr": 1, + "created": 1697467086185, + "modified": 1697467086185 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677721233156/description", @@ -1610,14 +2139,26 @@ "total_amount": 602.99, "history_id": 1677721233156, "id": 1677721233156, - "date_created": { "type": 6, "value": 1677721233156 }, - "date_last_updated": { "type": 6, "value": 1677723466177 }, - "date_of_expiration": { "type": 6, "value": 1680313233156 }, + "date_created": { + "type": 6, + "value": 1677721233156 + }, + "date_last_updated": { + "type": 6, + "value": 1677723466177 + }, + "date_of_expiration": { + "type": 6, + "value": 1680313233156 + }, "operation_type": "regular_payment", "status": "in_process", "status_detail": "pending_review_manual", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1677723466177 }, + "money_release_date": { + "type": 6, + "value": 1677723466177 + }, "money_release_status": "in_process" }, "revision": "lnt02q95003soohxf18na73v", @@ -1628,7 +2169,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677761687105/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02q96003woohxb6z0ax9o", "revision_nr": 1, "created": 1697467086187, "modified": 1697467086187 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02q96003woohxb6z0ax9o", + "revision_nr": 1, + "created": 1697467086187, + "modified": 1697467086187 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677761687105/description", @@ -1653,14 +2203,26 @@ "total_amount": 34.89, "history_id": 1677761687105, "id": 1677761687105, - "date_created": { "type": 6, "value": 1677761687105 }, - "date_last_updated": { "type": 6, "value": 1677761894846 }, - "date_of_expiration": { "type": 6, "value": 1680353687105 }, + "date_created": { + "type": 6, + "value": 1677761687105 + }, + "date_last_updated": { + "type": 6, + "value": 1677761894846 + }, + "date_of_expiration": { + "type": 6, + "value": 1680353687105 + }, "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1677761894846 }, + "money_release_date": { + "type": 6, + "value": 1677761894846 + }, "money_release_status": "cancelled" }, "revision": "lnt02q96003voohxf9n3hlie", @@ -1682,7 +2244,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677762883870/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02q980040oohx2gwk4o57", "revision_nr": 1, "created": 1697467086188, "modified": 1697467086188 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02q980040oohx2gwk4o57", + "revision_nr": 1, + "created": 1697467086188, + "modified": 1697467086188 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677762883870", @@ -1696,15 +2267,30 @@ "total_amount": 43.78, "history_id": 1677762883870, "id": 1677762883870, - "date_created": { "type": 6, "value": 1677762883870 }, - "date_last_updated": { "type": 6, "value": 1677763063393 }, - "date_of_expiration": { "type": 6, "value": 1680354883870 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677763063393 }, - "money_release_date": { "type": 6, "value": 1677763063393 }, + "date_created": { + "type": 6, + "value": 1677762883870 + }, + "date_last_updated": { + "type": 6, + "value": 1677763063393 + }, + "date_of_expiration": { + "type": 6, + "value": 1680354883870 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677763063393 + }, + "money_release_date": { + "type": 6, + "value": 1677763063393 + }, "money_release_status": "approved", "wasDebited": true }, @@ -1716,7 +2302,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677822431645/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02q980042oohxdxut74cx", "revision_nr": 1, "created": 1697467086189, "modified": 1697467086189 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02q980042oohxdxut74cx", + "revision_nr": 1, + "created": 1697467086189, + "modified": 1697467086189 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677822431645/description", @@ -1741,15 +2336,30 @@ "total_amount": 29.91, "history_id": 1677822431645, "id": 1677822431645, - "date_created": { "type": 6, "value": 1677822431645 }, - "date_last_updated": { "type": 6, "value": 1677822492770 }, - "date_of_expiration": { "type": 6, "value": 1680414431645 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677822492770 }, - "money_release_date": { "type": 6, "value": 1677822492770 }, + "date_created": { + "type": 6, + "value": 1677822431645 + }, + "date_last_updated": { + "type": 6, + "value": 1677822492770 + }, + "date_of_expiration": { + "type": 6, + "value": 1680414431645 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677822492770 + }, + "money_release_date": { + "type": 6, + "value": 1677822492770 + }, "money_release_status": "approved", "wasDebited": true }, @@ -1772,7 +2382,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677831643976/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02q9b0046oohxdu667m5i", "revision_nr": 1, "created": 1697467086191, "modified": 1697467086191 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02q9b0046oohxdu667m5i", + "revision_nr": 1, + "created": 1697467086191, + "modified": 1697467086191 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677831643976", @@ -1786,15 +2405,30 @@ "total_amount": 50, "history_id": 1677831643976, "id": 1677831643976, - "date_created": { "type": 6, "value": 1677831643976 }, - "date_last_updated": { "type": 6, "value": 1677831798262 }, - "date_of_expiration": { "type": 6, "value": 1680423643976 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677831798262 }, - "money_release_date": { "type": 6, "value": 1677831798262 }, + "date_created": { + "type": 6, + "value": 1677831643976 + }, + "date_last_updated": { + "type": 6, + "value": 1677831798262 + }, + "date_of_expiration": { + "type": 6, + "value": 1680423643976 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677831798262 + }, + "money_release_date": { + "type": 6, + "value": 1677831798262 + }, "money_release_status": "approved", "wasDebited": true }, @@ -1817,7 +2451,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677952604160/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02q9c0049oohxcpslbrtu", "revision_nr": 1, "created": 1697467086193, "modified": 1697467086193 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02q9c0049oohxcpslbrtu", + "revision_nr": 1, + "created": 1697467086193, + "modified": 1697467086193 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677952604160", @@ -1831,14 +2474,26 @@ "total_amount": 100, "history_id": 1677952604160, "id": 1677952604160, - "date_created": { "type": 6, "value": 1677952604160 }, - "date_last_updated": { "type": 6, "value": 1678714344731 }, - "date_of_expiration": { "type": 6, "value": 1680544604160 }, + "date_created": { + "type": 6, + "value": 1677952604160 + }, + "date_last_updated": { + "type": 6, + "value": 1678714344731 + }, + "date_of_expiration": { + "type": 6, + "value": 1680544604160 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678714344731 }, + "money_release_date": { + "type": 6, + "value": 1678714344731 + }, "money_release_status": "rejected" }, "revision": "lnt02q9c0047oohxho316qc1", @@ -1883,9 +2538,18 @@ "original_amount": 141586, "total_amount": 141586, "id": 1678033196645, - "date_created": { "type": 6, "value": 1678033196645 }, - "date_last_updated": { "type": 6, "value": 1678033196645 }, - "date_of_expiration": { "type": 6, "value": 1678033196645 }, + "date_created": { + "type": 6, + "value": 1678033196645 + }, + "date_last_updated": { + "type": 6, + "value": 1678033196645 + }, + "date_of_expiration": { + "type": 6, + "value": 1678033196645 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -1936,9 +2600,18 @@ "original_amount": 269014, "total_amount": 269014, "id": 1678033334564, - "date_created": { "type": 6, "value": 1678033334564 }, - "date_last_updated": { "type": 6, "value": 1678033334564 }, - "date_of_expiration": { "type": 6, "value": 1678033334564 }, + "date_created": { + "type": 6, + "value": 1678033334564 + }, + "date_last_updated": { + "type": 6, + "value": 1678033334564 + }, + "date_of_expiration": { + "type": 6, + "value": 1678033334564 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -1989,9 +2662,18 @@ "original_amount": 297331, "total_amount": 297331, "id": 1678033849155, - "date_created": { "type": 6, "value": 1678033849155 }, - "date_last_updated": { "type": 6, "value": 1678033849155 }, - "date_of_expiration": { "type": 6, "value": 1678033849155 }, + "date_created": { + "type": 6, + "value": 1678033849155 + }, + "date_last_updated": { + "type": 6, + "value": 1678033849155 + }, + "date_of_expiration": { + "type": 6, + "value": 1678033849155 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2042,9 +2724,18 @@ "original_amount": 141660, "total_amount": 141660, "id": 1678034274118, - "date_created": { "type": 6, "value": 1678034274118 }, - "date_last_updated": { "type": 6, "value": 1678034274118 }, - "date_of_expiration": { "type": 6, "value": 1678034274118 }, + "date_created": { + "type": 6, + "value": 1678034274118 + }, + "date_last_updated": { + "type": 6, + "value": 1678034274118 + }, + "date_of_expiration": { + "type": 6, + "value": 1678034274118 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2095,9 +2786,18 @@ "original_amount": 141586, "total_amount": 141586, "id": 1678034346295, - "date_created": { "type": 6, "value": 1678034346295 }, - "date_last_updated": { "type": 6, "value": 1678034346295 }, - "date_of_expiration": { "type": 6, "value": 1678034346295 }, + "date_created": { + "type": 6, + "value": 1678034346295 + }, + "date_last_updated": { + "type": 6, + "value": 1678034346295 + }, + "date_of_expiration": { + "type": 6, + "value": 1678034346295 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2148,9 +2848,18 @@ "original_amount": 424981, "total_amount": 424981, "id": 1678034463284, - "date_created": { "type": 6, "value": 1678034463284 }, - "date_last_updated": { "type": 6, "value": 1678034463284 }, - "date_of_expiration": { "type": 6, "value": 1678034463284 }, + "date_created": { + "type": 6, + "value": 1678034463284 + }, + "date_last_updated": { + "type": 6, + "value": 1678034463284 + }, + "date_of_expiration": { + "type": 6, + "value": 1678034463284 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2201,9 +2910,18 @@ "original_amount": 141586, "total_amount": 141586, "id": 1678034665927, - "date_created": { "type": 6, "value": 1678034665927 }, - "date_last_updated": { "type": 6, "value": 1678034665927 }, - "date_of_expiration": { "type": 6, "value": 1678034665927 }, + "date_created": { + "type": 6, + "value": 1678034665927 + }, + "date_last_updated": { + "type": 6, + "value": 1678034665927 + }, + "date_of_expiration": { + "type": 6, + "value": 1678034665927 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2265,9 +2983,18 @@ "original_amount": 2000, "total_amount": 2000, "id": 1678041814665, - "date_created": { "type": 6, "value": 1678041814665 }, - "date_last_updated": { "type": 6, "value": 1678041814665 }, - "date_of_expiration": { "type": 6, "value": 1678041814665 }, + "date_created": { + "type": 6, + "value": 1678041814665 + }, + "date_last_updated": { + "type": 6, + "value": 1678041814665 + }, + "date_of_expiration": { + "type": 6, + "value": 1678041814665 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2294,7 +3021,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678047987815/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02q9o004toohxav9b2i3y", "revision_nr": 1, "created": 1697467086204, "modified": 1697467086204 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02q9o004toohxav9b2i3y", + "revision_nr": 1, + "created": 1697467086204, + "modified": 1697467086204 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678047987815", @@ -2308,14 +3044,26 @@ "total_amount": 60, "history_id": 1678047987815, "id": 1678047987815, - "date_created": { "type": 6, "value": 1678047987815 }, - "date_last_updated": { "type": 6, "value": 1678714984618 }, - "date_of_expiration": { "type": 6, "value": 1680639987815 }, + "date_created": { + "type": 6, + "value": 1678047987815 + }, + "date_last_updated": { + "type": 6, + "value": 1678714984618 + }, + "date_of_expiration": { + "type": 6, + "value": 1680639987815 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678714984618 }, + "money_release_date": { + "type": 6, + "value": 1678714984618 + }, "money_release_status": "rejected" }, "revision": "lnt02q9n004roohx529l45cz", @@ -2360,9 +3108,18 @@ "original_amount": 14306893, "total_amount": 14306893, "id": 1678160538199, - "date_created": { "type": 6, "value": 1678160538199 }, - "date_last_updated": { "type": 6, "value": 1678160538199 }, - "date_of_expiration": { "type": 6, "value": 1678160538199 }, + "date_created": { + "type": 6, + "value": 1678160538199 + }, + "date_last_updated": { + "type": 6, + "value": 1678160538199 + }, + "date_of_expiration": { + "type": 6, + "value": 1678160538199 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2413,9 +3170,18 @@ "original_amount": 142846, "total_amount": 142846, "id": 1678284807612, - "date_created": { "type": 6, "value": 1678284807612 }, - "date_last_updated": { "type": 6, "value": 1678284807612 }, - "date_of_expiration": { "type": 6, "value": 1678284807612 }, + "date_created": { + "type": 6, + "value": 1678284807612 + }, + "date_last_updated": { + "type": 6, + "value": 1678284807612 + }, + "date_of_expiration": { + "type": 6, + "value": 1678284807612 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2445,7 +3211,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 32 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 32 + }, "revision": "lnt02q9r0052oohx8kqjbosg", "revision_nr": 1, "created": 1697467086207, @@ -2454,11 +3224,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q9r0051oohxctvkbso6", "revision_nr": 1, "created": 1697467086208, "modified": 1697467086208 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q9r0051oohxctvkbso6", + "revision_nr": 1, + "created": 1697467086208, + "modified": 1697467086208 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354/details", - "content": { "type": 1, "value": {}, "revision": "lnt02q9r0050oohx6p464djd", "revision_nr": 1, "created": 1697467086208, "modified": 1697467086208 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q9r0050oohx6p464djd", + "revision_nr": 1, + "created": 1697467086208, + "modified": 1697467086208 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354", @@ -2472,9 +3256,18 @@ "total_amount": 432, "history_id": 1678325359354, "id": 1678325359354, - "date_created": { "type": 6, "value": 1678325359354 }, - "date_last_updated": { "type": 6, "value": 1678325359354 }, - "date_of_expiration": { "type": 6, "value": 1680917359354 }, + "date_created": { + "type": 6, + "value": 1678325359354 + }, + "date_last_updated": { + "type": 6, + "value": 1678325359354 + }, + "date_of_expiration": { + "type": 6, + "value": 1680917359354 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -2502,7 +3295,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 120 + }, "revision": "lnt02q9t0057oohxcqt32lui", "revision_nr": 1, "created": 1697467086209, @@ -2511,11 +3308,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q9t0056oohx37cbek6p", "revision_nr": 1, "created": 1697467086210, "modified": 1697467086210 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q9t0056oohx37cbek6p", + "revision_nr": 1, + "created": 1697467086210, + "modified": 1697467086210 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247/details", - "content": { "type": 1, "value": {}, "revision": "lnt02q9t0055oohxh0fv3ife", "revision_nr": 1, "created": 1697467086210, "modified": 1697467086210 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q9t0055oohxh0fv3ife", + "revision_nr": 1, + "created": 1697467086210, + "modified": 1697467086210 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247", @@ -2529,15 +3340,30 @@ "total_amount": 3120, "history_id": 1678400755247, "id": 1678400755247, - "date_created": { "type": 6, "value": 1678400755247 }, - "date_last_updated": { "type": 6, "value": 1678400872142 }, - "date_of_expiration": { "type": 6, "value": 1680992755247 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678400872142 }, - "money_release_date": { "type": 6, "value": 1678400872142 }, + "date_created": { + "type": 6, + "value": 1678400755247 + }, + "date_last_updated": { + "type": 6, + "value": 1678400872142 + }, + "date_of_expiration": { + "type": 6, + "value": 1680992755247 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678400872142 + }, + "money_release_date": { + "type": 6, + "value": 1678400872142 + }, "money_release_status": "approved" }, "revision": "lnt02q9s0053oohx5ouh0el8", @@ -2561,7 +3387,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 16 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 16 + }, "revision": "lnt02q9v005coohx8dhybtkl", "revision_nr": 1, "created": 1697467086212, @@ -2570,11 +3400,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q9v005boohx8c2o73x3", "revision_nr": 1, "created": 1697467086212, "modified": 1697467086212 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q9v005boohx8c2o73x3", + "revision_nr": 1, + "created": 1697467086212, + "modified": 1697467086212 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895/details", - "content": { "type": 1, "value": {}, "revision": "lnt02q9v005aoohx7jrh44wp", "revision_nr": 1, "created": 1697467086213, "modified": 1697467086213 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q9v005aoohx7jrh44wp", + "revision_nr": 1, + "created": 1697467086213, + "modified": 1697467086213 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895", @@ -2588,15 +3432,30 @@ "total_amount": 416, "history_id": 1678401099895, "id": 1678401099895, - "date_created": { "type": 6, "value": 1678401099895 }, - "date_last_updated": { "type": 6, "value": 1678401156010 }, - "date_of_expiration": { "type": 6, "value": 1680993099895 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678401156010 }, - "money_release_date": { "type": 6, "value": 1678401156010 }, + "date_created": { + "type": 6, + "value": 1678401099895 + }, + "date_last_updated": { + "type": 6, + "value": 1678401156010 + }, + "date_of_expiration": { + "type": 6, + "value": 1680993099895 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678401156010 + }, + "money_release_date": { + "type": 6, + "value": 1678401156010 + }, "money_release_status": "approved", "wasDebited": true }, @@ -2621,7 +3480,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 9 parcela(s) 18.00%", "amount": 108 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 9 parcela(s) 18.00%", + "amount": 108 + }, "revision": "lnt02q9y005hoohx1bschjrd", "revision_nr": 1, "created": 1697467086214, @@ -2630,11 +3493,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q9y005goohx4vno3ymy", "revision_nr": 1, "created": 1697467086215, "modified": 1697467086215 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q9y005goohx4vno3ymy", + "revision_nr": 1, + "created": 1697467086215, + "modified": 1697467086215 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954/details", - "content": { "type": 1, "value": {}, "revision": "lnt02q9y005foohxg7cd0gll", "revision_nr": 1, "created": 1697467086215, "modified": 1697467086215 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q9y005foohxg7cd0gll", + "revision_nr": 1, + "created": 1697467086215, + "modified": 1697467086215 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954", @@ -2648,14 +3525,26 @@ "total_amount": 708, "history_id": 1678401292954, "id": 1678401292954, - "date_created": { "type": 6, "value": 1678401292954 }, - "date_last_updated": { "type": 6, "value": 1678401345264 }, - "date_of_expiration": { "type": 6, "value": 1680993292954 }, + "date_created": { + "type": 6, + "value": 1678401292954 + }, + "date_last_updated": { + "type": 6, + "value": 1678401345264 + }, + "date_of_expiration": { + "type": 6, + "value": 1680993292954 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678401345264 }, + "money_release_date": { + "type": 6, + "value": 1678401345264 + }, "money_release_status": "rejected" }, "revision": "lnt02q9x005doohxb0xecom0", @@ -2679,7 +3568,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 12 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 12 + }, "revision": "lnt02qa0005moohx47wo8qof", "revision_nr": 1, "created": 1697467086216, @@ -2688,11 +3581,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qa0005loohxc90v85jd", "revision_nr": 1, "created": 1697467086217, "modified": 1697467086217 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qa0005loohxc90v85jd", + "revision_nr": 1, + "created": 1697467086217, + "modified": 1697467086217 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273/details", - "content": { "type": 1, "value": {}, "revision": "lnt02qa0005koohxhx9qhoz1", "revision_nr": 1, "created": 1697467086217, "modified": 1697467086217 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qa0005koohxhx9qhoz1", + "revision_nr": 1, + "created": 1697467086217, + "modified": 1697467086217 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273", @@ -2706,15 +3613,30 @@ "total_amount": 312, "history_id": 1678401795273, "id": 1678401795273, - "date_created": { "type": 6, "value": 1678401795273 }, - "date_last_updated": { "type": 6, "value": 1679404907084 }, - "date_of_expiration": { "type": 6, "value": 1680993795273 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679404907084 }, - "money_release_date": { "type": 6, "value": 1679404907084 }, + "date_created": { + "type": 6, + "value": 1678401795273 + }, + "date_last_updated": { + "type": 6, + "value": 1679404907084 + }, + "date_of_expiration": { + "type": 6, + "value": 1680993795273 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679404907084 + }, + "money_release_date": { + "type": 6, + "value": 1679404907084 + }, "money_release_status": "approved", "wasDebited": true }, @@ -2750,7 +3672,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/barcode", "content": { "type": 1, - "value": { "content": "23796929000000023493380261020453727300633330" }, + "value": { + "content": "23796929000000023493380261020453727300633330" + }, "revision": "lnt02qa3005roohx4vfngevh", "revision_nr": 1, "created": 1697467086219, @@ -2761,7 +3685,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, "revision": "lnt02qa3005toohxaq8faxjo", "revision_nr": 1, "created": 1697467086220, @@ -2770,7 +3698,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qa3005soohxb18tdcqo", "revision_nr": 1, "created": 1697467086220, "modified": 1697467086220 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qa3005soohxb18tdcqo", + "revision_nr": 1, + "created": 1697467086220, + "modified": 1697467086220 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details", @@ -2805,9 +3740,18 @@ "total_amount": 23.490000000000002, "history_id": 1678595791470, "id": 55645430279, - "date_created": { "type": 6, "value": 1678595792384 }, - "date_last_updated": { "type": 6, "value": 1678595792384 }, - "date_of_expiration": { "type": 6, "value": 1678935599000 }, + "date_created": { + "type": 6, + "value": 1678595792384 + }, + "date_last_updated": { + "type": 6, + "value": 1678595792384 + }, + "date_of_expiration": { + "type": 6, + "value": 1678935599000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -2846,7 +3790,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/barcode", "content": { "type": 1, - "value": { "content": "23791929000000023493380261020453555300633330" }, + "value": { + "content": "23791929000000023493380261020453555300633330" + }, "revision": "lnt02qa7005yoohx8rlk7jla", "revision_nr": 1, "created": 1697467086223, @@ -2857,7 +3803,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, "revision": "lnt02qa80060oohxhble4uhq", "revision_nr": 1, "created": 1697467086224, @@ -2866,7 +3816,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qa7005zoohx4ganek2s", "revision_nr": 1, "created": 1697467086224, "modified": 1697467086224 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qa7005zoohx4ganek2s", + "revision_nr": 1, + "created": 1697467086224, + "modified": 1697467086224 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details", @@ -2901,9 +3858,18 @@ "total_amount": 23.490000000000002, "history_id": 1678595892940, "id": 55645448309, - "date_created": { "type": 6, "value": 1678595893379 }, - "date_last_updated": { "type": 6, "value": 1678595893379 }, - "date_of_expiration": { "type": 6, "value": 1678935599000 }, + "date_created": { + "type": 6, + "value": 1678595893379 + }, + "date_last_updated": { + "type": 6, + "value": 1678595893379 + }, + "date_of_expiration": { + "type": 6, + "value": 1678935599000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -2962,17 +3928,39 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/bank_info/collector", - "content": { "type": 1, "value": { "account_holder_name": "IVIPCOIN LTDA" }, "revision": "lnt02qab0068oohx3k12hdpd", "revision_nr": 1, "created": 1697467086228, "modified": 1697467086228 } + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "lnt02qab0068oohx3k12hdpd", + "revision_nr": 1, + "created": 1697467086228, + "modified": 1697467086228 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02qab0067oohx9avq1wti", "revision_nr": 1, "created": 1697467086228, "modified": 1697467086228 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02qab0067oohx9avq1wti", + "revision_nr": 1, + "created": 1697467086228, + "modified": 1697467086228 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.198 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, "revision": "lnt02qac006aoohxf8k57ltz", "revision_nr": 1, "created": 1697467086229, @@ -2981,13 +3969,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qac0069oohxddpw1ay5", "revision_nr": 1, "created": 1697467086229, "modified": 1697467086229 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qac0069oohxddpw1ay5", + "revision_nr": 1, + "created": 1697467086229, + "modified": 1697467086229 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02qaa0063oohxhqrlai1z", "revision_nr": 1, "created": 1697467086230, @@ -3006,16 +4007,31 @@ "total_amount": 20.2, "history_id": 1678596937174, "id": 55645618353, - "date_created": { "type": 6, "value": 1678596937889 }, - "date_last_updated": { "type": 6, "value": 1678596964000 }, - "date_of_expiration": { "type": 6, "value": 1678683337650 }, + "date_created": { + "type": 6, + "value": 1678596937889 + }, + "date_last_updated": { + "type": 6, + "value": 1678596964000 + }, + "date_of_expiration": { + "type": 6, + "value": 1678683337650 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678596964000 }, - "money_release_date": { "type": 6, "value": 1678596964000 }, + "date_approved": { + "type": 6, + "value": 1678596964000 + }, + "money_release_date": { + "type": 6, + "value": 1678596964000 + }, "wasDebited": true }, "revision": "lnt02qa90061oohx5h9rdb0t", @@ -3072,7 +4088,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.20790000000000003 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.20790000000000003 + }, "revision": "lnt02qah006ioohx1udjhu0z", "revision_nr": 1, "created": 1697467086234, @@ -3081,21 +4101,52 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qah006hoohxerjz661s", "revision_nr": 1, "created": 1697467086234, "modified": 1697467086234 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qah006hoohxerjz661s", + "revision_nr": 1, + "created": 1697467086234, + "modified": 1697467086234 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/bank_info/collector", - "content": { "type": 1, "value": { "account_holder_name": "IVIPCOIN LTDA" }, "revision": "lnt02qai006koohxbful66yw", "revision_nr": 1, "created": 1697467086235, "modified": 1697467086235 } + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "lnt02qai006koohxbful66yw", + "revision_nr": 1, + "created": 1697467086235, + "modified": 1697467086235 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02qai006joohxfdu7bsjf", "revision_nr": 1, "created": 1697467086235, "modified": 1697467086235 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02qai006joohxfdu7bsjf", + "revision_nr": 1, + "created": 1697467086235, + "modified": 1697467086235 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 21.21, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 21.21, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02qaf006doohxeaqf5qos", "revision_nr": 1, "created": 1697467086236, @@ -3114,9 +4165,18 @@ "total_amount": 21.21, "history_id": 1678649850085, "id": 55660781347, - "date_created": { "type": 6, "value": 1678649850913 }, - "date_last_updated": { "type": 6, "value": 1678736452000 }, - "date_of_expiration": { "type": 6, "value": 1678736250656 }, + "date_created": { + "type": 6, + "value": 1678649850913 + }, + "date_last_updated": { + "type": 6, + "value": 1678736452000 + }, + "date_of_expiration": { + "type": 6, + "value": 1678736250656 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "cancelled", @@ -3142,7 +4202,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679007163675/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qal006noohx5jpocshj", "revision_nr": 1, "created": 1697467086238, "modified": 1697467086238 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qal006noohx5jpocshj", + "revision_nr": 1, + "created": 1697467086238, + "modified": 1697467086238 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679007163675", @@ -3156,9 +4225,18 @@ "total_amount": 70, "history_id": 1679007163675, "id": 1679007163675, - "date_created": { "type": 6, "value": 1679007163675 }, - "date_last_updated": { "type": 6, "value": 1679007163675 }, - "date_of_expiration": { "type": 6, "value": 1681599163675 }, + "date_created": { + "type": 6, + "value": 1679007163675 + }, + "date_last_updated": { + "type": 6, + "value": 1679007163675 + }, + "date_of_expiration": { + "type": 6, + "value": 1681599163675 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -3183,7 +4261,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010027708/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qan006qoohx4u27bkk6", "revision_nr": 1, "created": 1697467086240, "modified": 1697467086240 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qan006qoohx4u27bkk6", + "revision_nr": 1, + "created": 1697467086240, + "modified": 1697467086240 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010027708", @@ -3197,9 +4284,18 @@ "total_amount": 22, "history_id": 1679010027708, "id": 1679010027708, - "date_created": { "type": 6, "value": 1679010027708 }, - "date_last_updated": { "type": 6, "value": 1679010027708 }, - "date_of_expiration": { "type": 6, "value": 1681602027708 }, + "date_created": { + "type": 6, + "value": 1679010027708 + }, + "date_last_updated": { + "type": 6, + "value": 1679010027708 + }, + "date_of_expiration": { + "type": 6, + "value": 1681602027708 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -3224,7 +4320,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010677912/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qap006toohx6greeocs", "revision_nr": 1, "created": 1697467086242, "modified": 1697467086242 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qap006toohx6greeocs", + "revision_nr": 1, + "created": 1697467086242, + "modified": 1697467086242 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010677912", @@ -3238,9 +4343,18 @@ "total_amount": 34.53, "history_id": 1679010677912, "id": 1679010677912, - "date_created": { "type": 6, "value": 1679010677912 }, - "date_last_updated": { "type": 6, "value": 1679010677912 }, - "date_of_expiration": { "type": 6, "value": 1681602677912 }, + "date_created": { + "type": 6, + "value": 1679010677912 + }, + "date_last_updated": { + "type": 6, + "value": 1679010677912 + }, + "date_of_expiration": { + "type": 6, + "value": 1681602677912 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -3278,7 +4392,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/barcode", "content": { "type": 1, - "value": { "content": "23797929500000053493380261020810012400633330" }, + "value": { + "content": "23797929500000053493380261020810012400633330" + }, "revision": "lnt02qar006yoohxbdj10wfe", "revision_nr": 1, "created": 1697467086244, @@ -3289,7 +4405,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, "revision": "lnt02qas0070oohxfsj80y9w", "revision_nr": 1, "created": 1697467086244, @@ -3298,7 +4418,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qas006zoohxhh3mekhw", "revision_nr": 1, "created": 1697467086245, "modified": 1697467086245 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qas006zoohxhh3mekhw", + "revision_nr": 1, + "created": 1697467086245, + "modified": 1697467086245 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details", @@ -3333,9 +4460,18 @@ "total_amount": 53.49, "history_id": 1679012344229, "id": 55844330172, - "date_created": { "type": 6, "value": 1679012344871 }, - "date_last_updated": { "type": 6, "value": 1679012344871 }, - "date_of_expiration": { "type": 6, "value": 1679367599000 }, + "date_created": { + "type": 6, + "value": 1679012344871 + }, + "date_last_updated": { + "type": 6, + "value": 1679012344871 + }, + "date_of_expiration": { + "type": 6, + "value": 1679367599000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -3361,7 +4497,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012395493/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qav0073oohxhnuh14ln", "revision_nr": 1, "created": 1697467086247, "modified": 1697467086247 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qav0073oohxhnuh14ln", + "revision_nr": 1, + "created": 1697467086247, + "modified": 1697467086247 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012395493", @@ -3375,9 +4520,18 @@ "total_amount": 23.54, "history_id": 1679012395493, "id": 1679012395493, - "date_created": { "type": 6, "value": 1679012395493 }, - "date_last_updated": { "type": 6, "value": 1679012395493 }, - "date_of_expiration": { "type": 6, "value": 1681604395493 }, + "date_created": { + "type": 6, + "value": 1679012395493 + }, + "date_last_updated": { + "type": 6, + "value": 1679012395493 + }, + "date_of_expiration": { + "type": 6, + "value": 1681604395493 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -3404,7 +4558,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, "revision": "lnt02qaw0078oohxbsko0r1v", "revision_nr": 1, "created": 1697467086249, @@ -3413,11 +4571,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qaw0077oohx71zzcksi", "revision_nr": 1, "created": 1697467086250, "modified": 1697467086250 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qaw0077oohx71zzcksi", + "revision_nr": 1, + "created": 1697467086250, + "modified": 1697467086250 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084/details", - "content": { "type": 1, "value": {}, "revision": "lnt02qaw0076oohxhi646q8f", "revision_nr": 1, "created": 1697467086250, "modified": 1697467086250 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qaw0076oohxhi646q8f", + "revision_nr": 1, + "created": 1697467086250, + "modified": 1697467086250 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084", @@ -3431,9 +4603,18 @@ "total_amount": 224, "history_id": 1679181025084, "id": 1679181025084, - "date_created": { "type": 6, "value": 1679181025084 }, - "date_last_updated": { "type": 6, "value": 1679181025084 }, - "date_of_expiration": { "type": 6, "value": 1681773025084 }, + "date_created": { + "type": 6, + "value": 1679181025084 + }, + "date_last_updated": { + "type": 6, + "value": 1679181025084 + }, + "date_of_expiration": { + "type": 6, + "value": 1681773025084 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -3461,7 +4642,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 51 + }, "revision": "lnt02qaz007doohxabbv43tt", "revision_nr": 1, "created": 1697467086252, @@ -3470,11 +4655,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qaz007coohx5z2g0pec", "revision_nr": 1, "created": 1697467086252, "modified": 1697467086252 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qaz007coohx5z2g0pec", + "revision_nr": 1, + "created": 1697467086252, + "modified": 1697467086252 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805/details", - "content": { "type": 1, "value": {}, "revision": "lnt02qaz007boohx71hbb214", "revision_nr": 1, "created": 1697467086253, "modified": 1697467086253 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qaz007boohx71hbb214", + "revision_nr": 1, + "created": 1697467086253, + "modified": 1697467086253 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805", @@ -3488,9 +4687,18 @@ "total_amount": 459, "history_id": 1679181157805, "id": 1679181157805, - "date_created": { "type": 6, "value": 1679181157805 }, - "date_last_updated": { "type": 6, "value": 1679181157805 }, - "date_of_expiration": { "type": 6, "value": 1681773157805 }, + "date_created": { + "type": 6, + "value": 1679181157805 + }, + "date_last_updated": { + "type": 6, + "value": 1679181157805 + }, + "date_of_expiration": { + "type": 6, + "value": 1681773157805 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -3518,7 +4726,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 9.200000000000001 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 9.200000000000001 + }, "revision": "lnt02qb2007ioohx3jt87ikr", "revision_nr": 1, "created": 1697467086255, @@ -3527,11 +4739,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qb2007hoohxe4648wyg", "revision_nr": 1, "created": 1697467086256, "modified": 1697467086256 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qb2007hoohxe4648wyg", + "revision_nr": 1, + "created": 1697467086256, + "modified": 1697467086256 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080/details", - "content": { "type": 1, "value": {}, "revision": "lnt02qb2007goohxbxi56qtg", "revision_nr": 1, "created": 1697467086256, "modified": 1697467086256 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qb2007goohxbxi56qtg", + "revision_nr": 1, + "created": 1697467086256, + "modified": 1697467086256 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080", @@ -3545,9 +4771,18 @@ "total_amount": 239.2, "history_id": 1679183534080, "id": 1679183534080, - "date_created": { "type": 6, "value": 1679183534080 }, - "date_last_updated": { "type": 6, "value": 1679183534080 }, - "date_of_expiration": { "type": 6, "value": 1681775534080 }, + "date_created": { + "type": 6, + "value": 1679183534080 + }, + "date_last_updated": { + "type": 6, + "value": 1679183534080 + }, + "date_of_expiration": { + "type": 6, + "value": 1681775534080 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -3575,7 +4810,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 8 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8 + }, "revision": "lnt02qb5007noohxarjicc1h", "revision_nr": 1, "created": 1697467086258, @@ -3584,11 +4823,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qb5007moohx6ewngund", "revision_nr": 1, "created": 1697467086259, "modified": 1697467086259 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qb5007moohx6ewngund", + "revision_nr": 1, + "created": 1697467086259, + "modified": 1697467086259 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128/details", - "content": { "type": 1, "value": {}, "revision": "lnt02qb5007loohx7n3151lm", "revision_nr": 1, "created": 1697467086259, "modified": 1697467086259 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qb5007loohx7n3151lm", + "revision_nr": 1, + "created": 1697467086259, + "modified": 1697467086259 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128", @@ -3602,9 +4855,18 @@ "total_amount": 208, "history_id": 1679184046128, "id": 1679184046128, - "date_created": { "type": 6, "value": 1679184046128 }, - "date_last_updated": { "type": 6, "value": 1679184046128 }, - "date_of_expiration": { "type": 6, "value": 1681776046128 }, + "date_created": { + "type": 6, + "value": 1679184046128 + }, + "date_last_updated": { + "type": 6, + "value": 1679184046128 + }, + "date_of_expiration": { + "type": 6, + "value": 1681776046128 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -3632,7 +4894,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 8.4 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8.4 + }, "revision": "lnt02qb9007soohx71wlh9x1", "revision_nr": 1, "created": 1697467086261, @@ -3641,11 +4907,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qb9007roohx27a58diu", "revision_nr": 1, "created": 1697467086262, "modified": 1697467086262 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qb9007roohx27a58diu", + "revision_nr": 1, + "created": 1697467086262, + "modified": 1697467086262 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424/details", - "content": { "type": 1, "value": {}, "revision": "lnt02qb8007qoohxcssf6yik", "revision_nr": 1, "created": 1697467086262, "modified": 1697467086262 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qb8007qoohxcssf6yik", + "revision_nr": 1, + "created": 1697467086262, + "modified": 1697467086262 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424", @@ -3659,9 +4939,18 @@ "total_amount": 218.4, "history_id": 1679184832424, "id": 1679184832424, - "date_created": { "type": 6, "value": 1679184832424 }, - "date_last_updated": { "type": 6, "value": 1679184832424 }, - "date_of_expiration": { "type": 6, "value": 1681776832424 }, + "date_created": { + "type": 6, + "value": 1679184832424 + }, + "date_last_updated": { + "type": 6, + "value": 1679184832424 + }, + "date_of_expiration": { + "type": 6, + "value": 1681776832424 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -3721,9 +5010,18 @@ "original_amount": 50, "total_amount": 50, "id": 1679780561471, - "date_created": { "type": 6, "value": 1679780561471 }, - "date_last_updated": { "type": 6, "value": 1679780561471 }, - "date_of_expiration": { "type": 6, "value": 1679780561471 }, + "date_created": { + "type": 6, + "value": 1679780561471 + }, + "date_last_updated": { + "type": 6, + "value": 1679780561471 + }, + "date_of_expiration": { + "type": 6, + "value": 1679780561471 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -3784,9 +5082,18 @@ "original_amount": 50000, "total_amount": 50000, "id": 1679780730626, - "date_created": { "type": 6, "value": 1679780730626 }, - "date_last_updated": { "type": 6, "value": 1679780730626 }, - "date_of_expiration": { "type": 6, "value": 1679780730626 }, + "date_created": { + "type": 6, + "value": 1679780730626 + }, + "date_last_updated": { + "type": 6, + "value": 1679780730626 + }, + "date_of_expiration": { + "type": 6, + "value": 1679780730626 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -3847,9 +5154,18 @@ "original_amount": 100000, "total_amount": 100000, "id": 1679798199684, - "date_created": { "type": 6, "value": 1679798199684 }, - "date_last_updated": { "type": 6, "value": 1679798199684 }, - "date_of_expiration": { "type": 6, "value": 1679798199684 }, + "date_created": { + "type": 6, + "value": 1679798199684 + }, + "date_last_updated": { + "type": 6, + "value": 1679798199684 + }, + "date_of_expiration": { + "type": 6, + "value": 1679798199684 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -3899,9 +5215,18 @@ "original_amount": 3964758, "total_amount": 3964758, "id": 1681764788277, - "date_created": { "type": 6, "value": 1681764788277 }, - "date_last_updated": { "type": 6, "value": 1681764788277 }, - "date_of_expiration": { "type": 6, "value": 1681764788277 }, + "date_created": { + "type": 6, + "value": 1681764788277 + }, + "date_last_updated": { + "type": 6, + "value": 1681764788277 + }, + "date_of_expiration": { + "type": 6, + "value": 1681764788277 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -3952,9 +5277,18 @@ "original_amount": 175.094, "total_amount": 175.094, "id": 1682323304615, - "date_created": { "type": 6, "value": 1682323304615 }, - "date_last_updated": { "type": 6, "value": 1682323304615 }, - "date_of_expiration": { "type": 6, "value": 1682323304615 }, + "date_created": { + "type": 6, + "value": 1682323304615 + }, + "date_last_updated": { + "type": 6, + "value": 1682323304615 + }, + "date_of_expiration": { + "type": 6, + "value": 1682323304615 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4005,9 +5339,18 @@ "original_amount": 119.6, "total_amount": 119.6, "id": 1682323486538, - "date_created": { "type": 6, "value": 1682323486538 }, - "date_last_updated": { "type": 6, "value": 1682323486538 }, - "date_of_expiration": { "type": 6, "value": 1682323486538 }, + "date_created": { + "type": 6, + "value": 1682323486538 + }, + "date_last_updated": { + "type": 6, + "value": 1682323486538 + }, + "date_of_expiration": { + "type": 6, + "value": 1682323486538 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4058,9 +5401,18 @@ "original_amount": 104, "total_amount": 104, "id": 1682324590308, - "date_created": { "type": 6, "value": 1682324590308 }, - "date_last_updated": { "type": 6, "value": 1682324590308 }, - "date_of_expiration": { "type": 6, "value": 1682324590308 }, + "date_created": { + "type": 6, + "value": 1682324590308 + }, + "date_last_updated": { + "type": 6, + "value": 1682324590308 + }, + "date_of_expiration": { + "type": 6, + "value": 1682324590308 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4111,9 +5463,18 @@ "original_amount": 109.2, "total_amount": 109.2, "id": 1682324593569, - "date_created": { "type": 6, "value": 1682324593569 }, - "date_last_updated": { "type": 6, "value": 1682324593569 }, - "date_of_expiration": { "type": 6, "value": 1682324593569 }, + "date_created": { + "type": 6, + "value": 1682324593569 + }, + "date_last_updated": { + "type": 6, + "value": 1682324593569 + }, + "date_of_expiration": { + "type": 6, + "value": 1682324593569 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4164,9 +5525,18 @@ "original_amount": 104, "total_amount": 104, "id": 1682325423689, - "date_created": { "type": 6, "value": 1682325423689 }, - "date_last_updated": { "type": 6, "value": 1682325423689 }, - "date_of_expiration": { "type": 6, "value": 1682325423689 }, + "date_created": { + "type": 6, + "value": 1682325423689 + }, + "date_last_updated": { + "type": 6, + "value": 1682325423689 + }, + "date_of_expiration": { + "type": 6, + "value": 1682325423689 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4217,9 +5587,18 @@ "original_amount": 109.2, "total_amount": 109.2, "id": 1682325428664, - "date_created": { "type": 6, "value": 1682325428664 }, - "date_last_updated": { "type": 6, "value": 1682325428664 }, - "date_of_expiration": { "type": 6, "value": 1682325428664 }, + "date_created": { + "type": 6, + "value": 1682325428664 + }, + "date_last_updated": { + "type": 6, + "value": 1682325428664 + }, + "date_of_expiration": { + "type": 6, + "value": 1682325428664 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4284,9 +5663,18 @@ "total_amount": 37.333, "id": 1682578544384, "contract_id": "1679181025084", - "date_created": { "type": 6, "value": 1682578544384 }, - "date_last_updated": { "type": 6, "value": 1682578544384 }, - "date_of_expiration": { "type": 6, "value": 1682578544384 }, + "date_created": { + "type": 6, + "value": 1682578544384 + }, + "date_last_updated": { + "type": 6, + "value": 1682578544384 + }, + "date_of_expiration": { + "type": 6, + "value": 1682578544384 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4350,9 +5738,18 @@ "total_amount": 114.75, "id": 1682578544557, "contract_id": "1679181157805", - "date_created": { "type": 6, "value": 1682578544557 }, - "date_last_updated": { "type": 6, "value": 1682578544557 }, - "date_of_expiration": { "type": 6, "value": 1682578544557 }, + "date_created": { + "type": 6, + "value": 1682578544557 + }, + "date_last_updated": { + "type": 6, + "value": 1682578544557 + }, + "date_of_expiration": { + "type": 6, + "value": 1682578544557 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4416,9 +5813,18 @@ "total_amount": 119.6, "id": 1682578984558, "contract_id": "1679183534080", - "date_created": { "type": 6, "value": 1682578984558 }, - "date_last_updated": { "type": 6, "value": 1682578984558 }, - "date_of_expiration": { "type": 6, "value": 1682578984558 }, + "date_created": { + "type": 6, + "value": 1682578984558 + }, + "date_last_updated": { + "type": 6, + "value": 1682578984558 + }, + "date_of_expiration": { + "type": 6, + "value": 1682578984558 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4482,9 +5888,18 @@ "total_amount": 104, "id": 1682578984726, "contract_id": "1679184046128", - "date_created": { "type": 6, "value": 1682578984726 }, - "date_last_updated": { "type": 6, "value": 1682578984726 }, - "date_of_expiration": { "type": 6, "value": 1682578984726 }, + "date_created": { + "type": 6, + "value": 1682578984726 + }, + "date_last_updated": { + "type": 6, + "value": 1682578984726 + }, + "date_of_expiration": { + "type": 6, + "value": 1682578984726 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4548,9 +5963,18 @@ "total_amount": 109.2, "id": 1682578984913, "contract_id": "1679184832424", - "date_created": { "type": 6, "value": 1682578984913 }, - "date_last_updated": { "type": 6, "value": 1682578984913 }, - "date_of_expiration": { "type": 6, "value": 1682578984913 }, + "date_created": { + "type": 6, + "value": 1682578984913 + }, + "date_last_updated": { + "type": 6, + "value": 1682578984913 + }, + "date_of_expiration": { + "type": 6, + "value": 1682578984913 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4579,7 +6003,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 4 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 4 + }, "revision": "lnt02qc4008zoohxgdepe224", "revision_nr": 1, "created": 1697467086293, @@ -4588,11 +6016,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qc4008yoohxg8da1vkv", "revision_nr": 1, "created": 1697467086293, "modified": 1697467086293 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qc4008yoohxg8da1vkv", + "revision_nr": 1, + "created": 1697467086293, + "modified": 1697467086293 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468/details", - "content": { "type": 1, "value": {}, "revision": "lnt02qc4008xoohxcwx05w60", "revision_nr": 1, "created": 1697467086295, "modified": 1697467086295 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qc4008xoohxcwx05w60", + "revision_nr": 1, + "created": 1697467086295, + "modified": 1697467086295 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468", @@ -4606,9 +6048,18 @@ "total_amount": 204, "history_id": 1683665355468, "id": 1683665355468, - "date_created": { "type": 6, "value": 1683665355468 }, - "date_last_updated": { "type": 6, "value": 1683665355468 }, - "date_of_expiration": { "type": 6, "value": 1686257355468 }, + "date_created": { + "type": 6, + "value": 1683665355468 + }, + "date_last_updated": { + "type": 6, + "value": 1683665355468 + }, + "date_of_expiration": { + "type": 6, + "value": 1686257355468 + }, "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", @@ -4636,7 +6087,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 3 parcela(s) 6.00%", "amount": 12 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 3 parcela(s) 6.00%", + "amount": 12 + }, "revision": "lnt02qc80094oohxhaybc97m", "revision_nr": 1, "created": 1697467086297, @@ -4645,11 +6100,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qc80093oohxahew6hk8", "revision_nr": 1, "created": 1697467086298, "modified": 1697467086298 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qc80093oohxahew6hk8", + "revision_nr": 1, + "created": 1697467086298, + "modified": 1697467086298 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591/details", - "content": { "type": 1, "value": {}, "revision": "lnt02qc80092oohxa180a745", "revision_nr": 1, "created": 1697467086298, "modified": 1697467086298 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qc80092oohxa180a745", + "revision_nr": 1, + "created": 1697467086298, + "modified": 1697467086298 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591", @@ -4663,9 +6132,18 @@ "total_amount": 212, "history_id": 1683667472591, "id": 1683667472591, - "date_created": { "type": 6, "value": 1683667472591 }, - "date_last_updated": { "type": 6, "value": 1683667472591 }, - "date_of_expiration": { "type": 6, "value": 1686259472591 }, + "date_created": { + "type": 6, + "value": 1683667472591 + }, + "date_last_updated": { + "type": 6, + "value": 1683667472591 + }, + "date_of_expiration": { + "type": 6, + "value": 1686259472591 + }, "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", @@ -4691,7 +6169,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684303097186/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qcc0097oohxd39pcoes", "revision_nr": 1, "created": 1697467086300, "modified": 1697467086300 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qcc0097oohxd39pcoes", + "revision_nr": 1, + "created": 1697467086300, + "modified": 1697467086300 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684303097186", @@ -4705,15 +6192,30 @@ "total_amount": 250, "history_id": 1684303097186, "id": 1684303097186, - "date_created": { "type": 6, "value": 1684303097186 }, - "date_last_updated": { "type": 6, "value": 1684303171953 }, - "date_of_expiration": { "type": 6, "value": 1686895097186 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684303171953 }, - "money_release_date": { "type": 6, "value": 1684303171953 }, + "date_created": { + "type": 6, + "value": 1684303097186 + }, + "date_last_updated": { + "type": 6, + "value": 1684303171953 + }, + "date_of_expiration": { + "type": 6, + "value": 1686895097186 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684303171953 + }, + "money_release_date": { + "type": 6, + "value": 1684303171953 + }, "money_release_status": "approved", "wasDebited": true }, @@ -4770,9 +6272,18 @@ "original_amount": 630, "total_amount": 630, "id": 1684348051817, - "date_created": { "type": 6, "value": 1684348051817 }, - "date_last_updated": { "type": 6, "value": 1684348051817 }, - "date_of_expiration": { "type": 6, "value": 1684348051817 }, + "date_created": { + "type": 6, + "value": 1684348051817 + }, + "date_last_updated": { + "type": 6, + "value": 1684348051817 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348051817 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -4836,9 +6347,18 @@ "total_amount": 37.333, "id": 1684436739701, "contract_id": "1679181025084", - "date_created": { "type": 6, "value": 1684436739701 }, - "date_last_updated": { "type": 6, "value": 1684436739701 }, - "date_of_expiration": { "type": 6, "value": 1684436739701 }, + "date_created": { + "type": 6, + "value": 1684436739701 + }, + "date_last_updated": { + "type": 6, + "value": 1684436739701 + }, + "date_of_expiration": { + "type": 6, + "value": 1684436739701 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4902,9 +6422,18 @@ "total_amount": 114.75, "id": 1684436739822, "contract_id": "1679181157805", - "date_created": { "type": 6, "value": 1684436739822 }, - "date_last_updated": { "type": 6, "value": 1684436739822 }, - "date_of_expiration": { "type": 6, "value": 1684436739822 }, + "date_created": { + "type": 6, + "value": 1684436739822 + }, + "date_last_updated": { + "type": 6, + "value": 1684436739822 + }, + "date_of_expiration": { + "type": 6, + "value": 1684436739822 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4968,9 +6497,18 @@ "total_amount": 119.6, "id": 1684436739934, "contract_id": "1679183534080", - "date_created": { "type": 6, "value": 1684436739934 }, - "date_last_updated": { "type": 6, "value": 1684436739934 }, - "date_of_expiration": { "type": 6, "value": 1684436739934 }, + "date_created": { + "type": 6, + "value": 1684436739934 + }, + "date_last_updated": { + "type": 6, + "value": 1684436739934 + }, + "date_of_expiration": { + "type": 6, + "value": 1684436739934 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -5034,9 +6572,18 @@ "total_amount": 104, "id": 1684436740031, "contract_id": "1679184046128", - "date_created": { "type": 6, "value": 1684436740031 }, - "date_last_updated": { "type": 6, "value": 1684436740031 }, - "date_of_expiration": { "type": 6, "value": 1684436740031 }, + "date_created": { + "type": 6, + "value": 1684436740031 + }, + "date_last_updated": { + "type": 6, + "value": 1684436740031 + }, + "date_of_expiration": { + "type": 6, + "value": 1684436740031 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -5100,9 +6647,18 @@ "total_amount": 109.2, "id": 1684436740155, "contract_id": "1679184832424", - "date_created": { "type": 6, "value": 1684436740155 }, - "date_last_updated": { "type": 6, "value": 1684436740155 }, - "date_of_expiration": { "type": 6, "value": 1684436740155 }, + "date_created": { + "type": 6, + "value": 1684436740155 + }, + "date_last_updated": { + "type": 6, + "value": 1684436740155 + }, + "date_of_expiration": { + "type": 6, + "value": 1684436740155 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -5152,9 +6708,18 @@ "original_amount": 5850731, "total_amount": 5850731, "id": 1684790150988, - "date_created": { "type": 6, "value": 1684790150988 }, - "date_last_updated": { "type": 6, "value": 1684790150988 }, - "date_of_expiration": { "type": 6, "value": 1684790150988 }, + "date_created": { + "type": 6, + "value": 1684790150988 + }, + "date_last_updated": { + "type": 6, + "value": 1684790150988 + }, + "date_of_expiration": { + "type": 6, + "value": 1684790150988 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5216,9 +6781,18 @@ "original_amount": 1065.7, "total_amount": 1065.7, "id": 1684790990972, - "date_created": { "type": 6, "value": 1684790990972 }, - "date_last_updated": { "type": 6, "value": 1684790990972 }, - "date_of_expiration": { "type": 6, "value": 1684790990972 }, + "date_created": { + "type": 6, + "value": 1684790990972 + }, + "date_last_updated": { + "type": 6, + "value": 1684790990972 + }, + "date_of_expiration": { + "type": 6, + "value": 1684790990972 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5245,7 +6819,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376471814/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qcx009xoohxbms70cbr", "revision_nr": 1, "created": 1697467086321, "modified": 1697467086321 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qcx009xoohxbms70cbr", + "revision_nr": 1, + "created": 1697467086321, + "modified": 1697467086321 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376471814", @@ -5259,9 +6842,18 @@ "total_amount": 2337199, "history_id": 1685376471814, "id": 1685376471814, - "date_created": { "type": 6, "value": 1685376471814 }, - "date_last_updated": { "type": 6, "value": 1685376471814 }, - "date_of_expiration": { "type": 6, "value": 1685376471814 }, + "date_created": { + "type": 6, + "value": 1685376471814 + }, + "date_last_updated": { + "type": 6, + "value": 1685376471814 + }, + "date_of_expiration": { + "type": 6, + "value": 1685376471814 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -5286,7 +6878,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376968807/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qcz00a0oohxapfm26w8", "revision_nr": 1, "created": 1697467086324, "modified": 1697467086324 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qcz00a0oohxapfm26w8", + "revision_nr": 1, + "created": 1697467086324, + "modified": 1697467086324 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376968807", @@ -5300,9 +6901,18 @@ "total_amount": 1357502, "history_id": 1685376968807, "id": 1685376968807, - "date_created": { "type": 6, "value": 1685376968807 }, - "date_last_updated": { "type": 6, "value": 1685376968807 }, - "date_of_expiration": { "type": 6, "value": 1685376968807 }, + "date_created": { + "type": 6, + "value": 1685376968807 + }, + "date_last_updated": { + "type": 6, + "value": 1685376968807 + }, + "date_of_expiration": { + "type": 6, + "value": 1685376968807 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -5327,7 +6937,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379763814/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qd200a3oohxhrajetwf", "revision_nr": 1, "created": 1697467086327, "modified": 1697467086327 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qd200a3oohxhrajetwf", + "revision_nr": 1, + "created": 1697467086327, + "modified": 1697467086327 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379763814", @@ -5341,15 +6960,30 @@ "total_amount": 754612, "history_id": 1685379763814, "id": 1685379763814, - "date_created": { "type": 6, "value": 1685379763814 }, - "date_last_updated": { "type": 6, "value": 1685397154691 }, - "date_of_expiration": { "type": 6, "value": 1685379763814 }, + "date_created": { + "type": 6, + "value": 1685379763814 + }, + "date_last_updated": { + "type": 6, + "value": 1685397154691 + }, + "date_of_expiration": { + "type": 6, + "value": 1685379763814 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1685397154691 }, - "money_release_date": { "type": 6, "value": 1685397154691 }, + "date_approved": { + "type": 6, + "value": 1685397154691 + }, + "money_release_date": { + "type": 6, + "value": 1685397154691 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -5372,7 +7006,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379960399/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qd400a6oohxhiwkgqf5", "revision_nr": 1, "created": 1697467086329, "modified": 1697467086329 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qd400a6oohxhiwkgqf5", + "revision_nr": 1, + "created": 1697467086329, + "modified": 1697467086329 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379960399", @@ -5386,9 +7029,18 @@ "total_amount": 1432864, "history_id": 1685379960399, "id": 1685379960399, - "date_created": { "type": 6, "value": 1685379960399 }, - "date_last_updated": { "type": 6, "value": 1685379960399 }, - "date_of_expiration": { "type": 6, "value": 1685379960399 }, + "date_created": { + "type": 6, + "value": 1685379960399 + }, + "date_last_updated": { + "type": 6, + "value": 1685379960399 + }, + "date_of_expiration": { + "type": 6, + "value": 1685379960399 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -5413,7 +7065,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685382789817/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qd700a9oohx7fho9yqz", "revision_nr": 1, "created": 1697467086332, "modified": 1697467086332 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qd700a9oohx7fho9yqz", + "revision_nr": 1, + "created": 1697467086332, + "modified": 1697467086332 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685382789817", @@ -5427,14 +7088,26 @@ "total_amount": 2248, "history_id": 1685382789817, "id": 1685382789817, - "date_created": { "type": 6, "value": 1685382789817 }, - "date_last_updated": { "type": 6, "value": 1685382821235 }, - "date_of_expiration": { "type": 6, "value": 1687974789817 }, + "date_created": { + "type": 6, + "value": 1685382789817 + }, + "date_last_updated": { + "type": 6, + "value": 1685382821235 + }, + "date_of_expiration": { + "type": 6, + "value": 1687974789817 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1685382821235 }, + "money_release_date": { + "type": 6, + "value": 1685382821235 + }, "money_release_status": "rejected" }, "revision": "lnt02qd600a7oohxd7xwbtcz", @@ -5479,9 +7152,18 @@ "original_amount": 15, "total_amount": 15, "id": 1685391703693, - "date_created": { "type": 6, "value": 1685391703693 }, - "date_last_updated": { "type": 6, "value": 1685391703693 }, - "date_of_expiration": { "type": 6, "value": 1685391703693 }, + "date_created": { + "type": 6, + "value": 1685391703693 + }, + "date_last_updated": { + "type": 6, + "value": 1685391703693 + }, + "date_of_expiration": { + "type": 6, + "value": 1685391703693 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5532,9 +7214,18 @@ "original_amount": 5000, "total_amount": 5000, "id": 1685392276817, - "date_created": { "type": 6, "value": 1685392276817 }, - "date_last_updated": { "type": 6, "value": 1685392276817 }, - "date_of_expiration": { "type": 6, "value": 1685392276817 }, + "date_created": { + "type": 6, + "value": 1685392276817 + }, + "date_last_updated": { + "type": 6, + "value": 1685392276817 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392276817 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5585,9 +7276,18 @@ "original_amount": 500, "total_amount": 500, "id": 1685393515405, - "date_created": { "type": 6, "value": 1685393515405 }, - "date_last_updated": { "type": 6, "value": 1685393515405 }, - "date_of_expiration": { "type": 6, "value": 1685393515405 }, + "date_created": { + "type": 6, + "value": 1685393515405 + }, + "date_last_updated": { + "type": 6, + "value": 1685393515405 + }, + "date_of_expiration": { + "type": 6, + "value": 1685393515405 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5638,9 +7338,18 @@ "original_amount": 5200, "total_amount": 5200, "id": 1685393559293, - "date_created": { "type": 6, "value": 1685393559293 }, - "date_last_updated": { "type": 6, "value": 1685393559293 }, - "date_of_expiration": { "type": 6, "value": 1685393559293 }, + "date_created": { + "type": 6, + "value": 1685393559293 + }, + "date_last_updated": { + "type": 6, + "value": 1685393559293 + }, + "date_of_expiration": { + "type": 6, + "value": 1685393559293 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5691,9 +7400,18 @@ "original_amount": 4200, "total_amount": 4200, "id": 1685394959774, - "date_created": { "type": 6, "value": 1685394959774 }, - "date_last_updated": { "type": 6, "value": 1685394959774 }, - "date_of_expiration": { "type": 6, "value": 1685394959774 }, + "date_created": { + "type": 6, + "value": 1685394959774 + }, + "date_last_updated": { + "type": 6, + "value": 1685394959774 + }, + "date_of_expiration": { + "type": 6, + "value": 1685394959774 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5744,9 +7462,18 @@ "original_amount": 9, "total_amount": 9, "id": 1685395256711, - "date_created": { "type": 6, "value": 1685395256711 }, - "date_last_updated": { "type": 6, "value": 1685395256711 }, - "date_of_expiration": { "type": 6, "value": 1685395256711 }, + "date_created": { + "type": 6, + "value": 1685395256711 + }, + "date_last_updated": { + "type": 6, + "value": 1685395256711 + }, + "date_of_expiration": { + "type": 6, + "value": 1685395256711 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5808,9 +7535,18 @@ "original_amount": 10000, "total_amount": 10000, "id": 1685395602952, - "date_created": { "type": 6, "value": 1685395602952 }, - "date_last_updated": { "type": 6, "value": 1685395602952 }, - "date_of_expiration": { "type": 6, "value": 1685395602952 }, + "date_created": { + "type": 6, + "value": 1685395602952 + }, + "date_last_updated": { + "type": 6, + "value": 1685395602952 + }, + "date_of_expiration": { + "type": 6, + "value": 1685395602952 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5860,9 +7596,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685395698830, - "date_created": { "type": 6, "value": 1685395698830 }, - "date_last_updated": { "type": 6, "value": 1685395698830 }, - "date_of_expiration": { "type": 6, "value": 1685395698830 }, + "date_created": { + "type": 6, + "value": 1685395698830 + }, + "date_last_updated": { + "type": 6, + "value": 1685395698830 + }, + "date_of_expiration": { + "type": 6, + "value": 1685395698830 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5924,9 +7669,18 @@ "original_amount": 30000, "total_amount": 30000, "id": 1685457147497, - "date_created": { "type": 6, "value": 1685457147497 }, - "date_last_updated": { "type": 6, "value": 1685457147497 }, - "date_of_expiration": { "type": 6, "value": 1685457147497 }, + "date_created": { + "type": 6, + "value": 1685457147497 + }, + "date_last_updated": { + "type": 6, + "value": 1685457147497 + }, + "date_of_expiration": { + "type": 6, + "value": 1685457147497 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5976,9 +7730,18 @@ "original_amount": 3000, "total_amount": 3000, "id": 1685457225462, - "date_created": { "type": 6, "value": 1685457225462 }, - "date_last_updated": { "type": 6, "value": 1685457225462 }, - "date_of_expiration": { "type": 6, "value": 1685457225462 }, + "date_created": { + "type": 6, + "value": 1685457225462 + }, + "date_last_updated": { + "type": 6, + "value": 1685457225462 + }, + "date_of_expiration": { + "type": 6, + "value": 1685457225462 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6040,9 +7803,18 @@ "original_amount": 70000, "total_amount": 70000, "id": 1685458042396, - "date_created": { "type": 6, "value": 1685458042396 }, - "date_last_updated": { "type": 6, "value": 1685458042396 }, - "date_of_expiration": { "type": 6, "value": 1685458042396 }, + "date_created": { + "type": 6, + "value": 1685458042396 + }, + "date_last_updated": { + "type": 6, + "value": 1685458042396 + }, + "date_of_expiration": { + "type": 6, + "value": 1685458042396 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6092,9 +7864,18 @@ "original_amount": 7000, "total_amount": 7000, "id": 1685458118470, - "date_created": { "type": 6, "value": 1685458118470 }, - "date_last_updated": { "type": 6, "value": 1685458118470 }, - "date_of_expiration": { "type": 6, "value": 1685458118470 }, + "date_created": { + "type": 6, + "value": 1685458118470 + }, + "date_last_updated": { + "type": 6, + "value": 1685458118470 + }, + "date_of_expiration": { + "type": 6, + "value": 1685458118470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6144,9 +7925,18 @@ "original_amount": 100000, "total_amount": 100000, "id": 1685663081137, - "date_created": { "type": 6, "value": 1685663081137 }, - "date_last_updated": { "type": 6, "value": 1685663081137 }, - "date_of_expiration": { "type": 6, "value": 1688255081137 }, + "date_created": { + "type": 6, + "value": 1685663081137 + }, + "date_last_updated": { + "type": 6, + "value": 1685663081137 + }, + "date_of_expiration": { + "type": 6, + "value": 1688255081137 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6198,9 +7988,18 @@ "original_amount": 0, "total_amount": 0, "id": 1685732640623, - "date_created": { "type": 6, "value": 1685732640623 }, - "date_last_updated": { "type": 6, "value": 1685732640623 }, - "date_of_expiration": { "type": 6, "value": 1685732640623 }, + "date_created": { + "type": 6, + "value": 1685732640623 + }, + "date_last_updated": { + "type": 6, + "value": 1685732640623 + }, + "date_of_expiration": { + "type": 6, + "value": 1685732640623 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6228,7 +8027,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1686686158496/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qe200b7oohx6rtyc5qd", "revision_nr": 1, "created": 1697467086363, "modified": 1697467086363 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qe200b7oohx6rtyc5qd", + "revision_nr": 1, + "created": 1697467086363, + "modified": 1697467086363 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1686686158496", @@ -6242,9 +8050,18 @@ "total_amount": 220, "history_id": 1686686158496, "id": 1686686158496, - "date_created": { "type": 6, "value": 1686686158496 }, - "date_last_updated": { "type": 6, "value": 1686686158496 }, - "date_of_expiration": { "type": 6, "value": 1689278158496 }, + "date_created": { + "type": 6, + "value": 1686686158496 + }, + "date_last_updated": { + "type": 6, + "value": 1686686158496 + }, + "date_of_expiration": { + "type": 6, + "value": 1689278158496 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -6306,9 +8123,18 @@ "total_amount": 37.333, "id": 1687279230710, "contract_id": "1679181025084", - "date_created": { "type": 6, "value": 1687279230710 }, - "date_last_updated": { "type": 6, "value": 1687279230710 }, - "date_of_expiration": { "type": 6, "value": 1687279230710 }, + "date_created": { + "type": 6, + "value": 1687279230710 + }, + "date_last_updated": { + "type": 6, + "value": 1687279230710 + }, + "date_of_expiration": { + "type": 6, + "value": 1687279230710 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -6335,7 +8161,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687291349985/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qe800bdoohxfg49cx56", "revision_nr": 1, "created": 1697467086368, "modified": 1697467086368 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qe800bdoohxfg49cx56", + "revision_nr": 1, + "created": 1697467086368, + "modified": 1697467086368 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687291349985", @@ -6349,9 +8184,18 @@ "total_amount": 865324, "history_id": 1687291349985, "id": 1687291349985, - "date_created": { "type": 6, "value": 1687291349985 }, - "date_last_updated": { "type": 6, "value": 1687291349985 }, - "date_of_expiration": { "type": 6, "value": 1687291349985 }, + "date_created": { + "type": 6, + "value": 1687291349985 + }, + "date_last_updated": { + "type": 6, + "value": 1687291349985 + }, + "date_of_expiration": { + "type": 6, + "value": 1687291349985 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -6409,9 +8253,18 @@ "original_amount": 102000, "total_amount": 102000, "id": 1688400997533, - "date_created": { "type": 6, "value": 1688400997533 }, - "date_last_updated": { "type": 6, "value": 1688400997533 }, - "date_of_expiration": { "type": 6, "value": 1688400997533 }, + "date_created": { + "type": 6, + "value": 1688400997533 + }, + "date_last_updated": { + "type": 6, + "value": 1688400997533 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400997533 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6472,9 +8325,18 @@ "original_amount": 960, "total_amount": 960, "id": 1689203359364, - "date_created": { "type": 6, "value": 1689203359364 }, - "date_last_updated": { "type": 6, "value": 1689203359364 }, - "date_of_expiration": { "type": 6, "value": 1715555359364 }, + "date_created": { + "type": 6, + "value": 1689203359364 + }, + "date_last_updated": { + "type": 6, + "value": 1689203359364 + }, + "date_of_expiration": { + "type": 6, + "value": 1715555359364 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6492,7 +8354,13 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1692469402188 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692469402188 + } + }, "revision": "lnt02qeg00bloohxb55d1cq0", "revision_nr": 1, "created": 1697467086377, @@ -6554,8 +8422,14 @@ "total_amount": 7104, "id": 1689877402192, "history_id": 1689877402192, - "date_created": { "type": 6, "value": 1689877402192 }, - "date_last_updated": { "type": 6, "value": 1689877402192 }, + "date_created": { + "type": 6, + "value": 1689877402192 + }, + "date_last_updated": { + "type": 6, + "value": 1689877402192 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -6573,7 +8447,13 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1692475284161 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692475284161 + } + }, "revision": "lnt02qel00bqoohx5u2j2vz6", "revision_nr": 1, "created": 1697467086382, @@ -6635,15 +8515,24 @@ "total_amount": 1391, "id": 1689883284161, "history_id": 1689883284161, - "date_created": { "type": 6, "value": 1689883284161 }, - "date_last_updated": { "type": 6, "value": 1689883327692 }, + "date_created": { + "type": 6, + "value": 1689883284161 + }, + "date_last_updated": { + "type": 6, + "value": 1689883327692 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "rejected", - "money_release_date": { "type": 6, "value": 1689883327692 }, + "money_release_date": { + "type": 6, + "value": 1689883327692 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -6679,7 +8568,14 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": { "type": 6, "value": 983415600000 }, "amount": 145.5 }, + "value": { + "title": "Taxa de serviço", + "label": { + "type": 6, + "value": 983415600000 + }, + "amount": 145.5 + }, "revision": "lnt02qet00bzoohx82nlcl1i", "revision_nr": 1, "created": 1697467086390, @@ -6688,7 +8584,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qet00byoohx0jn7exjq", "revision_nr": 1, "created": 1697467086391, "modified": 1697467086391 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qet00byoohx0jn7exjq", + "revision_nr": 1, + "created": 1697467086391, + "modified": 1697467086391 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details", @@ -6722,16 +8625,28 @@ "total_amount": 4850, "id": 1690566158772, "history_id": 1690566158772, - "date_created": { "type": 6, "value": 1690566158772 }, - "date_last_updated": { "type": 6, "value": 1690568714945 }, - "date_of_expiration": { "type": 6, "value": 1690566158772 }, + "date_created": { + "type": 6, + "value": 1690566158772 + }, + "date_last_updated": { + "type": 6, + "value": 1690568714945 + }, + "date_of_expiration": { + "type": 6, + "value": 1690566158772 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "rejected", - "money_release_date": { "type": 6, "value": 1690568714945 }, + "money_release_date": { + "type": 6, + "value": 1690568714945 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -6767,7 +8682,14 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": { "type": 6, "value": 983415600000 }, "amount": 29.099999999999998 }, + "value": { + "title": "Taxa de serviço", + "label": { + "type": 6, + "value": 983415600000 + }, + "amount": 29.099999999999998 + }, "revision": "lnt02qez00c5oohx4esy8p86", "revision_nr": 1, "created": 1697467086396, @@ -6776,7 +8698,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qez00c4oohx86lq314l", "revision_nr": 1, "created": 1697467086397, "modified": 1697467086397 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qez00c4oohx86lq314l", + "revision_nr": 1, + "created": 1697467086397, + "modified": 1697467086397 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details", @@ -6810,17 +8739,32 @@ "total_amount": 970, "id": 1690566489489, "history_id": 1690566489489, - "date_created": { "type": 6, "value": 1690566489489 }, - "date_last_updated": { "type": 6, "value": 1690568745368 }, - "date_of_expiration": { "type": 6, "value": 1690566489489 }, + "date_created": { + "type": 6, + "value": 1690566489489 + }, + "date_last_updated": { + "type": 6, + "value": 1690568745368 + }, + "date_of_expiration": { + "type": 6, + "value": 1690566489489 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1690568745368 }, - "money_release_date": { "type": 6, "value": 1690568745368 }, + "date_approved": { + "type": 6, + "value": 1690568745368 + }, + "money_release_date": { + "type": 6, + "value": 1690568745368 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -6856,7 +8800,14 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": { "type": 6, "value": 983415600000 }, "amount": 34.92 }, + "value": { + "title": "Taxa de serviço", + "label": { + "type": 6, + "value": 983415600000 + }, + "amount": 34.92 + }, "revision": "lnt02qf500cboohx7207f8ge", "revision_nr": 1, "created": 1697467086401, @@ -6865,7 +8816,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qf500caoohx8lpb4w9g", "revision_nr": 1, "created": 1697467086403, "modified": 1697467086403 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qf500caoohx8lpb4w9g", + "revision_nr": 1, + "created": 1697467086403, + "modified": 1697467086403 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details", @@ -6899,16 +8857,28 @@ "total_amount": 1164, "id": 1690566618435, "history_id": 1690566618435, - "date_created": { "type": 6, "value": 1690566618435 }, - "date_last_updated": { "type": 6, "value": 1690568814405 }, - "date_of_expiration": { "type": 6, "value": 1690566618435 }, + "date_created": { + "type": 6, + "value": 1690566618435 + }, + "date_last_updated": { + "type": 6, + "value": 1690568814405 + }, + "date_of_expiration": { + "type": 6, + "value": 1690566618435 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "rejected", - "money_release_date": { "type": 6, "value": 1690568814405 }, + "money_release_date": { + "type": 6, + "value": 1690568814405 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -6944,7 +8914,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 392.84999999999997 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 392.84999999999997 + }, "revision": "lnt02qfc00choohx5bss3ipc", "revision_nr": 1, "created": 1697467086409, @@ -6953,7 +8927,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qfc00cgoohxezvtccm8", "revision_nr": 1, "created": 1697467086410, "modified": 1697467086410 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qfc00cgoohxezvtccm8", + "revision_nr": 1, + "created": 1697467086410, + "modified": 1697467086410 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details", @@ -6987,16 +8968,28 @@ "total_amount": 13095, "id": 1690568586623, "history_id": 1690568586623, - "date_created": { "type": 6, "value": 1690568586623 }, - "date_last_updated": { "type": 6, "value": 1690568834472 }, - "date_of_expiration": { "type": 6, "value": 1690568586623 }, + "date_created": { + "type": 6, + "value": 1690568586623 + }, + "date_last_updated": { + "type": 6, + "value": 1690568834472 + }, + "date_of_expiration": { + "type": 6, + "value": 1690568586623 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "rejected", - "money_release_date": { "type": 6, "value": 1690568834472 }, + "money_release_date": { + "type": 6, + "value": 1690568834472 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -7050,9 +9043,18 @@ "total_amount": 155950, "id": 1691685725174, "history_id": 1691685725174, - "date_created": { "type": 6, "value": 1691685725174 }, - "date_last_updated": { "type": 6, "value": 1691685725174 }, - "date_of_expiration": { "type": 6, "value": 1691685725174 }, + "date_created": { + "type": 6, + "value": 1691685725174 + }, + "date_last_updated": { + "type": 6, + "value": 1691685725174 + }, + "date_of_expiration": { + "type": 6, + "value": 1691685725174 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -7071,7 +9073,13 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694889623442 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694889623442 + } + }, "revision": "lnt02qfk00cmoohxdamk5xef", "revision_nr": 1, "created": 1697467086417, @@ -7133,8 +9141,14 @@ "total_amount": 50, "id": 1692297623443, "history_id": 1692297623443, - "date_created": { "type": 6, "value": 1692297623443 }, - "date_last_updated": { "type": 6, "value": 1692297623443 }, + "date_created": { + "type": 6, + "value": 1692297623443 + }, + "date_last_updated": { + "type": 6, + "value": 1692297623443 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -7152,7 +9166,13 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694889768550 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694889768550 + } + }, "revision": "lnt02qfs00croohxf7iq3utk", "revision_nr": 1, "created": 1697467086425, @@ -7214,15 +9234,24 @@ "total_amount": 25, "id": 1692297768550, "history_id": 1692297768550, - "date_created": { "type": 6, "value": 1692297768550 }, - "date_last_updated": { "type": 6, "value": 1692297802788 }, + "date_created": { + "type": 6, + "value": 1692297768550 + }, + "date_last_updated": { + "type": 6, + "value": 1692297802788 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "rejected", - "money_release_date": { "type": 6, "value": 1692297802788 }, + "money_release_date": { + "type": 6, + "value": 1692297802788 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -7236,7 +9265,13 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694896646621 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694896646621 + } + }, "revision": "lnt02qfx00cwoohx6ziuhxp0", "revision_nr": 1, "created": 1697467086430, @@ -7298,15 +9333,24 @@ "total_amount": 1200, "id": 1692304646621, "history_id": 1692304646621, - "date_created": { "type": 6, "value": 1692304646621 }, - "date_last_updated": { "type": 6, "value": 1692304802388 }, + "date_created": { + "type": 6, + "value": 1692304646621 + }, + "date_last_updated": { + "type": 6, + "value": 1692304802388 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "rejected", - "money_release_date": { "type": 6, "value": 1692304802388 }, + "money_release_date": { + "type": 6, + "value": 1692304802388 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -7320,7 +9364,13 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694896893953 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694896893953 + } + }, "revision": "lnt02qg200d1oohx0pjyhikh", "revision_nr": 1, "created": 1697467086435, @@ -7382,16 +9432,28 @@ "total_amount": 23000, "id": 1692304893954, "history_id": 1692304893954, - "date_created": { "type": 6, "value": 1692304893954 }, - "date_last_updated": { "type": 6, "value": 1692304916494 }, + "date_created": { + "type": 6, + "value": 1692304893954 + }, + "date_last_updated": { + "type": 6, + "value": 1692304916494 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1692304916494 }, - "money_release_date": { "type": 6, "value": 1692304916494 }, + "date_approved": { + "type": 6, + "value": 1692304916494 + }, + "money_release_date": { + "type": 6, + "value": 1692304916494 + }, "money_release_status": "approved", "wasDebited": true }, @@ -7405,7 +9467,13 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694905618376 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694905618376 + } + }, "revision": "lnt02qg700d6oohx7drzexhz", "revision_nr": 1, "created": 1697467086440, @@ -7467,8 +9535,14 @@ "total_amount": 10000000, "id": 1692313618376, "history_id": 1692313618376, - "date_created": { "type": 6, "value": 1692313618376 }, - "date_last_updated": { "type": 6, "value": 1692313618376 }, + "date_created": { + "type": 6, + "value": 1692313618376 + }, + "date_last_updated": { + "type": 6, + "value": 1692313618376 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -7486,7 +9560,13 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694960186664 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694960186664 + } + }, "revision": "lnt02qgc00dboohxbsnxef8v", "revision_nr": 1, "created": 1697467086445, @@ -7548,8 +9628,14 @@ "total_amount": 125000000, "id": 1692368186664, "history_id": 1692368186664, - "date_created": { "type": 6, "value": 1692368186664 }, - "date_last_updated": { "type": 6, "value": 1692368186664 }, + "date_created": { + "type": 6, + "value": 1692368186664 + }, + "date_last_updated": { + "type": 6, + "value": 1692368186664 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -7620,9 +9706,18 @@ "total_amount": 114.75, "id": "1692651485901", "history_id": "1692651485901", - "date_created": { "type": 6, "value": 1692651485901 }, - "date_last_updated": { "type": 6, "value": 1692651485901 }, - "date_of_expiration": { "type": 6, "value": 1692651485901 }, + "date_created": { + "type": 6, + "value": 1692651485901 + }, + "date_last_updated": { + "type": 6, + "value": 1692651485901 + }, + "date_of_expiration": { + "type": 6, + "value": 1692651485901 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -7693,9 +9788,18 @@ "total_amount": 37.333333333333336, "id": "1692651487214", "history_id": "1692651487214", - "date_created": { "type": 6, "value": 1692651487214 }, - "date_last_updated": { "type": 6, "value": 1692651487214 }, - "date_of_expiration": { "type": 6, "value": 1692651487214 }, + "date_created": { + "type": 6, + "value": 1692651487214 + }, + "date_last_updated": { + "type": 6, + "value": 1692651487214 + }, + "date_of_expiration": { + "type": 6, + "value": 1692651487214 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -7766,9 +9870,18 @@ "total_amount": 37.333333333333336, "id": "1692651816060", "history_id": "1692651816060", - "date_created": { "type": 6, "value": 1692651816060 }, - "date_last_updated": { "type": 6, "value": 1692651816060 }, - "date_of_expiration": { "type": 6, "value": 1692651816060 }, + "date_created": { + "type": 6, + "value": 1692651816060 + }, + "date_last_updated": { + "type": 6, + "value": 1692651816060 + }, + "date_of_expiration": { + "type": 6, + "value": 1692651816060 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -7839,9 +9952,18 @@ "total_amount": 114.75, "id": "1692658113429", "history_id": "1692658113429", - "date_created": { "type": 6, "value": 1692658113429 }, - "date_last_updated": { "type": 6, "value": 1692658113429 }, - "date_of_expiration": { "type": 6, "value": 1692658113429 }, + "date_created": { + "type": 6, + "value": 1692658113429 + }, + "date_last_updated": { + "type": 6, + "value": 1692658113429 + }, + "date_of_expiration": { + "type": 6, + "value": 1692658113429 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -7881,7 +10003,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 660000 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 660000 + }, "revision": "lnt02qh100e0oohx68131qgu", "revision_nr": 1, "created": 1697467086470, @@ -7890,7 +10016,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qh100dzoohxex485aoj", "revision_nr": 1, "created": 1697467086472, "modified": 1697467086472 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qh100dzoohxex485aoj", + "revision_nr": 1, + "created": 1697467086472, + "modified": 1697467086472 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details", @@ -7924,17 +10057,32 @@ "total_amount": 21340000, "id": "1692976623136", "history_id": "1692976623136", - "date_created": { "type": 6, "value": 1692976623136 }, - "date_last_updated": { "type": 6, "value": 1692976717836 }, - "date_of_expiration": { "type": 6, "value": 1692976623136 }, + "date_created": { + "type": 6, + "value": 1692976623136 + }, + "date_last_updated": { + "type": 6, + "value": 1692976717836 + }, + "date_of_expiration": { + "type": 6, + "value": 1692976623136 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1692976717836 }, - "money_release_date": { "type": 6, "value": 1692976717836 }, + "date_approved": { + "type": 6, + "value": 1692976717836 + }, + "money_release_date": { + "type": 6, + "value": 1692976717836 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -7999,9 +10147,18 @@ "total_amount": 2000000, "id": "1693346357974", "history_id": "1693346357974", - "date_created": { "type": 6, "value": 1693346357974 }, - "date_last_updated": { "type": 6, "value": 1693346357974 }, - "date_of_expiration": { "type": 6, "value": 1756504757968 }, + "date_created": { + "type": 6, + "value": 1693346357974 + }, + "date_last_updated": { + "type": 6, + "value": 1693346357974 + }, + "date_of_expiration": { + "type": 6, + "value": 1756504757968 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -8070,9 +10227,18 @@ "total_amount": 1000, "id": "1693765839188", "history_id": "1693765839188", - "date_created": { "type": 6, "value": 1693765839188 }, - "date_last_updated": { "type": 6, "value": 1693765839188 }, - "date_of_expiration": { "type": 6, "value": 1696357839188 }, + "date_created": { + "type": 6, + "value": 1693765839188 + }, + "date_last_updated": { + "type": 6, + "value": 1693765839188 + }, + "date_of_expiration": { + "type": 6, + "value": 1696357839188 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -8143,9 +10309,18 @@ "total_amount": 37.333333333333336, "id": "1694554040120", "history_id": "1694554040120", - "date_created": { "type": 6, "value": 1694554040120 }, - "date_last_updated": { "type": 6, "value": 1694554040120 }, - "date_of_expiration": { "type": 6, "value": 1694554040120 }, + "date_created": { + "type": 6, + "value": 1694554040120 + }, + "date_last_updated": { + "type": 6, + "value": 1694554040120 + }, + "date_of_expiration": { + "type": 6, + "value": 1694554040120 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -8216,9 +10391,18 @@ "total_amount": 70.66666666666667, "id": "1694554040222", "history_id": "1694554040222", - "date_created": { "type": 6, "value": 1694554040222 }, - "date_last_updated": { "type": 6, "value": 1694554040222 }, - "date_of_expiration": { "type": 6, "value": 1694554040222 }, + "date_created": { + "type": 6, + "value": 1694554040222 + }, + "date_last_updated": { + "type": 6, + "value": 1694554040222 + }, + "date_of_expiration": { + "type": 6, + "value": 1694554040222 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -8289,9 +10473,18 @@ "total_amount": 37.333333333333336, "id": "1694554084107", "history_id": "1694554084107", - "date_created": { "type": 6, "value": 1694554084107 }, - "date_last_updated": { "type": 6, "value": 1694554084107 }, - "date_of_expiration": { "type": 6, "value": 1694554084107 }, + "date_created": { + "type": 6, + "value": 1694554084107 + }, + "date_last_updated": { + "type": 6, + "value": 1694554084107 + }, + "date_of_expiration": { + "type": 6, + "value": 1694554084107 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -8350,9 +10543,18 @@ "total_amount": 100000, "id": "1696114300558", "history_id": "1696114300558", - "date_created": { "type": 6, "value": 1696114300558 }, - "date_last_updated": { "type": 6, "value": 1696114300558 }, - "date_of_expiration": { "type": 6, "value": 1696114300558 }, + "date_created": { + "type": 6, + "value": 1696114300558 + }, + "date_last_updated": { + "type": 6, + "value": 1696114300558 + }, + "date_of_expiration": { + "type": 6, + "value": 1696114300558 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -8423,9 +10625,18 @@ "total_amount": 100000, "id": "1696118036096", "history_id": "1696118036096", - "date_created": { "type": 6, "value": 1696118036096 }, - "date_last_updated": { "type": 6, "value": 1696118036096 }, - "date_of_expiration": { "type": 6, "value": 1696118036096 }, + "date_created": { + "type": 6, + "value": 1696118036096 + }, + "date_last_updated": { + "type": 6, + "value": 1696118036096 + }, + "date_of_expiration": { + "type": 6, + "value": 1696118036096 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -8495,9 +10706,18 @@ "total_amount": 50000, "id": "1696118157622", "history_id": "1696118157622", - "date_created": { "type": 6, "value": 1696118157622 }, - "date_last_updated": { "type": 6, "value": 1696118157622 }, - "date_of_expiration": { "type": 6, "value": 1696118157622 }, + "date_created": { + "type": 6, + "value": 1696118157622 + }, + "date_last_updated": { + "type": 6, + "value": 1696118157622 + }, + "date_of_expiration": { + "type": 6, + "value": 1696118157622 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -8567,9 +10787,18 @@ "total_amount": 1020, "id": "1696360843684", "history_id": "1696360843684", - "date_created": { "type": 6, "value": 1696360843684 }, - "date_last_updated": { "type": 6, "value": 1696360843684 }, - "date_of_expiration": { "type": 6, "value": 1696360843684 }, + "date_created": { + "type": 6, + "value": 1696360843684 + }, + "date_last_updated": { + "type": 6, + "value": 1696360843684 + }, + "date_of_expiration": { + "type": 6, + "value": 1696360843684 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -8639,9 +10868,18 @@ "total_amount": 1020, "id": "1696362317186", "history_id": "1696362317186", - "date_created": { "type": 6, "value": 1696362317186 }, - "date_last_updated": { "type": 6, "value": 1696362317186 }, - "date_of_expiration": { "type": 6, "value": 1696362317186 }, + "date_created": { + "type": 6, + "value": 1696362317186 + }, + "date_last_updated": { + "type": 6, + "value": 1696362317186 + }, + "date_of_expiration": { + "type": 6, + "value": 1696362317186 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -8657,7 +10895,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history", - "content": { "type": 1, "value": {}, "revision": "lnt02q7v0008oohx1nk00d17", "revision_nr": 1, "created": 1697467086523, "modified": 1697467086523 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0008oohx1nk00d17", + "revision_nr": 1, + "created": 1697467086523, + "modified": 1697467086523 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084/description", @@ -8674,7 +10919,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, "revision": "lnt02qil00faoohx6g469pv4", "revision_nr": 1, "created": 1697467086526, @@ -8683,7 +10932,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qil00f9oohxbzrbeyk2", "revision_nr": 1, "created": 1697467086527, "modified": 1697467086527 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qil00f9oohxbzrbeyk2", + "revision_nr": 1, + "created": 1697467086527, + "modified": 1697467086527 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084", @@ -8696,7 +10952,10 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": { "type": 6, "value": 1679181025084 }, + "date_created": { + "type": 6, + "value": 1679181025084 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid" @@ -8722,7 +10981,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 51 + }, "revision": "lnt02qip00feoohxa64u6hqs", "revision_nr": 1, "created": 1697467086530, @@ -8731,7 +10994,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qip00fdoohxcf7o3ur5", "revision_nr": 1, "created": 1697467086532, "modified": 1697467086532 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qip00fdoohxcf7o3ur5", + "revision_nr": 1, + "created": 1697467086532, + "modified": 1697467086532 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805", @@ -8744,7 +11014,10 @@ "total_amount": 459, "installments": 4, "installment_amount": 114.75, - "date_created": { "type": 6, "value": 1679181157805 }, + "date_created": { + "type": 6, + "value": 1679181157805 + }, "history_id": 1679181157805, "currency_id": "BRL", "status": "paid" @@ -8770,7 +11043,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 9.200000000000001 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 9.200000000000001 + }, "revision": "lnt02qiu00fioohx4amx8sr3", "revision_nr": 1, "created": 1697467086535, @@ -8779,7 +11056,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qiu00fhoohxapf54cx1", "revision_nr": 1, "created": 1697467086536, "modified": 1697467086536 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qiu00fhoohxapf54cx1", + "revision_nr": 1, + "created": 1697467086536, + "modified": 1697467086536 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080", @@ -8792,7 +11076,10 @@ "total_amount": 239.2, "installments": 2, "installment_amount": 119.6, - "date_created": { "type": 6, "value": 1679183534080 }, + "date_created": { + "type": 6, + "value": 1679183534080 + }, "history_id": 1679183534080, "currency_id": "BRL", "status": "paid" @@ -8818,7 +11105,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 8 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8 + }, "revision": "lnt02qiz00fmoohxagw29fha", "revision_nr": 1, "created": 1697467086542, @@ -8827,7 +11118,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qiz00floohxhv4v8uyn", "revision_nr": 1, "created": 1697467086543, "modified": 1697467086543 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qiz00floohxhv4v8uyn", + "revision_nr": 1, + "created": 1697467086543, + "modified": 1697467086543 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128", @@ -8840,7 +11138,10 @@ "total_amount": 208, "installments": 2, "installment_amount": 104, - "date_created": { "type": 6, "value": 1679184046128 }, + "date_created": { + "type": 6, + "value": 1679184046128 + }, "history_id": 1679184046128, "currency_id": "BRL", "status": "paid" @@ -8866,7 +11167,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 8.4 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8.4 + }, "revision": "lnt02qj600fqoohx362ghbg6", "revision_nr": 1, "created": 1697467086547, @@ -8875,7 +11180,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qj600fpoohxam6wfba5", "revision_nr": 1, "created": 1697467086548, "modified": 1697467086548 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qj600fpoohxam6wfba5", + "revision_nr": 1, + "created": 1697467086548, + "modified": 1697467086548 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424", @@ -8888,7 +11200,10 @@ "total_amount": 218.4, "installments": 2, "installment_amount": 109.2, - "date_created": { "type": 6, "value": 1679184832424 }, + "date_created": { + "type": 6, + "value": 1679184832424 + }, "history_id": 1679184832424, "currency_id": "BRL", "status": "paid" @@ -8901,7 +11216,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304", - "content": { "type": 1, "value": {}, "revision": "lnt02qij00f6oohx4bqq204p", "revision_nr": 1, "created": 1697467086550, "modified": 1697467086550 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qij00f6oohx4bqq204p", + "revision_nr": 1, + "created": 1697467086550, + "modified": 1697467086550 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084/description", @@ -8918,7 +11240,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, "revision": "lnt02qjc00fvoohx1358f65q", "revision_nr": 1, "created": 1697467086553, @@ -8927,7 +11253,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qjc00fuoohx3zff5vv6", "revision_nr": 1, "created": 1697467086554, "modified": 1697467086554 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qjc00fuoohx3zff5vv6", + "revision_nr": 1, + "created": 1697467086554, + "modified": 1697467086554 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084", @@ -8940,7 +11273,10 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": { "type": 6, "value": 1679181025084 }, + "date_created": { + "type": 6, + "value": 1679181025084 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid" @@ -8966,7 +11302,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 51 + }, "revision": "lnt02qji00fzoohx0voi1wyg", "revision_nr": 1, "created": 1697467086559, @@ -8975,7 +11315,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qji00fyoohx2xqj9c6r", "revision_nr": 1, "created": 1697467086560, "modified": 1697467086560 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qji00fyoohx2xqj9c6r", + "revision_nr": 1, + "created": 1697467086560, + "modified": 1697467086560 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805", @@ -8988,7 +11335,10 @@ "total_amount": 459, "installments": 4, "installment_amount": 114.75, - "date_created": { "type": 6, "value": 1679181157805 }, + "date_created": { + "type": 6, + "value": 1679181157805 + }, "history_id": 1679181157805, "currency_id": "BRL", "status": "paid" @@ -9014,7 +11364,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 9.200000000000001 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 9.200000000000001 + }, "revision": "lnt02qjm00g3oohxd7i7am7i", "revision_nr": 1, "created": 1697467086564, @@ -9023,7 +11377,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qjm00g2oohxfd3w3p1f", "revision_nr": 1, "created": 1697467086565, "modified": 1697467086565 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qjm00g2oohxfd3w3p1f", + "revision_nr": 1, + "created": 1697467086565, + "modified": 1697467086565 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080", @@ -9036,7 +11397,10 @@ "total_amount": 239.2, "installments": 2, "installment_amount": 119.6, - "date_created": { "type": 6, "value": 1679183534080 }, + "date_created": { + "type": 6, + "value": 1679183534080 + }, "history_id": 1679183534080, "currency_id": "BRL", "status": "paid" @@ -9062,7 +11426,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 8 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8 + }, "revision": "lnt02qjr00g7oohx0hkwe3ms", "revision_nr": 1, "created": 1697467086569, @@ -9071,7 +11439,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qjr00g6oohx22rn6x4r", "revision_nr": 1, "created": 1697467086570, "modified": 1697467086570 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qjr00g6oohx22rn6x4r", + "revision_nr": 1, + "created": 1697467086570, + "modified": 1697467086570 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128", @@ -9084,7 +11459,10 @@ "total_amount": 208, "installments": 2, "installment_amount": 104, - "date_created": { "type": 6, "value": 1679184046128 }, + "date_created": { + "type": 6, + "value": 1679184046128 + }, "history_id": 1679184046128, "currency_id": "BRL", "status": "paid" @@ -9110,7 +11488,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 8.4 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8.4 + }, "revision": "lnt02qjx00gboohxcy623ebc", "revision_nr": 1, "created": 1697467086574, @@ -9119,7 +11501,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qjx00gaoohxfc451b1j", "revision_nr": 1, "created": 1697467086576, "modified": 1697467086576 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qjx00gaoohxfc451b1j", + "revision_nr": 1, + "created": 1697467086576, + "modified": 1697467086576 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424", @@ -9132,7 +11521,10 @@ "total_amount": 218.4, "installments": 2, "installment_amount": 109.2, - "date_created": { "type": 6, "value": 1679184832424 }, + "date_created": { + "type": 6, + "value": 1679184832424 + }, "history_id": 1679184832424, "currency_id": "BRL", "status": "paid" @@ -9145,7 +11537,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305", - "content": { "type": 1, "value": {}, "revision": "lnt02qja00froohx1v0phcn9", "revision_nr": 1, "created": 1697467086578, "modified": 1697467086578 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qja00froohx1v0phcn9", + "revision_nr": 1, + "created": 1697467086578, + "modified": 1697467086578 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084/description", @@ -9162,7 +11561,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, "revision": "lnt02qk300ggoohxc89j3cjw", "revision_nr": 1, "created": 1697467086581, @@ -9171,7 +11574,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qk300gfoohxh0sg7jto", "revision_nr": 1, "created": 1697467086582, "modified": 1697467086582 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qk300gfoohxh0sg7jto", + "revision_nr": 1, + "created": 1697467086582, + "modified": 1697467086582 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084", @@ -9184,7 +11594,10 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": { "type": 6, "value": 1679181025084 }, + "date_created": { + "type": 6, + "value": 1679181025084 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid" @@ -9210,7 +11623,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 51 + }, "revision": "lnt02qk800gkoohx7dsz6z1l", "revision_nr": 1, "created": 1697467086585, @@ -9219,7 +11636,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qk800gjoohxeqcp0pim", "revision_nr": 1, "created": 1697467086587, "modified": 1697467086587 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qk800gjoohxeqcp0pim", + "revision_nr": 1, + "created": 1697467086587, + "modified": 1697467086587 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805", @@ -9232,7 +11656,10 @@ "total_amount": 459, "installments": 4, "installment_amount": 114.75, - "date_created": { "type": 6, "value": 1679181157805 }, + "date_created": { + "type": 6, + "value": 1679181157805 + }, "history_id": 1679181157805, "currency_id": "BRL", "status": "paid" @@ -9258,7 +11685,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 4 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 4 + }, "revision": "lnt02qke00gooohxb2p33u37", "revision_nr": 1, "created": 1697467086591, @@ -9267,7 +11698,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qke00gnoohxfzjqfid1", "revision_nr": 1, "created": 1697467086592, "modified": 1697467086592 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qke00gnoohxfzjqfid1", + "revision_nr": 1, + "created": 1697467086592, + "modified": 1697467086592 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468", @@ -9280,7 +11718,10 @@ "total_amount": 204, "installments": 1, "installment_amount": 204, - "date_created": { "type": 6, "value": 1683665355468 }, + "date_created": { + "type": 6, + "value": 1683665355468 + }, "history_id": 1683665355468, "currency_id": "BRL", "status": "paid" @@ -9306,7 +11747,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 3 parcela(s) 6.00%", "amount": 12 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 3 parcela(s) 6.00%", + "amount": 12 + }, "revision": "lnt02qkj00gsoohx5mpie8xn", "revision_nr": 1, "created": 1697467086596, @@ -9315,7 +11760,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qkj00groohx4bbkcv1r", "revision_nr": 1, "created": 1697467086597, "modified": 1697467086597 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qkj00groohx4bbkcv1r", + "revision_nr": 1, + "created": 1697467086597, + "modified": 1697467086597 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591", @@ -9328,7 +11780,10 @@ "total_amount": 212, "installments": 3, "installment_amount": 70.66666666666667, - "date_created": { "type": 6, "value": 1683667472591 }, + "date_created": { + "type": 6, + "value": 1683667472591 + }, "history_id": 1683667472591, "currency_id": "BRL", "status": "paid" @@ -9341,7 +11796,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt02qk200gcoohxga11byta", "revision_nr": 1, "created": 1697467086600, "modified": 1697467086600 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qk200gcoohxga11byta", + "revision_nr": 1, + "created": 1697467086600, + "modified": 1697467086600 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084/description", @@ -9358,7 +11820,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, "revision": "lnt02qkq00gxoohxhb2t3ln0", "revision_nr": 1, "created": 1697467086603, @@ -9367,7 +11833,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qkq00gwoohxhc0s81aa", "revision_nr": 1, "created": 1697467086605, "modified": 1697467086605 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qkq00gwoohxhc0s81aa", + "revision_nr": 1, + "created": 1697467086605, + "modified": 1697467086605 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084", @@ -9380,7 +11853,10 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": { "type": 6, "value": 1679181025084 }, + "date_created": { + "type": 6, + "value": 1679181025084 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid" @@ -9406,7 +11882,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 51 + }, "revision": "lnt02qkw00h1oohx0ge7f7x9", "revision_nr": 1, "created": 1697467086609, @@ -9415,7 +11895,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qkw00h0oohx2p1s5u9o", "revision_nr": 1, "created": 1697467086611, "modified": 1697467086611 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qkw00h0oohx2p1s5u9o", + "revision_nr": 1, + "created": 1697467086611, + "modified": 1697467086611 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805", @@ -9428,7 +11915,10 @@ "total_amount": 459, "installments": 4, "installment_amount": 114.75, - "date_created": { "type": 6, "value": 1679181157805 }, + "date_created": { + "type": 6, + "value": 1679181157805 + }, "history_id": 1679181157805, "currency_id": "BRL", "status": "paid" @@ -9454,7 +11944,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 3 parcela(s) 6.00%", "amount": 12 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 3 parcela(s) 6.00%", + "amount": 12 + }, "revision": "lnt02ql100h5oohx5jyq99z7", "revision_nr": 1, "created": 1697467086615, @@ -9463,7 +11957,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02ql100h4oohx9lnfdcxj", "revision_nr": 1, "created": 1697467086616, "modified": 1697467086616 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02ql100h4oohx9lnfdcxj", + "revision_nr": 1, + "created": 1697467086616, + "modified": 1697467086616 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591", @@ -9476,7 +11977,10 @@ "total_amount": 212, "installments": 3, "installment_amount": 70.66666666666667, - "date_created": { "type": 6, "value": 1683667472591 }, + "date_created": { + "type": 6, + "value": 1683667472591 + }, "history_id": 1683667472591, "currency_id": "BRL", "status": "paid" @@ -9489,7 +11993,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt02qko00gtoohx1pbpdf3e", "revision_nr": 1, "created": 1697467086618, "modified": 1697467086618 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qko00gtoohx1pbpdf3e", + "revision_nr": 1, + "created": 1697467086618, + "modified": 1697467086618 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084/description", @@ -9506,7 +12017,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, "revision": "lnt02ql800haoohxgpppczqj", "revision_nr": 1, "created": 1697467086622, @@ -9515,7 +12030,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02ql800h9oohx8qonao9v", "revision_nr": 1, "created": 1697467086623, "modified": 1697467086623 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02ql800h9oohx8qonao9v", + "revision_nr": 1, + "created": 1697467086623, + "modified": 1697467086623 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084", @@ -9528,11 +12050,17 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": { "type": 6, "value": 1679181025084 }, + "date_created": { + "type": 6, + "value": 1679181025084 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1694554040136 } + "date_last_updated": { + "type": 6, + "value": 1694554040136 + } }, "revision": "lnt02ql600h7oohx29k9e2ei", "revision_nr": 1, @@ -9555,7 +12083,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 3 parcela(s) 6.00%", "amount": 12 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 3 parcela(s) 6.00%", + "amount": 12 + }, "revision": "lnt02qle00heoohxhnm695fi", "revision_nr": 1, "created": 1697467086627, @@ -9564,7 +12096,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qle00hdoohx367y5fjl", "revision_nr": 1, "created": 1697467086630, "modified": 1697467086630 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qle00hdoohx367y5fjl", + "revision_nr": 1, + "created": 1697467086630, + "modified": 1697467086630 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591", @@ -9577,11 +12116,17 @@ "total_amount": 212, "installments": 3, "installment_amount": 70.66666666666667, - "date_created": { "type": 6, "value": 1683667472591 }, + "date_created": { + "type": 6, + "value": 1683667472591 + }, "history_id": 1683667472591, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1694554040249 } + "date_last_updated": { + "type": 6, + "value": 1694554040249 + } }, "revision": "lnt02qld00hboohx1ie1e9s9", "revision_nr": 1, @@ -9591,7 +12136,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308", - "content": { "type": 1, "value": {}, "revision": "lnt02ql600h6oohxeqy0ahlt", "revision_nr": 1, "created": 1697467086632, "modified": 1697467086632 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02ql600h6oohxeqy0ahlt", + "revision_nr": 1, + "created": 1697467086632, + "modified": 1697467086632 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084/description", @@ -9608,7 +12160,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, "revision": "lnt02qlm00hjoohx790kexmf", "revision_nr": 1, "created": 1697467086635, @@ -9617,7 +12173,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qlm00hioohx7owy89rw", "revision_nr": 1, "created": 1697467086636, "modified": 1697467086636 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qlm00hioohx7owy89rw", + "revision_nr": 1, + "created": 1697467086636, + "modified": 1697467086636 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084", @@ -9630,11 +12193,17 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": { "type": 6, "value": 1679181025084 }, + "date_created": { + "type": 6, + "value": 1679181025084 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1694554084147 } + "date_last_updated": { + "type": 6, + "value": 1694554084147 + } }, "revision": "lnt02qlk00hgoohx6fjg02x9", "revision_nr": 1, @@ -9644,17 +12213,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309", - "content": { "type": 1, "value": {}, "revision": "lnt02qlk00hfoohxchmj3vkj", "revision_nr": 1, "created": 1697467086639, "modified": 1697467086639 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qlk00hfoohxchmj3vkj", + "revision_nr": 1, + "created": 1697467086639, + "modified": 1697467086639 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt02qij00f5oohxfmo82lyk", "revision_nr": 1, "created": 1697467086640, "modified": 1697467086640 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qij00f5oohxfmo82lyk", + "revision_nr": 1, + "created": 1697467086640, + "modified": 1697467086640 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit", "content": { "type": 1, - "value": { "approvedLimit": 1500, "limitUsed": 312.50000000000006, "analysisRequested": { "type": 6, "value": 1679030641192 }, "lastReview": { "type": 6, "value": 1679030831310 } }, + "value": { + "approvedLimit": 1500, + "limitUsed": 312.50000000000006, + "analysisRequested": { + "type": 6, + "value": 1679030641192 + }, + "lastReview": { + "type": 6, + "value": 1679030831310 + } + }, "revision": "lnt02qij00f4oohx57rjfci0", "revision_nr": 1, "created": 1697467086641, @@ -9670,7 +12264,10 @@ "dateValidity": 1679011956662, "totalValue": 12518.651018650135, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1697166000000 } + "balancesModificacao": { + "type": 6, + "value": 1697166000000 + } }, "revision": "lnt02q7u0004oohx62ohgle5", "revision_nr": 1, @@ -9682,7 +12279,11 @@ "path": "ivipcoin-db::__movement_wallet__/001286046930633944/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02qlv00hloohxfkeod0ef", "revision_nr": 1, "created": 1697467086644, @@ -9699,7 +12300,10 @@ "balances": {}, "history": {}, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1696993200000 } + "balancesModificacao": { + "type": 6, + "value": 1696993200000 + } }, "revision": "lnt02qlv00hkoohx3zgm4cut", "revision_nr": 1, @@ -9711,7 +12315,11 @@ "path": "ivipcoin-db::__movement_wallet__/001345425233260977/balances/IVIP", "content": { "type": 1, - "value": { "available": "-3396779.42000000", "symbol": "IVIP", "value": -452.027 }, + "value": { + "available": "-3396779.42000000", + "symbol": "IVIP", + "value": -452.027 + }, "revision": "lnt02qly00hooohx0mbtcwdp", "revision_nr": 1, "created": 1697467086647, @@ -9720,7 +12328,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02qly00hnoohxbcln622r", "revision_nr": 1, "created": 1697467086648, "modified": 1697467086648 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qly00hnoohxbcln622r", + "revision_nr": 1, + "created": 1697467086648, + "modified": 1697467086648 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684093592429/description", @@ -9735,7 +12350,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684093592429/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qm200hsoohx39tycg3w", "revision_nr": 1, "created": 1697467086651, "modified": 1697467086651 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qm200hsoohx39tycg3w", + "revision_nr": 1, + "created": 1697467086651, + "modified": 1697467086651 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684093592429", @@ -9749,15 +12373,30 @@ "total_amount": 500, "history_id": 1684093592429, "id": 1684093592429, - "date_created": { "type": 6, "value": 1684093592429 }, - "date_last_updated": { "type": 6, "value": 1684096162499 }, - "date_of_expiration": { "type": 6, "value": 1686685592429 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684096162499 }, - "money_release_date": { "type": 6, "value": 1684096162499 }, + "date_created": { + "type": 6, + "value": 1684093592429 + }, + "date_last_updated": { + "type": 6, + "value": 1684096162499 + }, + "date_of_expiration": { + "type": 6, + "value": 1686685592429 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684096162499 + }, + "money_release_date": { + "type": 6, + "value": 1684096162499 + }, "money_release_status": "approved", "wasDebited": true }, @@ -9782,7 +12421,11 @@ "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 10.02 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 10.02 + }, "revision": "lnt02qm800hxoohx9dtfe1rk", "revision_nr": 1, "created": 1697467086657, @@ -9791,11 +12434,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qm800hwoohx3zs0fekp", "revision_nr": 1, "created": 1697467086660, "modified": 1697467086660 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qm800hwoohx3zs0fekp", + "revision_nr": 1, + "created": 1697467086660, + "modified": 1697467086660 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939/details", - "content": { "type": 1, "value": {}, "revision": "lnt02qm800hvoohx9jtlgx74", "revision_nr": 1, "created": 1697467086661, "modified": 1697467086661 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qm800hvoohx9jtlgx74", + "revision_nr": 1, + "created": 1697467086661, + "modified": 1697467086661 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939", @@ -9809,9 +12466,18 @@ "total_amount": 511.02, "history_id": 1684399661939, "id": 1684399661939, - "date_created": { "type": 6, "value": 1684399661939 }, - "date_last_updated": { "type": 6, "value": 1684399661939 }, - "date_of_expiration": { "type": 6, "value": 1686991661939 }, + "date_created": { + "type": 6, + "value": 1684399661939 + }, + "date_last_updated": { + "type": 6, + "value": 1684399661939 + }, + "date_of_expiration": { + "type": 6, + "value": 1686991661939 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -9839,7 +12505,11 @@ "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 9.98 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 9.98 + }, "revision": "lnt02qmg00i2oohxf890azqr", "revision_nr": 1, "created": 1697467086665, @@ -9848,11 +12518,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qmg00i1oohx9mwgcnus", "revision_nr": 1, "created": 1697467086667, "modified": 1697467086667 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qmg00i1oohx9mwgcnus", + "revision_nr": 1, + "created": 1697467086667, + "modified": 1697467086667 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872/details", - "content": { "type": 1, "value": {}, "revision": "lnt02qmg00i0oohx0z3ydnd9", "revision_nr": 1, "created": 1697467086668, "modified": 1697467086668 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qmg00i0oohx0z3ydnd9", + "revision_nr": 1, + "created": 1697467086668, + "modified": 1697467086668 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872", @@ -9866,9 +12550,18 @@ "total_amount": 508.98, "history_id": 1684612673872, "id": 1684612673872, - "date_created": { "type": 6, "value": 1684612673872 }, - "date_last_updated": { "type": 6, "value": 1684612673872 }, - "date_of_expiration": { "type": 6, "value": 1687204673872 }, + "date_created": { + "type": 6, + "value": 1684612673872 + }, + "date_last_updated": { + "type": 6, + "value": 1684612673872 + }, + "date_of_expiration": { + "type": 6, + "value": 1687204673872 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -9917,9 +12610,18 @@ "original_amount": 7306097, "total_amount": 7306097, "id": 1684624250482, - "date_created": { "type": 6, "value": 1684624250482 }, - "date_last_updated": { "type": 6, "value": 1684624250482 }, - "date_of_expiration": { "type": 6, "value": 1684624250482 }, + "date_created": { + "type": 6, + "value": 1684624250482 + }, + "date_last_updated": { + "type": 6, + "value": 1684624250482 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624250482 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -9947,7 +12649,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684792076230/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qmr00i7oohxerrdbalj", "revision_nr": 1, "created": 1697467086676, "modified": 1697467086676 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qmr00i7oohxerrdbalj", + "revision_nr": 1, + "created": 1697467086676, + "modified": 1697467086676 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684792076230", @@ -9961,9 +12672,18 @@ "total_amount": 562, "history_id": 1684792076230, "id": 1684792076230, - "date_created": { "type": 6, "value": 1684792076230 }, - "date_last_updated": { "type": 6, "value": 1684792076230 }, - "date_of_expiration": { "type": 6, "value": 1687384076230 }, + "date_created": { + "type": 6, + "value": 1684792076230 + }, + "date_last_updated": { + "type": 6, + "value": 1684792076230 + }, + "date_of_expiration": { + "type": 6, + "value": 1687384076230 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -9988,7 +12708,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684942997083/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qmv00iaoohxef2a30aw", "revision_nr": 1, "created": 1697467086680, "modified": 1697467086680 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qmv00iaoohxef2a30aw", + "revision_nr": 1, + "created": 1697467086680, + "modified": 1697467086680 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684942997083", @@ -10002,9 +12731,18 @@ "total_amount": 562, "history_id": 1684942997083, "id": 1684942997083, - "date_created": { "type": 6, "value": 1684942997083 }, - "date_last_updated": { "type": 6, "value": 1684942997083 }, - "date_of_expiration": { "type": 6, "value": 1687534997083 }, + "date_created": { + "type": 6, + "value": 1684942997083 + }, + "date_last_updated": { + "type": 6, + "value": 1684942997083 + }, + "date_of_expiration": { + "type": 6, + "value": 1687534997083 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -10029,7 +12767,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684973822893/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qn000idoohxg0gf8ap8", "revision_nr": 1, "created": 1697467086685, "modified": 1697467086685 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qn000idoohxg0gf8ap8", + "revision_nr": 1, + "created": 1697467086685, + "modified": 1697467086685 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684973822893", @@ -10043,15 +12790,30 @@ "total_amount": 562, "history_id": 1684973822893, "id": 1684973822893, - "date_created": { "type": 6, "value": 1684973822893 }, - "date_last_updated": { "type": 6, "value": 1685015008165 }, - "date_of_expiration": { "type": 6, "value": 1687565822893 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685015008165 }, - "money_release_date": { "type": 6, "value": 1685015008165 }, + "date_created": { + "type": 6, + "value": 1684973822893 + }, + "date_last_updated": { + "type": 6, + "value": 1685015008165 + }, + "date_of_expiration": { + "type": 6, + "value": 1687565822893 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685015008165 + }, + "money_release_date": { + "type": 6, + "value": 1685015008165 + }, "money_release_status": "approved", "wasDebited": true }, @@ -10074,7 +12836,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685116940519/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qn500igoohxbrasb1bi", "revision_nr": 1, "created": 1697467086690, "modified": 1697467086690 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qn500igoohxbrasb1bi", + "revision_nr": 1, + "created": 1697467086690, + "modified": 1697467086690 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685116940519", @@ -10088,15 +12859,30 @@ "total_amount": 517, "history_id": 1685116940519, "id": 1685116940519, - "date_created": { "type": 6, "value": 1685116940519 }, - "date_last_updated": { "type": 6, "value": 1685369247276 }, - "date_of_expiration": { "type": 6, "value": 1687708940519 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685369247276 }, - "money_release_date": { "type": 6, "value": 1685369247276 }, + "date_created": { + "type": 6, + "value": 1685116940519 + }, + "date_last_updated": { + "type": 6, + "value": 1685369247276 + }, + "date_of_expiration": { + "type": 6, + "value": 1687708940519 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685369247276 + }, + "money_release_date": { + "type": 6, + "value": 1685369247276 + }, "money_release_status": "approved", "wasDebited": true }, @@ -10119,7 +12905,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685202990180/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qn900ijoohx6078dcvg", "revision_nr": 1, "created": 1697467086694, "modified": 1697467086694 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qn900ijoohx6078dcvg", + "revision_nr": 1, + "created": 1697467086694, + "modified": 1697467086694 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685202990180", @@ -10133,15 +12928,30 @@ "total_amount": 329, "history_id": 1685202990180, "id": 1685202990180, - "date_created": { "type": 6, "value": 1685202990180 }, - "date_last_updated": { "type": 6, "value": 1685364517239 }, - "date_of_expiration": { "type": 6, "value": 1687794990180 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685364517239 }, - "money_release_date": { "type": 6, "value": 1685364517239 }, + "date_created": { + "type": 6, + "value": 1685202990180 + }, + "date_last_updated": { + "type": 6, + "value": 1685364517239 + }, + "date_of_expiration": { + "type": 6, + "value": 1687794990180 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685364517239 + }, + "money_release_date": { + "type": 6, + "value": 1685364517239 + }, "money_release_status": "approved", "wasDebited": true }, @@ -10198,9 +13008,18 @@ "original_amount": 45000, "total_amount": 45000, "id": 1685384470907, - "date_created": { "type": 6, "value": 1685384470907 }, - "date_last_updated": { "type": 6, "value": 1685384470907 }, - "date_of_expiration": { "type": 6, "value": 1685384470907 }, + "date_created": { + "type": 6, + "value": 1685384470907 + }, + "date_last_updated": { + "type": 6, + "value": 1685384470907 + }, + "date_of_expiration": { + "type": 6, + "value": 1685384470907 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -10227,7 +13046,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685389853107/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qnh00ipoohx504c8eg8", "revision_nr": 1, "created": 1697467086703, "modified": 1697467086703 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qnh00ipoohx504c8eg8", + "revision_nr": 1, + "created": 1697467086703, + "modified": 1697467086703 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685389853107", @@ -10241,15 +13069,30 @@ "total_amount": 96, "history_id": 1685389853107, "id": 1685389853107, - "date_created": { "type": 6, "value": 1685389853107 }, - "date_last_updated": { "type": 6, "value": 1687436176583 }, - "date_of_expiration": { "type": 6, "value": 1687981853107 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1687436176583 }, - "money_release_date": { "type": 6, "value": 1687436176583 }, + "date_created": { + "type": 6, + "value": 1685389853107 + }, + "date_last_updated": { + "type": 6, + "value": 1687436176583 + }, + "date_of_expiration": { + "type": 6, + "value": 1687981853107 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1687436176583 + }, + "money_release_date": { + "type": 6, + "value": 1687436176583 + }, "money_release_status": "approved", "wasDebited": true }, @@ -10306,9 +13149,18 @@ "original_amount": 3000000, "total_amount": 3000000, "id": 1685392262218, - "date_created": { "type": 6, "value": 1685392262218 }, - "date_last_updated": { "type": 6, "value": 1685392262218 }, - "date_of_expiration": { "type": 6, "value": 1685392262218 }, + "date_created": { + "type": 6, + "value": 1685392262218 + }, + "date_last_updated": { + "type": 6, + "value": 1685392262218 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392262218 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -10369,9 +13221,18 @@ "original_amount": 30000000, "total_amount": 30000000, "id": 1685392563175, - "date_created": { "type": 6, "value": 1685392563175 }, - "date_last_updated": { "type": 6, "value": 1685392563175 }, - "date_of_expiration": { "type": 6, "value": 1685392563175 }, + "date_created": { + "type": 6, + "value": 1685392563175 + }, + "date_last_updated": { + "type": 6, + "value": 1685392563175 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392563175 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -10432,9 +13293,18 @@ "original_amount": 3300000, "total_amount": 3300000, "id": 1685394042885, - "date_created": { "type": 6, "value": 1685394042885 }, - "date_last_updated": { "type": 6, "value": 1685394042885 }, - "date_of_expiration": { "type": 6, "value": 1685394042885 }, + "date_created": { + "type": 6, + "value": 1685394042885 + }, + "date_last_updated": { + "type": 6, + "value": 1685394042885 + }, + "date_of_expiration": { + "type": 6, + "value": 1685394042885 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -10495,9 +13365,18 @@ "original_amount": 50000000, "total_amount": 50000000, "id": 1685450530237, - "date_created": { "type": 6, "value": 1685450530237 }, - "date_last_updated": { "type": 6, "value": 1685450530237 }, - "date_of_expiration": { "type": 6, "value": 1685450530237 }, + "date_created": { + "type": 6, + "value": 1685450530237 + }, + "date_last_updated": { + "type": 6, + "value": 1685450530237 + }, + "date_of_expiration": { + "type": 6, + "value": 1685450530237 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -10558,9 +13437,18 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1685455769977, - "date_created": { "type": 6, "value": 1685455769977 }, - "date_last_updated": { "type": 6, "value": 1685455769977 }, - "date_of_expiration": { "type": 6, "value": 1685455769977 }, + "date_created": { + "type": 6, + "value": 1685455769977 + }, + "date_last_updated": { + "type": 6, + "value": 1685455769977 + }, + "date_of_expiration": { + "type": 6, + "value": 1685455769977 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -10610,9 +13498,18 @@ "original_amount": 4940350, "total_amount": 4940350, "id": 1685743296302, - "date_created": { "type": 6, "value": 1685743296302 }, - "date_last_updated": { "type": 6, "value": 1685743296302 }, - "date_of_expiration": { "type": 6, "value": 1685743296302 }, + "date_created": { + "type": 6, + "value": 1685743296302 + }, + "date_last_updated": { + "type": 6, + "value": 1685743296302 + }, + "date_of_expiration": { + "type": 6, + "value": 1685743296302 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -10674,9 +13571,18 @@ "original_amount": 41.900000000000006, "total_amount": 41.900000000000006, "id": 1685744480429, - "date_created": { "type": 6, "value": 1685744480429 }, - "date_last_updated": { "type": 6, "value": 1685744480429 }, - "date_of_expiration": { "type": 6, "value": 1685744480429 }, + "date_created": { + "type": 6, + "value": 1685744480429 + }, + "date_last_updated": { + "type": 6, + "value": 1685744480429 + }, + "date_of_expiration": { + "type": 6, + "value": 1685744480429 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -10726,9 +13632,18 @@ "original_amount": 147164, "total_amount": 147164, "id": 1685745152104, - "date_created": { "type": 6, "value": 1685745152104 }, - "date_last_updated": { "type": 6, "value": 1685745152104 }, - "date_of_expiration": { "type": 6, "value": 1685745152104 }, + "date_created": { + "type": 6, + "value": 1685745152104 + }, + "date_last_updated": { + "type": 6, + "value": 1685745152104 + }, + "date_of_expiration": { + "type": 6, + "value": 1685745152104 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -10756,7 +13671,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686664360099/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qon00jeoohx3crags2j", "revision_nr": 1, "created": 1697467086744, "modified": 1697467086744 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qon00jeoohx3crags2j", + "revision_nr": 1, + "created": 1697467086744, + "modified": 1697467086744 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686664360099", @@ -10770,15 +13694,30 @@ "total_amount": 1191, "history_id": 1686664360099, "id": 1686664360099, - "date_created": { "type": 6, "value": 1686664360099 }, - "date_last_updated": { "type": 6, "value": 1686664809214 }, - "date_of_expiration": { "type": 6, "value": 1689256360099 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1686664809214 }, - "money_release_date": { "type": 6, "value": 1686664809214 }, + "date_created": { + "type": 6, + "value": 1686664360099 + }, + "date_last_updated": { + "type": 6, + "value": 1686664809214 + }, + "date_of_expiration": { + "type": 6, + "value": 1689256360099 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686664809214 + }, + "money_release_date": { + "type": 6, + "value": 1686664809214 + }, "money_release_status": "approved", "wasDebited": true }, @@ -10838,9 +13777,18 @@ "total_amount": 511.02, "id": 1686844436781, "contract_id": "1684399661939", - "date_created": { "type": 6, "value": 1686844436781 }, - "date_last_updated": { "type": 6, "value": 1686844436781 }, - "date_of_expiration": { "type": 6, "value": 1686844436781 }, + "date_created": { + "type": 6, + "value": 1686844436781 + }, + "date_last_updated": { + "type": 6, + "value": 1686844436781 + }, + "date_of_expiration": { + "type": 6, + "value": 1686844436781 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -10904,9 +13852,18 @@ "total_amount": 508.98, "id": 1686844436954, "contract_id": "1684612673872", - "date_created": { "type": 6, "value": 1686844436954 }, - "date_last_updated": { "type": 6, "value": 1686844436954 }, - "date_of_expiration": { "type": 6, "value": 1686844436954 }, + "date_created": { + "type": 6, + "value": 1686844436954 + }, + "date_last_updated": { + "type": 6, + "value": 1686844436954 + }, + "date_of_expiration": { + "type": 6, + "value": 1686844436954 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -10966,9 +13923,18 @@ "original_amount": 11152973, "total_amount": 11152973, "id": 1687345768938, - "date_created": { "type": 6, "value": 1687345768938 }, - "date_last_updated": { "type": 6, "value": 1687345768938 }, - "date_of_expiration": { "type": 6, "value": 1718968168938 }, + "date_created": { + "type": 6, + "value": 1687345768938 + }, + "date_last_updated": { + "type": 6, + "value": 1687345768938 + }, + "date_of_expiration": { + "type": 6, + "value": 1718968168938 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11019,9 +13985,18 @@ "original_amount": 818586, "total_amount": 818586, "id": 1687393215194, - "date_created": { "type": 6, "value": 1687393215194 }, - "date_last_updated": { "type": 6, "value": 1687393215194 }, - "date_of_expiration": { "type": 6, "value": 1687393215194 }, + "date_created": { + "type": 6, + "value": 1687393215194 + }, + "date_last_updated": { + "type": 6, + "value": 1687393215194 + }, + "date_of_expiration": { + "type": 6, + "value": 1687393215194 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11072,9 +14047,18 @@ "original_amount": 496157, "total_amount": 496157, "id": 1687495116294, - "date_created": { "type": 6, "value": 1687495116294 }, - "date_last_updated": { "type": 6, "value": 1687495116294 }, - "date_of_expiration": { "type": 6, "value": 1687495116294 }, + "date_created": { + "type": 6, + "value": 1687495116294 + }, + "date_last_updated": { + "type": 6, + "value": 1687495116294 + }, + "date_of_expiration": { + "type": 6, + "value": 1687495116294 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11135,9 +14119,18 @@ "original_amount": 12152954, "total_amount": 12152954, "id": 1687547056698, - "date_created": { "type": 6, "value": 1687547056698 }, - "date_last_updated": { "type": 6, "value": 1687547056698 }, - "date_of_expiration": { "type": 6, "value": 1750705456698 }, + "date_created": { + "type": 6, + "value": 1687547056698 + }, + "date_last_updated": { + "type": 6, + "value": 1687547056698 + }, + "date_of_expiration": { + "type": 6, + "value": 1750705456698 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -11165,7 +14158,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1688994491622/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qpi00jxoohx3egj6bpi", "revision_nr": 1, "created": 1697467086775, "modified": 1697467086775 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qpi00jxoohx3egj6bpi", + "revision_nr": 1, + "created": 1697467086775, + "modified": 1697467086775 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1688994491622", @@ -11179,9 +14181,18 @@ "total_amount": 526, "history_id": 1688994491622, "id": 1688994491622, - "date_created": { "type": 6, "value": 1688994491622 }, - "date_last_updated": { "type": 6, "value": 1688994491622 }, - "date_of_expiration": { "type": 6, "value": 1691586491622 }, + "date_created": { + "type": 6, + "value": 1688994491622 + }, + "date_last_updated": { + "type": 6, + "value": 1688994491622 + }, + "date_of_expiration": { + "type": 6, + "value": 1691586491622 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -11206,7 +14217,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689000633630/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qpn00k0oohx7llkfimz", "revision_nr": 1, "created": 1697467086780, "modified": 1697467086780 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qpn00k0oohx7llkfimz", + "revision_nr": 1, + "created": 1697467086780, + "modified": 1697467086780 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689000633630", @@ -11220,15 +14240,30 @@ "total_amount": 2224, "history_id": 1689000633630, "id": 1689000633630, - "date_created": { "type": 6, "value": 1689000633630 }, - "date_last_updated": { "type": 6, "value": 1689002506324 }, - "date_of_expiration": { "type": 6, "value": 1691592633630 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689002506324 }, - "money_release_date": { "type": 6, "value": 1689002506324 }, + "date_created": { + "type": 6, + "value": 1689000633630 + }, + "date_last_updated": { + "type": 6, + "value": 1689002506324 + }, + "date_of_expiration": { + "type": 6, + "value": 1691592633630 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689002506324 + }, + "money_release_date": { + "type": 6, + "value": 1689002506324 + }, "money_release_status": "approved", "wasDebited": true }, @@ -11274,9 +14309,18 @@ "original_amount": 180125, "total_amount": 180125, "id": 1689082225194, - "date_created": { "type": 6, "value": 1689082225194 }, - "date_last_updated": { "type": 6, "value": 1689082225194 }, - "date_of_expiration": { "type": 6, "value": 1689082225194 }, + "date_created": { + "type": 6, + "value": 1689082225194 + }, + "date_last_updated": { + "type": 6, + "value": 1689082225194 + }, + "date_of_expiration": { + "type": 6, + "value": 1689082225194 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11327,9 +14371,18 @@ "original_amount": 305476, "total_amount": 305476, "id": 1689114929852, - "date_created": { "type": 6, "value": 1689114929852 }, - "date_last_updated": { "type": 6, "value": 1689114929852 }, - "date_of_expiration": { "type": 6, "value": 1689114929852 }, + "date_created": { + "type": 6, + "value": 1689114929852 + }, + "date_last_updated": { + "type": 6, + "value": 1689114929852 + }, + "date_of_expiration": { + "type": 6, + "value": 1689114929852 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11357,7 +14410,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689115029893/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qpz00k7oohx6aa736k8", "revision_nr": 1, "created": 1697467086792, "modified": 1697467086792 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qpz00k7oohx6aa736k8", + "revision_nr": 1, + "created": 1697467086792, + "modified": 1697467086792 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689115029893", @@ -11371,15 +14433,30 @@ "total_amount": 726, "history_id": 1689115029893, "id": 1689115029893, - "date_created": { "type": 6, "value": 1689115029893 }, - "date_last_updated": { "type": 6, "value": 1689150209959 }, - "date_of_expiration": { "type": 6, "value": 1691707029893 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689150209959 }, - "money_release_date": { "type": 6, "value": 1689150209959 }, + "date_created": { + "type": 6, + "value": 1689115029893 + }, + "date_last_updated": { + "type": 6, + "value": 1689150209959 + }, + "date_of_expiration": { + "type": 6, + "value": 1691707029893 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689150209959 + }, + "money_release_date": { + "type": 6, + "value": 1689150209959 + }, "money_release_status": "approved", "wasDebited": true }, @@ -11425,9 +14502,18 @@ "original_amount": 93754, "total_amount": 93754, "id": 1689195736692, - "date_created": { "type": 6, "value": 1689195736692 }, - "date_last_updated": { "type": 6, "value": 1689195736692 }, - "date_of_expiration": { "type": 6, "value": 1689195736692 }, + "date_created": { + "type": 6, + "value": 1689195736692 + }, + "date_last_updated": { + "type": 6, + "value": 1689195736692 + }, + "date_of_expiration": { + "type": 6, + "value": 1689195736692 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11488,9 +14574,18 @@ "original_amount": 1904, "total_amount": 1904, "id": 1689204261841, - "date_created": { "type": 6, "value": 1689204261841 }, - "date_last_updated": { "type": 6, "value": 1689204261841 }, - "date_of_expiration": { "type": 6, "value": 1715556261841 }, + "date_created": { + "type": 6, + "value": 1689204261841 + }, + "date_last_updated": { + "type": 6, + "value": 1689204261841 + }, + "date_of_expiration": { + "type": 6, + "value": 1715556261841 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11541,9 +14636,18 @@ "original_amount": 40949, "total_amount": 40949, "id": 1689204343069, - "date_created": { "type": 6, "value": 1689204343069 }, - "date_last_updated": { "type": 6, "value": 1689204343069 }, - "date_of_expiration": { "type": 6, "value": 1689204343069 }, + "date_created": { + "type": 6, + "value": 1689204343069 + }, + "date_last_updated": { + "type": 6, + "value": 1689204343069 + }, + "date_of_expiration": { + "type": 6, + "value": 1689204343069 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11571,7 +14675,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689347614368/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qqh00khoohx1r654g4y", "revision_nr": 1, "created": 1697467086810, "modified": 1697467086810 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qqh00khoohx1r654g4y", + "revision_nr": 1, + "created": 1697467086810, + "modified": 1697467086810 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689347614368", @@ -11585,9 +14698,18 @@ "total_amount": 1423, "history_id": 1689347614368, "id": 1689347614368, - "date_created": { "type": 6, "value": 1689347614368 }, - "date_last_updated": { "type": 6, "value": 1689347614368 }, - "date_of_expiration": { "type": 6, "value": 1691939614368 }, + "date_created": { + "type": 6, + "value": 1689347614368 + }, + "date_last_updated": { + "type": 6, + "value": 1689347614368 + }, + "date_of_expiration": { + "type": 6, + "value": 1691939614368 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -11612,7 +14734,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689618134136/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qql00kkoohx2v2r8npf", "revision_nr": 1, "created": 1697467086815, "modified": 1697467086815 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qql00kkoohx2v2r8npf", + "revision_nr": 1, + "created": 1697467086815, + "modified": 1697467086815 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689618134136", @@ -11626,15 +14757,30 @@ "total_amount": 1379, "history_id": 1689618134136, "id": 1689618134136, - "date_created": { "type": 6, "value": 1689618134136 }, - "date_last_updated": { "type": 6, "value": 1689619146304 }, - "date_of_expiration": { "type": 6, "value": 1692210134136 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689619146304 }, - "money_release_date": { "type": 6, "value": 1689619146304 }, + "date_created": { + "type": 6, + "value": 1689618134136 + }, + "date_last_updated": { + "type": 6, + "value": 1689619146304 + }, + "date_of_expiration": { + "type": 6, + "value": 1692210134136 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689619146304 + }, + "money_release_date": { + "type": 6, + "value": 1689619146304 + }, "money_release_status": "approved", "wasDebited": true }, @@ -11680,9 +14826,18 @@ "original_amount": 326875, "total_amount": 326875, "id": 1689619360780, - "date_created": { "type": 6, "value": 1689619360780 }, - "date_last_updated": { "type": 6, "value": 1689619360780 }, - "date_of_expiration": { "type": 6, "value": 1689619360780 }, + "date_created": { + "type": 6, + "value": 1689619360780 + }, + "date_last_updated": { + "type": 6, + "value": 1689619360780 + }, + "date_of_expiration": { + "type": 6, + "value": 1689619360780 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11733,9 +14888,18 @@ "original_amount": 318321, "total_amount": 318321, "id": 1690237331737, - "date_created": { "type": 6, "value": 1690237331737 }, - "date_last_updated": { "type": 6, "value": 1690237331737 }, - "date_of_expiration": { "type": 6, "value": 1690237331737 }, + "date_created": { + "type": 6, + "value": 1690237331737 + }, + "date_last_updated": { + "type": 6, + "value": 1690237331737 + }, + "date_of_expiration": { + "type": 6, + "value": 1690237331737 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11786,9 +14950,18 @@ "original_amount": 338652, "total_amount": 338652, "id": 1690273510959, - "date_created": { "type": 6, "value": 1690273510959 }, - "date_last_updated": { "type": 6, "value": 1690273510959 }, - "date_of_expiration": { "type": 6, "value": 1690273510959 }, + "date_created": { + "type": 6, + "value": 1690273510959 + }, + "date_last_updated": { + "type": 6, + "value": 1690273510959 + }, + "date_of_expiration": { + "type": 6, + "value": 1690273510959 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11807,7 +14980,13 @@ "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1695207854014 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695207854014 + } + }, "revision": "lnt02qqy00ksoohxank657xo", "revision_nr": 1, "created": 1697467086828, @@ -11869,8 +15048,14 @@ "total_amount": 450, "id": 1692615854014, "history_id": 1692615854014, - "date_created": { "type": 6, "value": 1692615854014 }, - "date_last_updated": { "type": 6, "value": 1692615854014 }, + "date_created": { + "type": 6, + "value": 1692615854014 + }, + "date_last_updated": { + "type": 6, + "value": 1692615854014 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -11939,9 +15124,18 @@ "total_amount": 3384929, "id": "1693771767267", "history_id": "1693771767267", - "date_created": { "type": 6, "value": 1693771767267 }, - "date_last_updated": { "type": 6, "value": 1693771767267 }, - "date_of_expiration": { "type": 6, "value": 1696363767265 }, + "date_created": { + "type": 6, + "value": 1693771767267 + }, + "date_last_updated": { + "type": 6, + "value": 1693771767267 + }, + "date_of_expiration": { + "type": 6, + "value": 1696363767265 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12011,9 +15205,18 @@ "total_amount": 3452627.58, "id": "1696371493428", "history_id": "1696371493428", - "date_created": { "type": 6, "value": 1696371493428 }, - "date_last_updated": { "type": 6, "value": 1696371493428 }, - "date_of_expiration": { "type": 6, "value": 1696371493428 }, + "date_created": { + "type": 6, + "value": 1696371493428 + }, + "date_last_updated": { + "type": 6, + "value": 1696371493428 + }, + "date_of_expiration": { + "type": 6, + "value": 1696371493428 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -12083,9 +15286,18 @@ "total_amount": 3452627.58, "id": "1696371493371", "history_id": "1696371493371", - "date_created": { "type": 6, "value": 1696371493371 }, - "date_last_updated": { "type": 6, "value": 1696371493371 }, - "date_of_expiration": { "type": 6, "value": 1696371493371 }, + "date_created": { + "type": 6, + "value": 1696371493371 + }, + "date_last_updated": { + "type": 6, + "value": 1696371493371 + }, + "date_of_expiration": { + "type": 6, + "value": 1696371493371 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12155,9 +15367,18 @@ "total_amount": 7624011, "id": "1696459483900", "history_id": "1696459483900", - "date_created": { "type": 6, "value": 1696459483900 }, - "date_last_updated": { "type": 6, "value": 1696459483900 }, - "date_of_expiration": { "type": 6, "value": 1699137883861 }, + "date_created": { + "type": 6, + "value": 1696459483900 + }, + "date_last_updated": { + "type": 6, + "value": 1696459483900 + }, + "date_of_expiration": { + "type": 6, + "value": 1699137883861 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12175,7 +15396,13 @@ "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699222159538 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699222159538 + } + }, "revision": "lnt02qs200ldoohxbxskej5v", "revision_nr": 1, "created": 1697467086867, @@ -12238,8 +15465,14 @@ "total_amount": 1000, "id": "1696630159545", "history_id": "1696630159545", - "date_created": { "type": 6, "value": 1696630159545 }, - "date_last_updated": { "type": 6, "value": 1696630159545 }, + "date_created": { + "type": 6, + "value": 1696630159545 + }, + "date_last_updated": { + "type": 6, + "value": 1696630159545 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -12255,7 +15488,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history", - "content": { "type": 1, "value": {}, "revision": "lnt02qm000hpoohxgefs1b9w", "revision_nr": 1, "created": 1697467086878, "modified": 1697467086878 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qm000hpoohxgefs1b9w", + "revision_nr": 1, + "created": 1697467086878, + "modified": 1697467086878 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939/description", @@ -12272,7 +15512,11 @@ "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 10.02 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 10.02 + }, "revision": "lnt02qsg00lnoohx6h6h4zvy", "revision_nr": 1, "created": 1697467086881, @@ -12281,7 +15525,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qsg00lmoohxadc34o6l", "revision_nr": 1, "created": 1697467086883, "modified": 1697467086883 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qsg00lmoohxadc34o6l", + "revision_nr": 1, + "created": 1697467086883, + "modified": 1697467086883 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939", @@ -12294,7 +15545,10 @@ "total_amount": 511.02, "installments": 1, "installment_amount": 511.02, - "date_created": { "type": 6, "value": 1684399661939 }, + "date_created": { + "type": 6, + "value": 1684399661939 + }, "history_id": 1684399661939, "currency_id": "BRL", "status": "paid" @@ -12320,7 +15574,11 @@ "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 9.98 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 9.98 + }, "revision": "lnt02qsm00lroohxhze4am9o", "revision_nr": 1, "created": 1697467086888, @@ -12329,7 +15587,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qsm00lqoohxbuso9i2g", "revision_nr": 1, "created": 1697467086890, "modified": 1697467086890 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qsm00lqoohxbuso9i2g", + "revision_nr": 1, + "created": 1697467086890, + "modified": 1697467086890 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872", @@ -12342,7 +15607,10 @@ "total_amount": 508.98, "installments": 1, "installment_amount": 508.98, - "date_created": { "type": 6, "value": 1684612673872 }, + "date_created": { + "type": 6, + "value": 1684612673872 + }, "history_id": 1684612673872, "currency_id": "BRL", "status": "paid" @@ -12355,17 +15623,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt02qse00ljoohxdhmwd8kp", "revision_nr": 1, "created": 1697467086893, "modified": 1697467086893 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qse00ljoohxdhmwd8kp", + "revision_nr": 1, + "created": 1697467086893, + "modified": 1697467086893 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt02qse00lioohx33qf6i19", "revision_nr": 1, "created": 1697467086894, "modified": 1697467086894 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qse00lioohx33qf6i19", + "revision_nr": 1, + "created": 1697467086894, + "modified": 1697467086894 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit", "content": { "type": 1, - "value": { "approvedLimit": 1000, "limitUsed": 0, "analysisRequested": { "type": 6, "value": 1684321757322 }, "lastReview": { "type": 6, "value": 1684329814101 } }, + "value": { + "approvedLimit": 1000, + "limitUsed": 0, + "analysisRequested": { + "type": 6, + "value": 1684321757322 + }, + "lastReview": { + "type": 6, + "value": 1684329814101 + } + }, "revision": "lnt02qse00lhoohxeldghuy5", "revision_nr": 1, "created": 1697467086896, @@ -12376,7 +15669,16 @@ "path": "ivipcoin-db::__movement_wallet__/001345425233260977", "content": { "type": 1, - "value": { "dataModificacao": 1684091909123, "dateValidity": 1684091909123, "totalValue": 5846.89, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696820400000 } }, + "value": { + "dataModificacao": 1684091909123, + "dateValidity": 1684091909123, + "totalValue": 5846.89, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } + }, "revision": "lnt02qly00hmoohxea6bdsvc", "revision_nr": 1, "created": 1697467086897, @@ -12387,7 +15689,11 @@ "path": "ivipcoin-db::__movement_wallet__/002445768964969286/balances/BRL", "content": { "type": 1, - "value": { "symbol": "BRL", "available": "100.00000000", "value": 20.09 }, + "value": { + "symbol": "BRL", + "available": "100.00000000", + "value": 20.09 + }, "revision": "lnt02qsy00luoohxgvo779ca", "revision_nr": 1, "created": 1697467086900, @@ -12396,7 +15702,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02qsy00ltoohx2cc1hfx0", "revision_nr": 1, "created": 1697467086903, "modified": 1697467086903 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qsy00ltoohx2cc1hfx0", + "revision_nr": 1, + "created": 1697467086903, + "modified": 1697467086903 + } }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history/1684119457629/description", @@ -12411,7 +15724,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history/1684119457629/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qt600lyoohx3llab8rk", "revision_nr": 1, "created": 1697467086908, "modified": 1697467086908 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qt600lyoohx3llab8rk", + "revision_nr": 1, + "created": 1697467086908, + "modified": 1697467086908 + } }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history/1684119457629", @@ -12425,15 +15747,30 @@ "total_amount": 100, "history_id": 1684119457629, "id": 1684119457629, - "date_created": { "type": 6, "value": 1684119457629 }, - "date_last_updated": { "type": 6, "value": 1684119734913 }, - "date_of_expiration": { "type": 6, "value": 1686711457629 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684119734913 }, - "money_release_date": { "type": 6, "value": 1684119734913 }, + "date_created": { + "type": 6, + "value": 1684119457629 + }, + "date_last_updated": { + "type": 6, + "value": 1684119734913 + }, + "date_of_expiration": { + "type": 6, + "value": 1686711457629 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684119734913 + }, + "money_release_date": { + "type": 6, + "value": 1684119734913 + }, "money_release_status": "approved", "wasDebited": true }, @@ -12445,13 +15782,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history", - "content": { "type": 1, "value": {}, "revision": "lnt02qt300lvoohx0woo4kny", "revision_nr": 1, "created": 1697467086911, "modified": 1697467086911 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qt300lvoohx0woo4kny", + "revision_nr": 1, + "created": 1697467086911, + "modified": 1697467086911 + } }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02qtb00lzoohx8ol60obx", "revision_nr": 1, "created": 1697467086912, @@ -12462,7 +15810,12 @@ "path": "ivipcoin-db::__movement_wallet__/002445768964969286", "content": { "type": 1, - "value": { "dataModificacao": 1684119427446, "dateValidity": 1684119427446, "totalValue": 20.09, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684119427446, + "dateValidity": 1684119427446, + "totalValue": 20.09, + "currencyType": "USD" + }, "revision": "lnt02qsx00lsoohx39fyfjfh", "revision_nr": 1, "created": 1697467086914, @@ -12473,7 +15826,11 @@ "path": "ivipcoin-db::__movement_wallet__/003757297582092533/balances/IVIP", "content": { "type": 1, - "value": { "available": "5324627.00000000", "symbol": "IVIP", "value": 1075.36 }, + "value": { + "available": "5324627.00000000", + "symbol": "IVIP", + "value": 1075.36 + }, "revision": "lnt02qtf00m2oohxb7166gnn", "revision_nr": 1, "created": 1697467086916, @@ -12482,7 +15839,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02qte00m1oohx8fz51ymf", "revision_nr": 1, "created": 1697467086918, "modified": 1697467086918 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qte00m1oohx8fz51ymf", + "revision_nr": 1, + "created": 1697467086918, + "modified": 1697467086918 + } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1677798769726/description", @@ -12497,7 +15861,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1677798769726/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qtj00m6oohx079n5op0", "revision_nr": 1, "created": 1697467086922, "modified": 1697467086922 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qtj00m6oohx079n5op0", + "revision_nr": 1, + "created": 1697467086922, + "modified": 1697467086922 + } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1677798769726", @@ -12511,14 +15884,26 @@ "total_amount": 2000, "history_id": 1677798769726, "id": 1677798769726, - "date_created": { "type": 6, "value": 1677798769726 }, - "date_last_updated": { "type": 6, "value": 1678713365659 }, - "date_of_expiration": { "type": 6, "value": 1680390769726 }, + "date_created": { + "type": 6, + "value": 1677798769726 + }, + "date_last_updated": { + "type": 6, + "value": 1678713365659 + }, + "date_of_expiration": { + "type": 6, + "value": 1680390769726 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678713365659 }, + "money_release_date": { + "type": 6, + "value": 1678713365659 + }, "money_release_status": "rejected" }, "revision": "lnt02qti00m4oohx6yd64buf", @@ -12540,7 +15925,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678058459792/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qtp00m9oohx9verbizf", "revision_nr": 1, "created": 1697467086927, "modified": 1697467086927 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qtp00m9oohx9verbizf", + "revision_nr": 1, + "created": 1697467086927, + "modified": 1697467086927 + } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678058459792", @@ -12554,14 +15948,26 @@ "total_amount": 1000, "history_id": 1678058459792, "id": 1678058459792, - "date_created": { "type": 6, "value": 1678058459792 }, - "date_last_updated": { "type": 6, "value": 1678714885155 }, - "date_of_expiration": { "type": 6, "value": 1680650459792 }, + "date_created": { + "type": 6, + "value": 1678058459792 + }, + "date_last_updated": { + "type": 6, + "value": 1678714885155 + }, + "date_of_expiration": { + "type": 6, + "value": 1680650459792 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678714885155 }, + "money_release_date": { + "type": 6, + "value": 1678714885155 + }, "money_release_status": "rejected" }, "revision": "lnt02qtn00m7oohxc4v6c4an", @@ -12583,7 +15989,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678527306058/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qtv00mcoohx40m0ejeo", "revision_nr": 1, "created": 1697467086933, "modified": 1697467086933 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qtv00mcoohx40m0ejeo", + "revision_nr": 1, + "created": 1697467086933, + "modified": 1697467086933 + } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678527306058", @@ -12597,15 +16012,30 @@ "total_amount": 1000, "history_id": 1678527306058, "id": 1678527306058, - "date_created": { "type": 6, "value": 1678527306058 }, - "date_last_updated": { "type": 6, "value": 1678544524146 }, - "date_of_expiration": { "type": 6, "value": 1681119306058 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678544524146 }, - "money_release_date": { "type": 6, "value": 1678544524146 }, + "date_created": { + "type": 6, + "value": 1678527306058 + }, + "date_last_updated": { + "type": 6, + "value": 1678544524146 + }, + "date_of_expiration": { + "type": 6, + "value": 1681119306058 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678544524146 + }, + "money_release_date": { + "type": 6, + "value": 1678544524146 + }, "money_release_status": "approved", "wasDebited": true }, @@ -12651,9 +16081,18 @@ "original_amount": 5325627, "total_amount": 5325627, "id": 1679908062539, - "date_created": { "type": 6, "value": 1679908062539 }, - "date_last_updated": { "type": 6, "value": 1679908062539 }, - "date_of_expiration": { "type": 6, "value": 1679908062539 }, + "date_created": { + "type": 6, + "value": 1679908062539 + }, + "date_last_updated": { + "type": 6, + "value": 1679908062539 + }, + "date_of_expiration": { + "type": 6, + "value": 1679908062539 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12714,9 +16153,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687109837625, - "date_created": { "type": 6, "value": 1687109837625 }, - "date_last_updated": { "type": 6, "value": 1687109837625 }, - "date_of_expiration": { "type": 6, "value": 1702921037625 }, + "date_created": { + "type": 6, + "value": 1687109837625 + }, + "date_last_updated": { + "type": 6, + "value": 1687109837625 + }, + "date_of_expiration": { + "type": 6, + "value": 1702921037625 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12732,13 +16180,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history", - "content": { "type": 1, "value": {}, "revision": "lnt02qti00m3oohxc152fv9q", "revision_nr": 1, "created": 1697467086945, "modified": 1697467086945 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qti00m3oohxc152fv9q", + "revision_nr": 1, + "created": 1697467086945, + "modified": 1697467086945 + } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02qu900mioohx1rdcdwil", "revision_nr": 1, "created": 1697467086947, @@ -12754,7 +16213,10 @@ "dateValidity": 1678995120507, "totalValue": 249.76613748285868, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1696129200000 } + "balancesModificacao": { + "type": 6, + "value": 1696129200000 + } }, "revision": "lnt02qte00m0oohxea137lqh", "revision_nr": 1, @@ -12766,7 +16228,14 @@ "path": "ivipcoin-db::__movement_wallet__/005753000686812060", "content": { "type": 1, - "value": { "dataModificacao": 1678127212147, "dateValidity": 1678325697693, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678127212147, + "dateValidity": 1678325697693, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02qud00mjoohx6gn101lc", "revision_nr": 1, "created": 1697467086950, @@ -12777,7 +16246,11 @@ "path": "ivipcoin-db::__movement_wallet__/007219693774253022/balances/BRL", "content": { "type": 1, - "value": { "available": "150.00000000", "symbol": "BRL", "value": 29.27 }, + "value": { + "available": "150.00000000", + "symbol": "BRL", + "value": 29.27 + }, "revision": "lnt02que00mmoohx0hwb1uas", "revision_nr": 1, "created": 1697467086952, @@ -12786,7 +16259,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02que00mloohxdcjrd2h9", "revision_nr": 1, "created": 1697467086954, "modified": 1697467086954 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02que00mloohxdcjrd2h9", + "revision_nr": 1, + "created": 1697467086954, + "modified": 1697467086954 + } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689373938365/description", @@ -12801,7 +16281,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689373938365/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02quk00mqoohxazd2eueo", "revision_nr": 1, "created": 1697467086958, "modified": 1697467086958 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02quk00mqoohxazd2eueo", + "revision_nr": 1, + "created": 1697467086958, + "modified": 1697467086958 + } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689373938365", @@ -12815,14 +16304,26 @@ "total_amount": 100, "history_id": 1689373938365, "id": 1689373938365, - "date_created": { "type": 6, "value": 1689373938365 }, - "date_last_updated": { "type": 6, "value": 1690407661153 }, - "date_of_expiration": { "type": 6, "value": 1691965938365 }, + "date_created": { + "type": 6, + "value": 1689373938365 + }, + "date_last_updated": { + "type": 6, + "value": 1690407661153 + }, + "date_of_expiration": { + "type": 6, + "value": 1691965938365 + }, "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1690407661153 }, + "money_release_date": { + "type": 6, + "value": 1690407661153 + }, "money_release_status": "cancelled", "wasDebited": true }, @@ -12845,7 +16346,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689719003118/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02quq00mtoohx0gjeau5s", "revision_nr": 1, "created": 1697467086964, "modified": 1697467086964 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02quq00mtoohx0gjeau5s", + "revision_nr": 1, + "created": 1697467086964, + "modified": 1697467086964 + } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689719003118", @@ -12859,14 +16369,26 @@ "total_amount": 130, "history_id": 1689719003118, "id": 1689719003118, - "date_created": { "type": 6, "value": 1689719003118 }, - "date_last_updated": { "type": 6, "value": 1690407636264 }, - "date_of_expiration": { "type": 6, "value": 1692311003118 }, + "date_created": { + "type": 6, + "value": 1689719003118 + }, + "date_last_updated": { + "type": 6, + "value": 1690407636264 + }, + "date_of_expiration": { + "type": 6, + "value": 1692311003118 + }, "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1690407636264 }, + "money_release_date": { + "type": 6, + "value": 1690407636264 + }, "money_release_status": "cancelled", "wasDebited": true }, @@ -12880,7 +16402,13 @@ "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1692808041978 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692808041978 + } + }, "revision": "lnt02quu00mvoohxdplu1x4z", "revision_nr": 1, "created": 1697467086967, @@ -12942,16 +16470,28 @@ "total_amount": 150, "id": 1690216041978, "history_id": 1690216041978, - "date_created": { "type": 6, "value": 1690216041978 }, - "date_last_updated": { "type": 6, "value": 1690219390794 }, + "date_created": { + "type": 6, + "value": 1690216041978 + }, + "date_last_updated": { + "type": 6, + "value": 1690219390794 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1690219390794 }, - "money_release_date": { "type": 6, "value": 1690219390794 }, + "date_approved": { + "type": 6, + "value": 1690219390794 + }, + "money_release_date": { + "type": 6, + "value": 1690219390794 + }, "money_release_status": "approved", "wasDebited": true }, @@ -12963,13 +16503,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history", - "content": { "type": 1, "value": {}, "revision": "lnt02qui00mnoohxaalofk1x", "revision_nr": 1, "created": 1697467086976, "modified": 1697467086976 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qui00mnoohxaalofk1x", + "revision_nr": 1, + "created": 1697467086976, + "modified": 1697467086976 + } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02qv400mzoohx0t647zgo", "revision_nr": 1, "created": 1697467086978, @@ -12980,7 +16531,16 @@ "path": "ivipcoin-db::__movement_wallet__/007219693774253022", "content": { "type": 1, - "value": { "dataModificacao": 1689373828234, "dateValidity": 1689373828234, "totalValue": 0, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697252400000 } }, + "value": { + "dataModificacao": 1689373828234, + "dateValidity": 1689373828234, + "totalValue": 0, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697252400000 + } + }, "revision": "lnt02que00mkoohx49ls1fhp", "revision_nr": 1, "created": 1697467086980, @@ -12991,7 +16551,14 @@ "path": "ivipcoin-db::__movement_wallet__/007971641402707341", "content": { "type": 1, - "value": { "dataModificacao": 1678227735051, "dateValidity": 1678242135085, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678227735051, + "dateValidity": 1678242135085, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02qv800n0oohx56ew0l7u", "revision_nr": 1, "created": 1697467086981, @@ -13002,7 +16569,14 @@ "path": "ivipcoin-db::__movement_wallet__/010022330876236384", "content": { "type": 1, - "value": { "dataModificacao": 1677760347570, "dateValidity": 1677760347570, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677760347570, + "dateValidity": 1677760347570, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02qv900n1oohxhapd7buh", "revision_nr": 1, "created": 1697467086983, @@ -13022,7 +16596,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684424340055/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qvd00n6oohx7ef1270c", "revision_nr": 1, "created": 1697467086988, "modified": 1697467086988 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qvd00n6oohx7ef1270c", + "revision_nr": 1, + "created": 1697467086988, + "modified": 1697467086988 + } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684424340055", @@ -13036,15 +16619,30 @@ "total_amount": 507, "history_id": 1684424340055, "id": 1684424340055, - "date_created": { "type": 6, "value": 1684424340055 }, - "date_last_updated": { "type": 6, "value": 1684429370415 }, - "date_of_expiration": { "type": 6, "value": 1687016340055 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684429370415 }, - "money_release_date": { "type": 6, "value": 1684429370415 }, + "date_created": { + "type": 6, + "value": 1684424340055 + }, + "date_last_updated": { + "type": 6, + "value": 1684429370415 + }, + "date_of_expiration": { + "type": 6, + "value": 1687016340055 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684429370415 + }, + "money_release_date": { + "type": 6, + "value": 1684429370415 + }, "money_release_status": "approved", "wasDebited": true }, @@ -13067,7 +16665,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684539875683/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qvk00n9oohxbrs57nyl", "revision_nr": 1, "created": 1697467086994, "modified": 1697467086994 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qvk00n9oohxbrs57nyl", + "revision_nr": 1, + "created": 1697467086994, + "modified": 1697467086994 + } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684539875683", @@ -13081,15 +16688,30 @@ "total_amount": 1093, "history_id": 1684539875683, "id": 1684539875683, - "date_created": { "type": 6, "value": 1684539875683 }, - "date_last_updated": { "type": 6, "value": 1684540637031 }, - "date_of_expiration": { "type": 6, "value": 1687131875683 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684540637031 }, - "money_release_date": { "type": 6, "value": 1684540637031 }, + "date_created": { + "type": 6, + "value": 1684539875683 + }, + "date_last_updated": { + "type": 6, + "value": 1684540637031 + }, + "date_of_expiration": { + "type": 6, + "value": 1687131875683 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684540637031 + }, + "money_release_date": { + "type": 6, + "value": 1684540637031 + }, "money_release_status": "approved", "wasDebited": true }, @@ -13135,9 +16757,18 @@ "original_amount": 7793170, "total_amount": 7793170, "id": 1684625025298, - "date_created": { "type": 6, "value": 1684625025298 }, - "date_last_updated": { "type": 6, "value": 1684625025298 }, - "date_of_expiration": { "type": 6, "value": 1684625025298 }, + "date_created": { + "type": 6, + "value": 1684625025298 + }, + "date_last_updated": { + "type": 6, + "value": 1684625025298 + }, + "date_of_expiration": { + "type": 6, + "value": 1684625025298 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13165,7 +16796,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685465338404/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qvt00neoohxao9g65uw", "revision_nr": 1, "created": 1697467087003, "modified": 1697467087003 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qvt00neoohxao9g65uw", + "revision_nr": 1, + "created": 1697467087003, + "modified": 1697467087003 + } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685465338404", @@ -13179,15 +16819,30 @@ "total_amount": 5588008, "history_id": 1685465338404, "id": 1685465338404, - "date_created": { "type": 6, "value": 1685465338404 }, - "date_last_updated": { "type": 6, "value": 1685472203347 }, - "date_of_expiration": { "type": 6, "value": 1685465338404 }, + "date_created": { + "type": 6, + "value": 1685465338404 + }, + "date_last_updated": { + "type": 6, + "value": 1685472203347 + }, + "date_of_expiration": { + "type": 6, + "value": 1685465338404 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1685472203347 }, - "money_release_date": { "type": 6, "value": 1685472203347 }, + "date_approved": { + "type": 6, + "value": 1685472203347 + }, + "money_release_date": { + "type": 6, + "value": 1685472203347 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -13243,9 +16898,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685720288992, - "date_created": { "type": 6, "value": 1685720288992 }, - "date_last_updated": { "type": 6, "value": 1685720288992 }, - "date_of_expiration": { "type": 6, "value": 1701531488992 }, + "date_created": { + "type": 6, + "value": 1685720288992 + }, + "date_last_updated": { + "type": 6, + "value": 1685720288992 + }, + "date_of_expiration": { + "type": 6, + "value": 1701531488992 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13305,9 +16969,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685720363618, - "date_created": { "type": 6, "value": 1685720363618 }, - "date_last_updated": { "type": 6, "value": 1685720363618 }, - "date_of_expiration": { "type": 6, "value": 1688312363618 }, + "date_created": { + "type": 6, + "value": 1685720363618 + }, + "date_last_updated": { + "type": 6, + "value": 1685720363618 + }, + "date_of_expiration": { + "type": 6, + "value": 1688312363618 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13367,9 +17040,18 @@ "original_amount": 1020, "total_amount": 1020, "id": 1688400602023, - "date_created": { "type": 6, "value": 1688400602023 }, - "date_last_updated": { "type": 6, "value": 1688400602023 }, - "date_of_expiration": { "type": 6, "value": 1688400602023 }, + "date_created": { + "type": 6, + "value": 1688400602023 + }, + "date_last_updated": { + "type": 6, + "value": 1688400602023 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400602023 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13430,9 +17112,18 @@ "original_amount": 2154096, "total_amount": 2154096, "id": 1688595538475, - "date_created": { "type": 6, "value": 1688595538475 }, - "date_last_updated": { "type": 6, "value": 1688595538475 }, - "date_of_expiration": { "type": 6, "value": 1691273938475 }, + "date_created": { + "type": 6, + "value": 1688595538475 + }, + "date_last_updated": { + "type": 6, + "value": 1688595538475 + }, + "date_of_expiration": { + "type": 6, + "value": 1691273938475 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13501,9 +17192,18 @@ "total_amount": 2197177.92, "id": 1691274110792, "history_id": 1691274110792, - "date_created": { "type": 6, "value": 1691274110792 }, - "date_last_updated": { "type": 6, "value": 1691274110792 }, - "date_of_expiration": { "type": 6, "value": 1691274110792 }, + "date_created": { + "type": 6, + "value": 1691274110792 + }, + "date_last_updated": { + "type": 6, + "value": 1691274110792 + }, + "date_of_expiration": { + "type": 6, + "value": 1691274110792 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13543,7 +17243,11 @@ "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 36290.1735 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 36290.1735 + }, "revision": "lnt02qwt00o0oohxed5qeqzt", "revision_nr": 1, "created": 1697467087039, @@ -13552,7 +17256,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qwt00nzoohx0xcdah0e", "revision_nr": 1, "created": 1697467087042, "modified": 1697467087042 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qwt00nzoohx0xcdah0e", + "revision_nr": 1, + "created": 1697467087042, + "modified": 1697467087042 + } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details", @@ -13586,16 +17297,28 @@ "total_amount": 1209672.45, "id": 1691439593377, "history_id": 1691439593377, - "date_created": { "type": 6, "value": 1691439593377 }, - "date_last_updated": { "type": 6, "value": 1692191601115 }, - "date_of_expiration": { "type": 6, "value": 1691439593377 }, + "date_created": { + "type": 6, + "value": 1691439593377 + }, + "date_last_updated": { + "type": 6, + "value": 1692191601115 + }, + "date_of_expiration": { + "type": 6, + "value": 1691439593377 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_amount", - "money_release_date": { "type": 6, "value": 1692191601115 }, + "money_release_date": { + "type": 6, + "value": 1692191601115 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -13631,7 +17354,11 @@ "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 36184.977 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 36184.977 + }, "revision": "lnt02qx500o6oohx53frfk38", "revision_nr": 1, "created": 1697467087051, @@ -13640,7 +17367,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qx500o5oohxd0ji91sj", "revision_nr": 1, "created": 1697467087053, "modified": 1697467087053 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qx500o5oohxd0ji91sj", + "revision_nr": 1, + "created": 1697467087053, + "modified": 1697467087053 + } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details", @@ -13674,16 +17408,28 @@ "total_amount": 1206165.9, "id": 1691439992266, "history_id": 1691439992266, - "date_created": { "type": 6, "value": 1691439992266 }, - "date_last_updated": { "type": 6, "value": 1692191577715 }, - "date_of_expiration": { "type": 6, "value": 1691439992266 }, + "date_created": { + "type": 6, + "value": 1691439992266 + }, + "date_last_updated": { + "type": 6, + "value": 1692191577715 + }, + "date_of_expiration": { + "type": 6, + "value": 1691439992266 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_amount", - "money_release_date": { "type": 6, "value": 1692191577715 }, + "money_release_date": { + "type": 6, + "value": 1692191577715 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -13719,7 +17465,11 @@ "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 65395.38 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 65395.38 + }, "revision": "lnt02qxh00ocoohx5gnib70b", "revision_nr": 1, "created": 1697467087063, @@ -13728,7 +17478,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qxh00oboohx4mt1fv7r", "revision_nr": 1, "created": 1697467087065, "modified": 1697467087065 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qxh00oboohx4mt1fv7r", + "revision_nr": 1, + "created": 1697467087065, + "modified": 1697467087065 + } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details", @@ -13762,17 +17519,32 @@ "total_amount": 2179846, "id": 1691447884361, "history_id": 1691447884361, - "date_created": { "type": 6, "value": 1691447884361 }, - "date_last_updated": { "type": 6, "value": 1691501288315 }, - "date_of_expiration": { "type": 6, "value": 1691447884361 }, + "date_created": { + "type": 6, + "value": 1691447884361 + }, + "date_last_updated": { + "type": 6, + "value": 1691501288315 + }, + "date_of_expiration": { + "type": 6, + "value": 1691447884361 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1691501288315 }, - "money_release_date": { "type": 6, "value": 1691501288315 }, + "date_approved": { + "type": 6, + "value": 1691501288315 + }, + "money_release_date": { + "type": 6, + "value": 1691501288315 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -13784,13 +17556,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history", - "content": { "type": 1, "value": {}, "revision": "lnt02qvb00n3oohxdrtu1119", "revision_nr": 1, "created": 1697467087071, "modified": 1697467087071 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qvb00n3oohxdrtu1119", + "revision_nr": 1, + "created": 1697467087071, + "modified": 1697467087071 + } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02qxr00odoohx7le3etgx", "revision_nr": 1, "created": 1697467087073, @@ -13807,7 +17590,10 @@ "balances": {}, "totalValue": 4.914821489351172, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1696561200000 } + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } }, "revision": "lnt02qvb00n2oohxcvwq1gs9", "revision_nr": 1, @@ -13825,7 +17611,10 @@ "balances": {}, "history": {}, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1696474800000 } + "balancesModificacao": { + "type": 6, + "value": 1696474800000 + } }, "revision": "lnt02qxv00oeoohx0e3vgjf0", "revision_nr": 1, @@ -13846,7 +17635,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1678555308384/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qxz00ojoohx6gcv3ke6", "revision_nr": 1, "created": 1697467087080, "modified": 1697467087080 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qxz00ojoohx6gcv3ke6", + "revision_nr": 1, + "created": 1697467087080, + "modified": 1697467087080 + } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1678555308384", @@ -13860,15 +17658,30 @@ "total_amount": 50, "history_id": 1678555308384, "id": 1678555308384, - "date_created": { "type": 6, "value": 1678555308384 }, - "date_last_updated": { "type": 6, "value": 1678631722207 }, - "date_of_expiration": { "type": 6, "value": 1681147308384 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678631722207 }, - "money_release_date": { "type": 6, "value": 1678631722207 }, + "date_created": { + "type": 6, + "value": 1678555308384 + }, + "date_last_updated": { + "type": 6, + "value": 1678631722207 + }, + "date_of_expiration": { + "type": 6, + "value": 1681147308384 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678631722207 + }, + "money_release_date": { + "type": 6, + "value": 1678631722207 + }, "money_release_status": "approved", "wasDebited": true }, @@ -13914,9 +17727,18 @@ "original_amount": 291076, "total_amount": 291076, "id": 1679266899414, - "date_created": { "type": 6, "value": 1679266899414 }, - "date_last_updated": { "type": 6, "value": 1679266899414 }, - "date_of_expiration": { "type": 6, "value": 1679266899414 }, + "date_created": { + "type": 6, + "value": 1679266899414 + }, + "date_last_updated": { + "type": 6, + "value": 1679266899414 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266899414 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13977,9 +17799,18 @@ "original_amount": 291076, "total_amount": 291076, "id": 1685668294321, - "date_created": { "type": 6, "value": 1685668294321 }, - "date_last_updated": { "type": 6, "value": 1685668294321 }, - "date_of_expiration": { "type": 6, "value": 1748826694321 }, + "date_created": { + "type": 6, + "value": 1685668294321 + }, + "date_last_updated": { + "type": 6, + "value": 1685668294321 + }, + "date_of_expiration": { + "type": 6, + "value": 1748826694321 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13996,13 +17827,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history", - "content": { "type": 1, "value": {}, "revision": "lnt02qxx00ogoohx45no0h8k", "revision_nr": 1, "created": 1697467087094, "modified": 1697467087094 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qxx00ogoohx45no0h8k", + "revision_nr": 1, + "created": 1697467087094, + "modified": 1697467087094 + } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02qye00opoohx31avfw0w", "revision_nr": 1, "created": 1697467087095, @@ -14019,7 +17861,10 @@ "totalValue": 16.26, "currencyType": "USD", "balances": {}, - "balancesModificacao": { "type": 6, "value": 1696561200000 } + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } }, "revision": "lnt02qxx00ofoohxd41y1pqw", "revision_nr": 1, @@ -14031,7 +17876,11 @@ "path": "ivipcoin-db::__movement_wallet__/015094733487976298/balances/IVIP", "content": { "type": 1, - "value": { "available": "739882.02000000", "symbol": "IVIP", "value": 77.94 }, + "value": { + "available": "739882.02000000", + "symbol": "IVIP", + "value": 77.94 + }, "revision": "lnt02qyi00osoohx0olh1xup", "revision_nr": 1, "created": 1697467087100, @@ -14040,7 +17889,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02qyi00oroohx8z9cakrm", "revision_nr": 1, "created": 1697467087101, "modified": 1697467087101 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qyi00oroohx8z9cakrm", + "revision_nr": 1, + "created": 1697467087101, + "modified": 1697467087101 + } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684102091531/description", @@ -14055,7 +17911,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684102091531/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qyo00owoohx5r9d8wrl", "revision_nr": 1, "created": 1697467087106, "modified": 1697467087106 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qyo00owoohx5r9d8wrl", + "revision_nr": 1, + "created": 1697467087106, + "modified": 1697467087106 + } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684102091531", @@ -14069,15 +17934,30 @@ "total_amount": 150, "history_id": 1684102091531, "id": 1684102091531, - "date_created": { "type": 6, "value": 1684102091531 }, - "date_last_updated": { "type": 6, "value": 1684102990115 }, - "date_of_expiration": { "type": 6, "value": 1686694091531 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684102990115 }, - "money_release_date": { "type": 6, "value": 1684102990115 }, + "date_created": { + "type": 6, + "value": 1684102091531 + }, + "date_last_updated": { + "type": 6, + "value": 1684102990115 + }, + "date_of_expiration": { + "type": 6, + "value": 1686694091531 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684102990115 + }, + "money_release_date": { + "type": 6, + "value": 1684102990115 + }, "money_release_status": "approved", "wasDebited": true }, @@ -14123,9 +18003,18 @@ "original_amount": 730609, "total_amount": 730609, "id": 1684624257232, - "date_created": { "type": 6, "value": 1684624257232 }, - "date_last_updated": { "type": 6, "value": 1684624257232 }, - "date_of_expiration": { "type": 6, "value": 1684624257232 }, + "date_created": { + "type": 6, + "value": 1684624257232 + }, + "date_last_updated": { + "type": 6, + "value": 1684624257232 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624257232 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -14186,9 +18075,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687113576960, - "date_created": { "type": 6, "value": 1687113576960 }, - "date_last_updated": { "type": 6, "value": 1687113576960 }, - "date_of_expiration": { "type": 6, "value": 1702924776960 }, + "date_created": { + "type": 6, + "value": 1687113576960 + }, + "date_last_updated": { + "type": 6, + "value": 1687113576960 + }, + "date_of_expiration": { + "type": 6, + "value": 1702924776960 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -14249,9 +18147,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687113714689, - "date_created": { "type": 6, "value": 1687113714689 }, - "date_last_updated": { "type": 6, "value": 1687113714689 }, - "date_of_expiration": { "type": 6, "value": 1718736114689 }, + "date_created": { + "type": 6, + "value": 1687113714689 + }, + "date_last_updated": { + "type": 6, + "value": 1687113714689 + }, + "date_of_expiration": { + "type": 6, + "value": 1718736114689 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -14311,9 +18218,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687113759469, - "date_created": { "type": 6, "value": 1687113759469 }, - "date_last_updated": { "type": 6, "value": 1687113759469 }, - "date_of_expiration": { "type": 6, "value": 1750272159469 }, + "date_created": { + "type": 6, + "value": 1687113759469 + }, + "date_last_updated": { + "type": 6, + "value": 1687113759469 + }, + "date_of_expiration": { + "type": 6, + "value": 1750272159469 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -14373,9 +18289,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687313544564, - "date_created": { "type": 6, "value": 1687313544564 }, - "date_last_updated": { "type": 6, "value": 1687313544564 }, - "date_of_expiration": { "type": 6, "value": 1750471944564 }, + "date_created": { + "type": 6, + "value": 1687313544564 + }, + "date_last_updated": { + "type": 6, + "value": 1687313544564 + }, + "date_of_expiration": { + "type": 6, + "value": 1750471944564 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -14435,9 +18360,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687313588225, - "date_created": { "type": 6, "value": 1687313588225 }, - "date_last_updated": { "type": 6, "value": 1687313588225 }, - "date_of_expiration": { "type": 6, "value": 1718935988225 }, + "date_created": { + "type": 6, + "value": 1687313588225 + }, + "date_last_updated": { + "type": 6, + "value": 1687313588225 + }, + "date_of_expiration": { + "type": 6, + "value": 1718935988225 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -14497,9 +18431,18 @@ "original_amount": 713651, "total_amount": 713651, "id": 1688595606369, - "date_created": { "type": 6, "value": 1688595606369 }, - "date_last_updated": { "type": 6, "value": 1688595606369 }, - "date_of_expiration": { "type": 6, "value": 1691274006369 }, + "date_created": { + "type": 6, + "value": 1688595606369 + }, + "date_last_updated": { + "type": 6, + "value": 1688595606369 + }, + "date_of_expiration": { + "type": 6, + "value": 1691274006369 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -14568,9 +18511,18 @@ "total_amount": 727924.02, "id": 1691274110709, "history_id": 1691274110709, - "date_created": { "type": 6, "value": 1691274110709 }, - "date_last_updated": { "type": 6, "value": 1691274110709 }, - "date_of_expiration": { "type": 6, "value": 1691274110709 }, + "date_created": { + "type": 6, + "value": 1691274110709 + }, + "date_last_updated": { + "type": 6, + "value": 1691274110709 + }, + "date_of_expiration": { + "type": 6, + "value": 1691274110709 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -14586,13 +18538,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history", - "content": { "type": 1, "value": {}, "revision": "lnt02qyl00otoohx6wmm55pe", "revision_nr": 1, "created": 1697467087160, "modified": 1697467087160 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qyl00otoohx6wmm55pe", + "revision_nr": 1, + "created": 1697467087160, + "modified": 1697467087160 + } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02r0900ploohx7g8g7x7v", "revision_nr": 1, "created": 1697467087162, @@ -14603,7 +18566,16 @@ "path": "ivipcoin-db::__movement_wallet__/015094733487976298", "content": { "type": 1, - "value": { "dataModificacao": 1684102027321, "dateValidity": 1684102027322, "totalValue": 1.39, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697252400000 } }, + "value": { + "dataModificacao": 1684102027321, + "dateValidity": 1684102027322, + "totalValue": 1.39, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697252400000 + } + }, "revision": "lnt02qyi00oqoohx8ria4c2o", "revision_nr": 1, "created": 1697467087164, @@ -14614,7 +18586,11 @@ "path": "ivipcoin-db::__movement_wallet__/016159398553157178/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02r0c00pnoohx3urpbavr", "revision_nr": 1, "created": 1697467087166, @@ -14625,7 +18601,14 @@ "path": "ivipcoin-db::__movement_wallet__/016159398553157178", "content": { "type": 1, - "value": { "dataModificacao": 1688737390323, "dateValidity": 1688737390323, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1688737390323, + "dateValidity": 1688737390323, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02r0c00pmoohx8bp90jkf", "revision_nr": 1, "created": 1697467087168, @@ -14636,7 +18619,11 @@ "path": "ivipcoin-db::__movement_wallet__/016475686934047440/balances/BRL", "content": { "type": 1, - "value": { "symbol": "BRL", "available": "0.00000000", "value": 0 }, + "value": { + "symbol": "BRL", + "available": "0.00000000", + "value": 0 + }, "revision": "lnt02r0g00pqoohx2k4s4geg", "revision_nr": 1, "created": 1697467087170, @@ -14647,7 +18634,11 @@ "path": "ivipcoin-db::__movement_wallet__/016475686934047440/balances/IVIP", "content": { "type": 1, - "value": { "symbol": "IVIP", "available": "0.00000000", "value": 0 }, + "value": { + "symbol": "IVIP", + "available": "0.00000000", + "value": 0 + }, "revision": "lnt02r0i00proohx78pd0sd3", "revision_nr": 1, "created": 1697467087173, @@ -14656,7 +18647,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02r0g00ppoohxbi1mc3r8", "revision_nr": 1, "created": 1697467087175, "modified": 1697467087175 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02r0g00ppoohxbi1mc3r8", + "revision_nr": 1, + "created": 1697467087175, + "modified": 1697467087175 + } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684198299992/description", @@ -14671,7 +18669,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684198299992/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r0p00pvoohxgv0rd57a", "revision_nr": 1, "created": 1697467087179, "modified": 1697467087179 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r0p00pvoohxgv0rd57a", + "revision_nr": 1, + "created": 1697467087179, + "modified": 1697467087179 + } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684198299992", @@ -14685,14 +18692,26 @@ "total_amount": 1000, "history_id": 1684198299992, "id": 1684198299992, - "date_created": { "type": 6, "value": 1684198299992 }, - "date_last_updated": { "type": 6, "value": 1684558235747 }, - "date_of_expiration": { "type": 6, "value": 1686790299992 }, + "date_created": { + "type": 6, + "value": 1684198299992 + }, + "date_last_updated": { + "type": 6, + "value": 1684558235747 + }, + "date_of_expiration": { + "type": 6, + "value": 1686790299992 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1684558235747 }, + "money_release_date": { + "type": 6, + "value": 1684558235747 + }, "money_release_status": "rejected" }, "revision": "lnt02r0n00ptoohxdj6odyzn", @@ -14714,7 +18733,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684201414429/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r0v00pyoohx5memh6kq", "revision_nr": 1, "created": 1697467087185, "modified": 1697467087185 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r0v00pyoohx5memh6kq", + "revision_nr": 1, + "created": 1697467087185, + "modified": 1697467087185 + } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684201414429", @@ -14728,15 +18756,30 @@ "total_amount": 1000, "history_id": 1684201414429, "id": 1684201414429, - "date_created": { "type": 6, "value": 1684201414429 }, - "date_last_updated": { "type": 6, "value": 1684246130715 }, - "date_of_expiration": { "type": 6, "value": 1686793414429 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684246130715 }, - "money_release_date": { "type": 6, "value": 1684246130715 }, + "date_created": { + "type": 6, + "value": 1684201414429 + }, + "date_last_updated": { + "type": 6, + "value": 1684246130715 + }, + "date_of_expiration": { + "type": 6, + "value": 1686793414429 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684246130715 + }, + "money_release_date": { + "type": 6, + "value": 1684246130715 + }, "money_release_status": "approved", "wasDebited": true }, @@ -14759,7 +18802,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684440954255/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r1100q1oohx2kkba2q2", "revision_nr": 1, "created": 1697467087191, "modified": 1697467087191 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r1100q1oohx2kkba2q2", + "revision_nr": 1, + "created": 1697467087191, + "modified": 1697467087191 + } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684440954255", @@ -14773,15 +18825,30 @@ "total_amount": 600, "history_id": 1684440954255, "id": 1684440954255, - "date_created": { "type": 6, "value": 1684440954255 }, - "date_last_updated": { "type": 6, "value": 1684444155806 }, - "date_of_expiration": { "type": 6, "value": 1687032954255 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684444155806 }, - "money_release_date": { "type": 6, "value": 1684444155806 }, + "date_created": { + "type": 6, + "value": 1684440954255 + }, + "date_last_updated": { + "type": 6, + "value": 1684444155806 + }, + "date_of_expiration": { + "type": 6, + "value": 1687032954255 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684444155806 + }, + "money_release_date": { + "type": 6, + "value": 1684444155806 + }, "money_release_status": "approved", "wasDebited": true }, @@ -14827,9 +18894,18 @@ "original_amount": 7793170, "total_amount": 7793170, "id": 1684626826140, - "date_created": { "type": 6, "value": 1684626826140 }, - "date_last_updated": { "type": 6, "value": 1684626826140 }, - "date_of_expiration": { "type": 6, "value": 1684626826140 }, + "date_created": { + "type": 6, + "value": 1684626826140 + }, + "date_last_updated": { + "type": 6, + "value": 1684626826140 + }, + "date_of_expiration": { + "type": 6, + "value": 1684626826140 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -14857,7 +18933,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685396913259/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r1b00q6oohxewk9hgsc", "revision_nr": 1, "created": 1697467087201, "modified": 1697467087201 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r1b00q6oohxewk9hgsc", + "revision_nr": 1, + "created": 1697467087201, + "modified": 1697467087201 + } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685396913259", @@ -14871,9 +18956,18 @@ "total_amount": 788564, "history_id": 1685396913259, "id": 1685396913259, - "date_created": { "type": 6, "value": 1685396913259 }, - "date_last_updated": { "type": 6, "value": 1685396913259 }, - "date_of_expiration": { "type": 6, "value": 1685396913259 }, + "date_created": { + "type": 6, + "value": 1685396913259 + }, + "date_last_updated": { + "type": 6, + "value": 1685396913259 + }, + "date_of_expiration": { + "type": 6, + "value": 1685396913259 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -14898,7 +18992,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470076106/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r1h00q9oohxgx2jc965", "revision_nr": 1, "created": 1697467087207, "modified": 1697467087207 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r1h00q9oohxgx2jc965", + "revision_nr": 1, + "created": 1697467087207, + "modified": 1697467087207 + } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470076106", @@ -14912,14 +19015,26 @@ "total_amount": 788564, "history_id": 1685470076106, "id": 1685470076106, - "date_created": { "type": 6, "value": 1685470076106 }, - "date_last_updated": { "type": 6, "value": 1685535131930 }, - "date_of_expiration": { "type": 6, "value": 1685470076106 }, + "date_created": { + "type": 6, + "value": 1685470076106 + }, + "date_last_updated": { + "type": 6, + "value": 1685535131930 + }, + "date_of_expiration": { + "type": 6, + "value": 1685470076106 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": { "type": 6, "value": 1685535131930 }, + "money_release_date": { + "type": 6, + "value": 1685535131930 + }, "money_release_status": "rejected" }, "revision": "lnt02r1f00q7oohx5vl8327k", @@ -14941,7 +19056,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470615415/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r1n00qcoohxgjslhx2j", "revision_nr": 1, "created": 1697467087214, "modified": 1697467087214 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r1n00qcoohxgjslhx2j", + "revision_nr": 1, + "created": 1697467087214, + "modified": 1697467087214 + } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470615415", @@ -14955,15 +19079,30 @@ "total_amount": 7793170, "history_id": 1685470615415, "id": 1685470615415, - "date_created": { "type": 6, "value": 1685470615415 }, - "date_last_updated": { "type": 6, "value": 1685537125835 }, - "date_of_expiration": { "type": 6, "value": 1685470615415 }, + "date_created": { + "type": 6, + "value": 1685470615415 + }, + "date_last_updated": { + "type": 6, + "value": 1685537125835 + }, + "date_of_expiration": { + "type": 6, + "value": 1685470615415 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1685537125835 }, - "money_release_date": { "type": 6, "value": 1685537125835 }, + "date_approved": { + "type": 6, + "value": 1685537125835 + }, + "money_release_date": { + "type": 6, + "value": 1685537125835 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -14986,7 +19125,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685537035322/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r1u00qfoohx42lt90hd", "revision_nr": 1, "created": 1697467087220, "modified": 1697467087220 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r1u00qfoohx42lt90hd", + "revision_nr": 1, + "created": 1697467087220, + "modified": 1697467087220 + } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685537035322", @@ -15000,14 +19148,26 @@ "total_amount": 7793170, "history_id": 1685537035322, "id": 1685537035322, - "date_created": { "type": 6, "value": 1685537035322 }, - "date_last_updated": { "type": 6, "value": 1685537068819 }, - "date_of_expiration": { "type": 6, "value": 1685537035322 }, + "date_created": { + "type": 6, + "value": 1685537035322 + }, + "date_last_updated": { + "type": 6, + "value": 1685537068819 + }, + "date_of_expiration": { + "type": 6, + "value": 1685537035322 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": { "type": 6, "value": 1685537068819 }, + "money_release_date": { + "type": 6, + "value": 1685537068819 + }, "money_release_status": "rejected" }, "revision": "lnt02r1s00qdoohxaiit5fup", @@ -15018,13 +19178,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history", - "content": { "type": 1, "value": {}, "revision": "lnt02r0n00psoohxd5jx735f", "revision_nr": 1, "created": 1697467087225, "modified": 1697467087225 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02r0n00psoohxd5jx735f", + "revision_nr": 1, + "created": 1697467087225, + "modified": 1697467087225 + } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02r2100qgoohxc4227rz0", "revision_nr": 1, "created": 1697467087227, @@ -15035,7 +19206,12 @@ "path": "ivipcoin-db::__movement_wallet__/016475686934047440", "content": { "type": 1, - "value": { "dataModificacao": 1684198152404, "dateValidity": 1684198152404, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684198152404, + "dateValidity": 1684198152404, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02r0g00pooohx2dx7407i", "revision_nr": 1, "created": 1697467087229, @@ -15046,7 +19222,11 @@ "path": "ivipcoin-db::__movement_wallet__/017170382309708910/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02r2500qioohx88649nyg", "revision_nr": 1, "created": 1697467087231, @@ -15057,7 +19237,14 @@ "path": "ivipcoin-db::__movement_wallet__/017170382309708910", "content": { "type": 1, - "value": { "dataModificacao": 1685395419731, "dateValidity": 1685395419731, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1685395419731, + "dateValidity": 1685395419731, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02r2500qhoohx2xpvfhu2", "revision_nr": 1, "created": 1697467087233, @@ -15068,7 +19255,11 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062/balances/IVIP", "content": { "type": 1, - "value": { "available": "0.74000000", "symbol": "IVIP", "value": 0.000077 }, + "value": { + "available": "0.74000000", + "symbol": "IVIP", + "value": 0.000077 + }, "revision": "lnt02r2900qloohx194regid", "revision_nr": 1, "created": 1697467087235, @@ -15077,7 +19268,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02r2900qkoohxcj9a3tmv", "revision_nr": 1, "created": 1697467087237, "modified": 1697467087237 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02r2900qkoohxcj9a3tmv", + "revision_nr": 1, + "created": 1697467087237, + "modified": 1697467087237 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1683998693589/description", @@ -15092,7 +19290,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1683998693589/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r2h00qpoohx1vbxc3xd", "revision_nr": 1, "created": 1697467087243, "modified": 1697467087243 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r2h00qpoohx1vbxc3xd", + "revision_nr": 1, + "created": 1697467087243, + "modified": 1697467087243 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1683998693589", @@ -15106,15 +19313,30 @@ "total_amount": 500, "history_id": 1683998693589, "id": 1683998693589, - "date_created": { "type": 6, "value": 1683998693589 }, - "date_last_updated": { "type": 6, "value": 1684000354399 }, - "date_of_expiration": { "type": 6, "value": 1686590693589 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684000354399 }, - "money_release_date": { "type": 6, "value": 1684000354399 }, + "date_created": { + "type": 6, + "value": 1683998693589 + }, + "date_last_updated": { + "type": 6, + "value": 1684000354399 + }, + "date_of_expiration": { + "type": 6, + "value": 1686590693589 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684000354399 + }, + "money_release_date": { + "type": 6, + "value": 1684000354399 + }, "money_release_status": "approved", "wasDebited": true }, @@ -15139,7 +19361,11 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt02r2p00quoohx2apodme3", "revision_nr": 1, "created": 1697467087251, @@ -15148,11 +19374,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02r2p00qtoohxcg8e7wwe", "revision_nr": 1, "created": 1697467087253, "modified": 1697467087253 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02r2p00qtoohxcg8e7wwe", + "revision_nr": 1, + "created": 1697467087253, + "modified": 1697467087253 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388/details", - "content": { "type": 1, "value": {}, "revision": "lnt02r2o00qsoohx90wdcicd", "revision_nr": 1, "created": 1697467087255, "modified": 1697467087255 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02r2o00qsoohx90wdcicd", + "revision_nr": 1, + "created": 1697467087255, + "modified": 1697467087255 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388", @@ -15166,9 +19406,18 @@ "total_amount": 1100, "history_id": 1684003059388, "id": 1684003059388, - "date_created": { "type": 6, "value": 1684003059388 }, - "date_last_updated": { "type": 6, "value": 1684003059388 }, - "date_of_expiration": { "type": 6, "value": 1686595059388 }, + "date_created": { + "type": 6, + "value": 1684003059388 + }, + "date_last_updated": { + "type": 6, + "value": 1684003059388 + }, + "date_of_expiration": { + "type": 6, + "value": 1686595059388 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -15217,9 +19466,18 @@ "original_amount": 8106588, "total_amount": 8106588, "id": 1684018960001, - "date_created": { "type": 6, "value": 1684018960001 }, - "date_last_updated": { "type": 6, "value": 1684018960001 }, - "date_of_expiration": { "type": 6, "value": 1684018960001 }, + "date_created": { + "type": 6, + "value": 1684018960001 + }, + "date_last_updated": { + "type": 6, + "value": 1684018960001 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018960001 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -15247,7 +19505,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684106238297/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r3300qzoohx3y9lg5db", "revision_nr": 1, "created": 1697467087265, "modified": 1697467087265 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r3300qzoohx3y9lg5db", + "revision_nr": 1, + "created": 1697467087265, + "modified": 1697467087265 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684106238297", @@ -15261,15 +19528,30 @@ "total_amount": 100, "history_id": 1684106238297, "id": 1684106238297, - "date_created": { "type": 6, "value": 1684106238297 }, - "date_last_updated": { "type": 6, "value": 1684239280222 }, - "date_of_expiration": { "type": 6, "value": 1686698238297 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684239280222 }, - "money_release_date": { "type": 6, "value": 1684239280222 }, + "date_created": { + "type": 6, + "value": 1684106238297 + }, + "date_last_updated": { + "type": 6, + "value": 1684239280222 + }, + "date_of_expiration": { + "type": 6, + "value": 1686698238297 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684239280222 + }, + "money_release_date": { + "type": 6, + "value": 1684239280222 + }, "money_release_status": "approved", "wasDebited": true }, @@ -15315,9 +19597,18 @@ "original_amount": 487804, "total_amount": 487804, "id": 1684631103258, - "date_created": { "type": 6, "value": 1684631103258 }, - "date_last_updated": { "type": 6, "value": 1684631103258 }, - "date_of_expiration": { "type": 6, "value": 1684631103258 }, + "date_created": { + "type": 6, + "value": 1684631103258 + }, + "date_last_updated": { + "type": 6, + "value": 1684631103258 + }, + "date_of_expiration": { + "type": 6, + "value": 1684631103258 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -15345,7 +19636,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1685388293760/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r3d00r4oohx5zci5965", "revision_nr": 1, "created": 1697467087276, "modified": 1697467087276 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r3d00r4oohx5zci5965", + "revision_nr": 1, + "created": 1697467087276, + "modified": 1697467087276 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1685388293760", @@ -15359,9 +19659,18 @@ "total_amount": 4297196, "history_id": 1685388293760, "id": 1685388293760, - "date_created": { "type": 6, "value": 1685388293760 }, - "date_last_updated": { "type": 6, "value": 1685388293760 }, - "date_of_expiration": { "type": 6, "value": 1685388293760 }, + "date_created": { + "type": 6, + "value": 1685388293760 + }, + "date_last_updated": { + "type": 6, + "value": 1685388293760 + }, + "date_of_expiration": { + "type": 6, + "value": 1685388293760 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -15386,7 +19695,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686323712726/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r3k00r7oohx4no5adt7", "revision_nr": 1, "created": 1697467087282, "modified": 1697467087282 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r3k00r7oohx4no5adt7", + "revision_nr": 1, + "created": 1697467087282, + "modified": 1697467087282 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686323712726", @@ -15400,15 +19718,30 @@ "total_amount": 250, "history_id": 1686323712726, "id": 1686323712726, - "date_created": { "type": 6, "value": 1686323712726 }, - "date_last_updated": { "type": 6, "value": 1686591519918 }, - "date_of_expiration": { "type": 6, "value": 1688915712726 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1686591519918 }, - "money_release_date": { "type": 6, "value": 1686591519918 }, + "date_created": { + "type": 6, + "value": 1686323712726 + }, + "date_last_updated": { + "type": 6, + "value": 1686591519918 + }, + "date_of_expiration": { + "type": 6, + "value": 1688915712726 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686591519918 + }, + "money_release_date": { + "type": 6, + "value": 1686591519918 + }, "money_release_status": "approved", "wasDebited": true }, @@ -15468,9 +19801,18 @@ "total_amount": 220, "id": 1686591730981, "contract_id": "1684003059388", - "date_created": { "type": 6, "value": 1686591730981 }, - "date_last_updated": { "type": 6, "value": 1686591730981 }, - "date_of_expiration": { "type": 6, "value": 1686591730981 }, + "date_created": { + "type": 6, + "value": 1686591730981 + }, + "date_last_updated": { + "type": 6, + "value": 1686591730981 + }, + "date_of_expiration": { + "type": 6, + "value": 1686591730981 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -15497,7 +19839,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688314787645/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r3x00rdoohx8t6m2yg2", "revision_nr": 1, "created": 1697467087295, "modified": 1697467087295 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r3x00rdoohx8t6m2yg2", + "revision_nr": 1, + "created": 1697467087295, + "modified": 1697467087295 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688314787645", @@ -15511,15 +19862,30 @@ "total_amount": 200, "history_id": 1688314787645, "id": 1688314787645, - "date_created": { "type": 6, "value": 1688314787645 }, - "date_last_updated": { "type": 6, "value": 1688315014952 }, - "date_of_expiration": { "type": 6, "value": 1690906787645 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1688315014952 }, - "money_release_date": { "type": 6, "value": 1688315014952 }, + "date_created": { + "type": 6, + "value": 1688314787645 + }, + "date_last_updated": { + "type": 6, + "value": 1688315014952 + }, + "date_of_expiration": { + "type": 6, + "value": 1690906787645 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1688315014952 + }, + "money_release_date": { + "type": 6, + "value": 1688315014952 + }, "money_release_status": "approved", "wasDebited": true }, @@ -15579,9 +19945,18 @@ "total_amount": 220, "id": 1688315152944, "contract_id": "1684003059388", - "date_created": { "type": 6, "value": 1688315152944 }, - "date_last_updated": { "type": 6, "value": 1688315152944 }, - "date_of_expiration": { "type": 6, "value": 1688315152944 }, + "date_created": { + "type": 6, + "value": 1688315152944 + }, + "date_last_updated": { + "type": 6, + "value": 1688315152944 + }, + "date_of_expiration": { + "type": 6, + "value": 1688315152944 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -15641,9 +20016,18 @@ "original_amount": 344736, "total_amount": 344736, "id": 1688426195717, - "date_created": { "type": 6, "value": 1688426195717 }, - "date_last_updated": { "type": 6, "value": 1688426195717 }, - "date_of_expiration": { "type": 6, "value": 1691104595717 }, + "date_created": { + "type": 6, + "value": 1688426195717 + }, + "date_last_updated": { + "type": 6, + "value": 1688426195717 + }, + "date_of_expiration": { + "type": 6, + "value": 1691104595717 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -15671,7 +20055,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689095226322/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r4i00rmoohxh3tbcbid", "revision_nr": 1, "created": 1697467087316, "modified": 1697467087316 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r4i00rmoohxh3tbcbid", + "revision_nr": 1, + "created": 1697467087316, + "modified": 1697467087316 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689095226322", @@ -15685,15 +20078,30 @@ "total_amount": 430, "history_id": 1689095226322, "id": 1689095226322, - "date_created": { "type": 6, "value": 1689095226322 }, - "date_last_updated": { "type": 6, "value": 1689099370658 }, - "date_of_expiration": { "type": 6, "value": 1691687226322 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689099370658 }, - "money_release_date": { "type": 6, "value": 1689099370658 }, + "date_created": { + "type": 6, + "value": 1689095226322 + }, + "date_last_updated": { + "type": 6, + "value": 1689099370658 + }, + "date_of_expiration": { + "type": 6, + "value": 1691687226322 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689099370658 + }, + "money_release_date": { + "type": 6, + "value": 1689099370658 + }, "money_release_status": "approved", "wasDebited": true }, @@ -15739,9 +20147,18 @@ "original_amount": 284782, "total_amount": 284782, "id": 1689349679189, - "date_created": { "type": 6, "value": 1689349679189 }, - "date_last_updated": { "type": 6, "value": 1689349679189 }, - "date_of_expiration": { "type": 6, "value": 1689349679189 }, + "date_created": { + "type": 6, + "value": 1689349679189 + }, + "date_last_updated": { + "type": 6, + "value": 1689349679189 + }, + "date_of_expiration": { + "type": 6, + "value": 1689349679189 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -15769,7 +20186,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349971065/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r4s00rroohx08t1bvqd", "revision_nr": 1, "created": 1697467087326, "modified": 1697467087326 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r4s00rroohx08t1bvqd", + "revision_nr": 1, + "created": 1697467087326, + "modified": 1697467087326 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349971065", @@ -15783,15 +20209,30 @@ "total_amount": 284782, "history_id": 1689349971065, "id": 1689349971065, - "date_created": { "type": 6, "value": 1689349971065 }, - "date_last_updated": { "type": 6, "value": 1689350098919 }, - "date_of_expiration": { "type": 6, "value": 1689349971065 }, + "date_created": { + "type": 6, + "value": 1689349971065 + }, + "date_last_updated": { + "type": 6, + "value": 1689350098919 + }, + "date_of_expiration": { + "type": 6, + "value": 1689349971065 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1689350098919 }, - "money_release_date": { "type": 6, "value": 1689350098919 }, + "date_approved": { + "type": 6, + "value": 1689350098919 + }, + "money_release_date": { + "type": 6, + "value": 1689350098919 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -15847,9 +20288,18 @@ "original_amount": 500000, "total_amount": 500000, "id": 1689794977578, - "date_created": { "type": 6, "value": 1689794977578 }, - "date_last_updated": { "type": 6, "value": 1689794977578 }, - "date_of_expiration": { "type": 6, "value": 1752953377578 }, + "date_created": { + "type": 6, + "value": 1689794977578 + }, + "date_last_updated": { + "type": 6, + "value": 1689794977578 + }, + "date_of_expiration": { + "type": 6, + "value": 1752953377578 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -15876,7 +20326,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689796488476/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r5500rxoohxau5v2fb3", "revision_nr": 1, "created": 1697467087339, "modified": 1697467087339 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r5500rxoohxau5v2fb3", + "revision_nr": 1, + "created": 1697467087339, + "modified": 1697467087339 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689796488476", @@ -15890,9 +20349,18 @@ "total_amount": 345419, "history_id": 1689796488476, "id": 1689796488476, - "date_created": { "type": 6, "value": 1689796488476 }, - "date_last_updated": { "type": 6, "value": 1689796488476 }, - "date_of_expiration": { "type": 6, "value": 1689796488476 }, + "date_created": { + "type": 6, + "value": 1689796488476 + }, + "date_last_updated": { + "type": 6, + "value": 1689796488476 + }, + "date_of_expiration": { + "type": 6, + "value": 1689796488476 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -15959,9 +20427,18 @@ "total_amount": 1908099, "id": 1690130150231, "history_id": 1690130150231, - "date_created": { "type": 6, "value": 1690130150231 }, - "date_last_updated": { "type": 6, "value": 1690130150231 }, - "date_of_expiration": { "type": 6, "value": 1690130150231 }, + "date_created": { + "type": 6, + "value": 1690130150231 + }, + "date_last_updated": { + "type": 6, + "value": 1690130150231 + }, + "date_of_expiration": { + "type": 6, + "value": 1690130150231 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -16030,9 +20507,18 @@ "total_amount": 1829159, "id": 1690225429559, "history_id": 1690225429559, - "date_created": { "type": 6, "value": 1690225429559 }, - "date_last_updated": { "type": 6, "value": 1690225429559 }, - "date_of_expiration": { "type": 6, "value": 1690225429559 }, + "date_created": { + "type": 6, + "value": 1690225429559 + }, + "date_last_updated": { + "type": 6, + "value": 1690225429559 + }, + "date_of_expiration": { + "type": 6, + "value": 1690225429559 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -16101,9 +20587,18 @@ "total_amount": 351630.72000000003, "id": 1691104619419, "history_id": 1691104619419, - "date_created": { "type": 6, "value": 1691104619419 }, - "date_last_updated": { "type": 6, "value": 1691104619419 }, - "date_of_expiration": { "type": 6, "value": 1691104619419 }, + "date_created": { + "type": 6, + "value": 1691104619419 + }, + "date_last_updated": { + "type": 6, + "value": 1691104619419 + }, + "date_of_expiration": { + "type": 6, + "value": 1691104619419 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16172,9 +20667,18 @@ "total_amount": 4123251, "id": 1691246155706, "history_id": 1691246155706, - "date_created": { "type": 6, "value": 1691246155706 }, - "date_last_updated": { "type": 6, "value": 1691246155706 }, - "date_of_expiration": { "type": 6, "value": 1693924555705 }, + "date_created": { + "type": 6, + "value": 1691246155706 + }, + "date_last_updated": { + "type": 6, + "value": 1691246155706 + }, + "date_of_expiration": { + "type": 6, + "value": 1693924555705 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16192,7 +20696,13 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694714218629 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694714218629 + } + }, "revision": "lnt02r6a00sfoohx2p7pcmo7", "revision_nr": 1, "created": 1697467087380, @@ -16254,16 +20764,28 @@ "total_amount": 220, "id": 1692122218629, "history_id": 1692122218629, - "date_created": { "type": 6, "value": 1692122218629 }, - "date_last_updated": { "type": 6, "value": 1692123209335 }, + "date_created": { + "type": 6, + "value": 1692122218629 + }, + "date_last_updated": { + "type": 6, + "value": 1692123209335 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1692123209335 }, - "money_release_date": { "type": 6, "value": 1692123209335 }, + "date_approved": { + "type": 6, + "value": 1692123209335 + }, + "money_release_date": { + "type": 6, + "value": 1692123209335 + }, "money_release_status": "approved", "wasDebited": true }, @@ -16323,9 +20845,18 @@ "total_amount": 220, "id": 1692210661601, "contract_id": "1684003059388", - "date_created": { "type": 6, "value": 1692210661601 }, - "date_last_updated": { "type": 6, "value": 1692210661601 }, - "date_of_expiration": { "type": 6, "value": 1692210661601 }, + "date_created": { + "type": 6, + "value": 1692210661601 + }, + "date_last_updated": { + "type": 6, + "value": 1692210661601 + }, + "date_of_expiration": { + "type": 6, + "value": 1692210661601 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -16394,9 +20925,18 @@ "total_amount": 4205716.02, "id": "1693924607794", "history_id": "1693924607794", - "date_created": { "type": 6, "value": 1693924607794 }, - "date_last_updated": { "type": 6, "value": 1693924607794 }, - "date_of_expiration": { "type": 6, "value": 1693924607794 }, + "date_created": { + "type": 6, + "value": 1693924607794 + }, + "date_last_updated": { + "type": 6, + "value": 1693924607794 + }, + "date_of_expiration": { + "type": 6, + "value": 1693924607794 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16436,7 +20976,11 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 107596.65 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 107596.65 + }, "revision": "lnt02r7600svoohx9rywabol", "revision_nr": 1, "created": 1697467087412, @@ -16445,7 +20989,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02r7600suoohx4jfpdx61", "revision_nr": 1, "created": 1697467087415, "modified": 1697467087415 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02r7600suoohx4jfpdx61", + "revision_nr": 1, + "created": 1697467087415, + "modified": 1697467087415 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details", @@ -16479,17 +21030,32 @@ "total_amount": 3478958.35, "id": "1694019139358", "history_id": "1694019139358", - "date_created": { "type": 6, "value": 1694019139358 }, - "date_last_updated": { "type": 6, "value": 1694471002474 }, - "date_of_expiration": { "type": 6, "value": 1694019139358 }, + "date_created": { + "type": 6, + "value": 1694019139358 + }, + "date_last_updated": { + "type": 6, + "value": 1694471002474 + }, + "date_of_expiration": { + "type": 6, + "value": 1694019139358 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1694471002474 }, - "money_release_date": { "type": 6, "value": 1694471002474 }, + "date_approved": { + "type": 6, + "value": 1694471002474 + }, + "money_release_date": { + "type": 6, + "value": 1694471002474 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -16554,16 +21120,28 @@ "total_amount": 13248, "id": "1694530925477", "history_id": "1694530925477", - "date_created": { "type": 6, "value": 1694530925477 }, - "date_last_updated": { "type": 6, "value": 1696462319830 }, - "date_of_expiration": { "type": 6, "value": 1697122925475 }, + "date_created": { + "type": 6, + "value": 1694530925477 + }, + "date_last_updated": { + "type": 6, + "value": 1696462319830 + }, + "date_of_expiration": { + "type": 6, + "value": 1697122925475 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": { "type": 6, "value": 1696462319830 }, + "money_release_date": { + "type": 6, + "value": 1696462319830 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -16577,7 +21155,13 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697151249010 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697151249010 + } + }, "revision": "lnt02r7n00t1oohxdn5540xq", "revision_nr": 1, "created": 1697467087429, @@ -16639,16 +21223,28 @@ "total_amount": 220, "id": "1694559249011", "history_id": "1694559249011", - "date_created": { "type": 6, "value": 1694559249011 }, - "date_last_updated": { "type": 6, "value": 1694560255083 }, + "date_created": { + "type": 6, + "value": 1694559249011 + }, + "date_last_updated": { + "type": 6, + "value": 1694560255083 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694560255083 }, - "money_release_date": { "type": 6, "value": 1694560255083 }, + "date_approved": { + "type": 6, + "value": 1694560255083 + }, + "money_release_date": { + "type": 6, + "value": 1694560255083 + }, "money_release_status": "approved", "wasDebited": true }, @@ -16715,9 +21311,18 @@ "total_amount": 220, "id": "1694560328887", "history_id": "1694560328887", - "date_created": { "type": 6, "value": 1694560328887 }, - "date_last_updated": { "type": 6, "value": 1694560328887 }, - "date_of_expiration": { "type": 6, "value": 1694560328887 }, + "date_created": { + "type": 6, + "value": 1694560328887 + }, + "date_last_updated": { + "type": 6, + "value": 1694560328887 + }, + "date_of_expiration": { + "type": 6, + "value": 1694560328887 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -16786,16 +21391,28 @@ "total_amount": 4583948, "id": "1695164776163", "history_id": "1695164776163", - "date_created": { "type": 6, "value": 1695164776163 }, - "date_last_updated": { "type": 6, "value": 1695678285837 }, - "date_of_expiration": { "type": 6, "value": 1710889576135 }, + "date_created": { + "type": 6, + "value": 1695164776163 + }, + "date_last_updated": { + "type": 6, + "value": 1695678285837 + }, + "date_of_expiration": { + "type": 6, + "value": 1710889576135 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": { "type": 6, "value": 1695678285837 }, + "money_release_date": { + "type": 6, + "value": 1695678285837 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -16861,9 +21478,18 @@ "total_amount": 4597196, "id": "1696551378554", "history_id": "1696551378554", - "date_created": { "type": 6, "value": 1696551378554 }, - "date_last_updated": { "type": 6, "value": 1696551378554 }, - "date_of_expiration": { "type": 6, "value": 1699229778481 }, + "date_created": { + "type": 6, + "value": 1696551378554 + }, + "date_last_updated": { + "type": 6, + "value": 1696551378554 + }, + "date_of_expiration": { + "type": 6, + "value": 1699229778481 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16881,7 +21507,13 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699792000740 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699792000740 + } + }, "revision": "lnt02r8p00tioohx9gmw1ykx", "revision_nr": 1, "created": 1697467087468, @@ -16944,16 +21576,28 @@ "total_amount": 220, "id": "1697200000740", "history_id": "1697200000740", - "date_created": { "type": 6, "value": 1697200000740 }, - "date_last_updated": { "type": 6, "value": 1697203184767 }, + "date_created": { + "type": 6, + "value": 1697200000740 + }, + "date_last_updated": { + "type": 6, + "value": 1697203184767 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1697203184767 }, - "money_release_date": { "type": 6, "value": 1697203184767 }, + "date_approved": { + "type": 6, + "value": 1697203184767 + }, + "money_release_date": { + "type": 6, + "value": 1697203184767 + }, "money_release_status": "approved", "wasDebited": true }, @@ -17021,9 +21665,18 @@ "total_amount": 220, "id": "1697203305717", "history_id": "1697203305717", - "date_created": { "type": 6, "value": 1697203305717 }, - "date_last_updated": { "type": 6, "value": 1697203305717 }, - "date_of_expiration": { "type": 6, "value": 1697203305717 }, + "date_created": { + "type": 6, + "value": 1697203305717 + }, + "date_last_updated": { + "type": 6, + "value": 1697203305717 + }, + "date_of_expiration": { + "type": 6, + "value": 1697203305717 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -17039,7 +21692,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history", - "content": { "type": 1, "value": {}, "revision": "lnt02r2d00qmoohxdjzied7l", "revision_nr": 1, "created": 1697467087488, "modified": 1697467087488 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02r2d00qmoohxdjzied7l", + "revision_nr": 1, + "created": 1697467087488, + "modified": 1697467087488 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388/description", @@ -17056,7 +21716,11 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt02r9e00twoohxdqguhsii", "revision_nr": 1, "created": 1697467087493, @@ -17065,7 +21729,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02r9e00tvoohxfbhubl7y", "revision_nr": 1, "created": 1697467087495, "modified": 1697467087495 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02r9e00tvoohxfbhubl7y", + "revision_nr": 1, + "created": 1697467087495, + "modified": 1697467087495 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388", @@ -17078,7 +21749,10 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1684003059388 }, + "date_created": { + "type": 6, + "value": 1684003059388 + }, "history_id": 1684003059388, "currency_id": "BRL", "status": "paid" @@ -17091,7 +21765,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt02r9c00tsoohx81134j5f", "revision_nr": 1, "created": 1697467087499, "modified": 1697467087499 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02r9c00tsoohx81134j5f", + "revision_nr": 1, + "created": 1697467087499, + "modified": 1697467087499 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388/description", @@ -17108,7 +21789,11 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt02r9p00u1oohxfakigzrd", "revision_nr": 1, "created": 1697467087504, @@ -17117,7 +21802,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02r9p00u0oohx41uzhfs4", "revision_nr": 1, "created": 1697467087506, "modified": 1697467087506 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02r9p00u0oohx41uzhfs4", + "revision_nr": 1, + "created": 1697467087506, + "modified": 1697467087506 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388", @@ -17130,7 +21822,10 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1684003059388 }, + "date_created": { + "type": 6, + "value": 1684003059388 + }, "history_id": 1684003059388, "currency_id": "BRL", "status": "paid" @@ -17143,7 +21838,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt02r9n00txoohxc90a3vk7", "revision_nr": 1, "created": 1697467087510, "modified": 1697467087510 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02r9n00txoohxc90a3vk7", + "revision_nr": 1, + "created": 1697467087510, + "modified": 1697467087510 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388/description", @@ -17160,7 +21862,11 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt02ra000u6oohx52i8dzhb", "revision_nr": 1, "created": 1697467087514, @@ -17169,7 +21875,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02ra000u5oohx6w6e6lnb", "revision_nr": 1, "created": 1697467087517, "modified": 1697467087517 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02ra000u5oohx6w6e6lnb", + "revision_nr": 1, + "created": 1697467087517, + "modified": 1697467087517 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388", @@ -17182,7 +21895,10 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1684003059388 }, + "date_created": { + "type": 6, + "value": 1684003059388 + }, "history_id": 1684003059388, "currency_id": "BRL", "status": "paid" @@ -17195,7 +21911,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308", - "content": { "type": 1, "value": {}, "revision": "lnt02r9y00u2oohx2ixc0ry2", "revision_nr": 1, "created": 1697467087521, "modified": 1697467087521 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02r9y00u2oohx2ixc0ry2", + "revision_nr": 1, + "created": 1697467087521, + "modified": 1697467087521 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388/description", @@ -17212,7 +21935,11 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt02rac00uboohxenih3094", "revision_nr": 1, "created": 1697467087526, @@ -17221,7 +21948,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02rac00uaoohx0ir95jdd", "revision_nr": 1, "created": 1697467087528, "modified": 1697467087528 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02rac00uaoohx0ir95jdd", + "revision_nr": 1, + "created": 1697467087528, + "modified": 1697467087528 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388", @@ -17234,11 +21968,17 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1684003059388 }, + "date_created": { + "type": 6, + "value": 1684003059388 + }, "history_id": 1684003059388, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1694560328902 } + "date_last_updated": { + "type": 6, + "value": 1694560328902 + } }, "revision": "lnt02ra900u8oohx43og2ery", "revision_nr": 1, @@ -17248,7 +21988,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309", - "content": { "type": 1, "value": {}, "revision": "lnt02ra900u7oohx99aahh2d", "revision_nr": 1, "created": 1697467087533, "modified": 1697467087533 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02ra900u7oohx99aahh2d", + "revision_nr": 1, + "created": 1697467087533, + "modified": 1697467087533 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388/description", @@ -17265,7 +22012,11 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt02ran00ugoohx6tle0u6k", "revision_nr": 1, "created": 1697467087537, @@ -17274,7 +22025,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02ran00ufoohx347fey8b", "revision_nr": 1, "created": 1697467087539, "modified": 1697467087539 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02ran00ufoohx347fey8b", + "revision_nr": 1, + "created": 1697467087539, + "modified": 1697467087539 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388", @@ -17287,11 +22045,17 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1684003059388 }, + "date_created": { + "type": 6, + "value": 1684003059388 + }, "history_id": 1684003059388, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1697203305729 } + "date_last_updated": { + "type": 6, + "value": 1697203305729 + } }, "revision": "lnt02ral00udoohxdlo2eo53", "revision_nr": 1, @@ -17301,17 +22065,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310", - "content": { "type": 1, "value": {}, "revision": "lnt02ral00ucoohxfo1q1k4t", "revision_nr": 1, "created": 1697467087544, "modified": 1697467087544 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02ral00ucoohxfo1q1k4t", + "revision_nr": 1, + "created": 1697467087544, + "modified": 1697467087544 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt02r9c00troohx8o2rcnx5", "revision_nr": 1, "created": 1697467087546, "modified": 1697467087546 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02r9c00troohx8o2rcnx5", + "revision_nr": 1, + "created": 1697467087546, + "modified": 1697467087546 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit", "content": { "type": 1, - "value": { "approvedLimit": 1000, "limitUsed": 400, "analysisRequested": { "type": 6, "value": 1684000813915 }, "lastReview": { "type": 6, "value": 1684000989928 } }, + "value": { + "approvedLimit": 1000, + "limitUsed": 400, + "analysisRequested": { + "type": 6, + "value": 1684000813915 + }, + "lastReview": { + "type": 6, + "value": 1684000989928 + } + }, "revision": "lnt02r9c00tqoohx6aln96qx", "revision_nr": 1, "created": 1697467087548, @@ -17322,7 +22111,16 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062", "content": { "type": 1, - "value": { "dataModificacao": 1682097646342, "dateValidity": 1682097646342, "totalValue": 2544.535, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697338800000 } }, + "value": { + "dataModificacao": 1682097646342, + "dateValidity": 1682097646342, + "totalValue": 2544.535, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } + }, "revision": "lnt02r2900qjoohxa75nebgj", "revision_nr": 1, "created": 1697467087550, @@ -17342,7 +22140,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1684943727392/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rb500uloohx9yoa2ic2", "revision_nr": 1, "created": 1697467087555, "modified": 1697467087555 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rb500uloohx9yoa2ic2", + "revision_nr": 1, + "created": 1697467087555, + "modified": 1697467087555 + } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1684943727392", @@ -17356,15 +22163,30 @@ "total_amount": 15000, "history_id": 1684943727392, "id": 1684943727392, - "date_created": { "type": 6, "value": 1684943727392 }, - "date_last_updated": { "type": 6, "value": 1684943753725 }, - "date_of_expiration": { "type": 6, "value": 1687535727392 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684943753725 }, - "money_release_date": { "type": 6, "value": 1684943753725 }, + "date_created": { + "type": 6, + "value": 1684943727392 + }, + "date_last_updated": { + "type": 6, + "value": 1684943753725 + }, + "date_of_expiration": { + "type": 6, + "value": 1687535727392 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684943753725 + }, + "money_release_date": { + "type": 6, + "value": 1684943753725 + }, "money_release_status": "approved", "wasDebited": true }, @@ -17410,9 +22232,18 @@ "original_amount": 200000000, "total_amount": 200000000, "id": 1685471938618, - "date_created": { "type": 6, "value": 1685471938618 }, - "date_last_updated": { "type": 6, "value": 1685471938618 }, - "date_of_expiration": { "type": 6, "value": 1685471938618 }, + "date_created": { + "type": 6, + "value": 1685471938618 + }, + "date_last_updated": { + "type": 6, + "value": 1685471938618 + }, + "date_of_expiration": { + "type": 6, + "value": 1685471938618 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17429,13 +22260,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history", - "content": { "type": 1, "value": {}, "revision": "lnt02rb200uioohxg6v8e9tt", "revision_nr": 1, "created": 1697467087564, "modified": 1697467087564 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rb200uioohxg6v8e9tt", + "revision_nr": 1, + "created": 1697467087564, + "modified": 1697467087564 + } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02rbg00uooohxcl9n775x", "revision_nr": 1, "created": 1697467087566, @@ -17446,7 +22288,11 @@ "path": "ivipcoin-db::__movement_wallet__/017622605984978002/balances/IVIP", "content": { "type": 1, - "value": { "available": "200000000.00000000", "symbol": "IVIP", "value": 20332.55 }, + "value": { + "available": "200000000.00000000", + "symbol": "IVIP", + "value": 20332.55 + }, "revision": "lnt02rbi00uqoohxely9cksp", "revision_nr": 1, "created": 1697467087568, @@ -17455,13 +22301,29 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02rbi00upoohx4mxcfgwv", "revision_nr": 1, "created": 1697467087571, "modified": 1697467087571 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rbi00upoohx4mxcfgwv", + "revision_nr": 1, + "created": 1697467087571, + "modified": 1697467087571 + } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002", "content": { "type": 1, - "value": { "dataModificacao": 1683153627758, "dateValidity": 1683153627758, "totalValue": 13477.18, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697425200000 } }, + "value": { + "dataModificacao": 1683153627758, + "dateValidity": 1683153627758, + "totalValue": 13477.18, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } + }, "revision": "lnt02rb200uhoohx2fg1dcdn", "revision_nr": 1, "created": 1697467087573, @@ -17472,7 +22334,14 @@ "path": "ivipcoin-db::__movement_wallet__/018061972197789932", "content": { "type": 1, - "value": { "dataModificacao": 1678058024401, "dateValidity": 1678162416437, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678058024401, + "dateValidity": 1678162416437, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02rbp00uroohx5k9yfseo", "revision_nr": 1, "created": 1697467087576, @@ -17483,7 +22352,11 @@ "path": "ivipcoin-db::__movement_wallet__/019211721108032264/balances/IVIP", "content": { "type": 1, - "value": { "available": "0.60000000", "symbol": "IVIP", "value": 0.000081 }, + "value": { + "available": "0.60000000", + "symbol": "IVIP", + "value": 0.000081 + }, "revision": "lnt02rbs00uuoohxdw5a4jb7", "revision_nr": 1, "created": 1697467087578, @@ -17492,7 +22365,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02rbs00utoohx9ln6e6lf", "revision_nr": 1, "created": 1697467087580, "modified": 1697467087580 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rbs00utoohx9ln6e6lf", + "revision_nr": 1, + "created": 1697467087580, + "modified": 1697467087580 + } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138020034/description", @@ -17507,7 +22387,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138020034/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rbz00uyoohx29bjgcr5", "revision_nr": 1, "created": 1697467087585, "modified": 1697467087585 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rbz00uyoohx29bjgcr5", + "revision_nr": 1, + "created": 1697467087585, + "modified": 1697467087585 + } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138020034", @@ -17521,14 +22410,26 @@ "total_amount": 100, "history_id": 1678138020034, "id": 1678138020034, - "date_created": { "type": 6, "value": 1678138020034 }, - "date_last_updated": { "type": 6, "value": 1678138313569 }, - "date_of_expiration": { "type": 6, "value": 1680730020034 }, + "date_created": { + "type": 6, + "value": 1678138020034 + }, + "date_last_updated": { + "type": 6, + "value": 1678138313569 + }, + "date_of_expiration": { + "type": 6, + "value": 1680730020034 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678138313569 }, + "money_release_date": { + "type": 6, + "value": 1678138313569 + }, "money_release_status": "rejected" }, "revision": "lnt02rbw00uwoohx1olm1uxs", @@ -17550,7 +22451,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1677965965594/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rc600v1oohx12506k7c", "revision_nr": 1, "created": 1697467087592, "modified": 1697467087592 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rc600v1oohx12506k7c", + "revision_nr": 1, + "created": 1697467087592, + "modified": 1697467087592 + } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1677965965594", @@ -17564,15 +22474,30 @@ "total_amount": 2000, "history_id": 1677965965594, "id": 1677965965594, - "date_created": { "type": 6, "value": 1677965965594 }, - "date_last_updated": { "type": 6, "value": 1677974846209 }, - "date_of_expiration": { "type": 6, "value": 1680557965594 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677974846209 }, - "money_release_date": { "type": 6, "value": 1677974846209 }, + "date_created": { + "type": 6, + "value": 1677965965594 + }, + "date_last_updated": { + "type": 6, + "value": 1677974846209 + }, + "date_of_expiration": { + "type": 6, + "value": 1680557965594 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677974846209 + }, + "money_release_date": { + "type": 6, + "value": 1677974846209 + }, "money_release_status": "approved", "wasDebited": true }, @@ -17595,7 +22520,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138148348/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rcd00v4oohxbmsmdddk", "revision_nr": 1, "created": 1697467087599, "modified": 1697467087599 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rcd00v4oohxbmsmdddk", + "revision_nr": 1, + "created": 1697467087599, + "modified": 1697467087599 + } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138148348", @@ -17609,15 +22543,30 @@ "total_amount": 1000, "history_id": 1678138148348, "id": 1678138148348, - "date_created": { "type": 6, "value": 1678138148348 }, - "date_last_updated": { "type": 6, "value": 1678201306976 }, - "date_of_expiration": { "type": 6, "value": 1680730148348 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678201306976 }, - "money_release_date": { "type": 6, "value": 1678201306976 }, + "date_created": { + "type": 6, + "value": 1678138148348 + }, + "date_last_updated": { + "type": 6, + "value": 1678201306976 + }, + "date_of_expiration": { + "type": 6, + "value": 1680730148348 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678201306976 + }, + "money_release_date": { + "type": 6, + "value": 1678201306976 + }, "money_release_status": "approved" }, "revision": "lnt02rca00v2oohx4elb0huc", @@ -17662,9 +22611,18 @@ "original_amount": 14292068, "total_amount": 14292068, "id": 1678162119494, - "date_created": { "type": 6, "value": 1678162119494 }, - "date_last_updated": { "type": 6, "value": 1678162119494 }, - "date_of_expiration": { "type": 6, "value": 1678162119494 }, + "date_created": { + "type": 6, + "value": 1678162119494 + }, + "date_last_updated": { + "type": 6, + "value": 1678162119494 + }, + "date_of_expiration": { + "type": 6, + "value": 1678162119494 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17715,9 +22673,18 @@ "original_amount": 7083024, "total_amount": 7083024, "id": 1678201718893, - "date_created": { "type": 6, "value": 1678201718893 }, - "date_last_updated": { "type": 6, "value": 1678201718893 }, - "date_of_expiration": { "type": 6, "value": 1678201718893 }, + "date_created": { + "type": 6, + "value": 1678201718893 + }, + "date_last_updated": { + "type": 6, + "value": 1678201718893 + }, + "date_of_expiration": { + "type": 6, + "value": 1678201718893 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17745,7 +22712,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306180932/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rct00vboohx3volfs49", "revision_nr": 1, "created": 1697467087615, "modified": 1697467087615 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rct00vboohx3volfs49", + "revision_nr": 1, + "created": 1697467087615, + "modified": 1697467087615 + } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306180932", @@ -17759,14 +22735,26 @@ "total_amount": 15000000, "history_id": 1687306180932, "id": 1687306180932, - "date_created": { "type": 6, "value": 1687306180932 }, - "date_last_updated": { "type": 6, "value": 1687439686349 }, - "date_of_expiration": { "type": 6, "value": 1687306180932 }, + "date_created": { + "type": 6, + "value": 1687306180932 + }, + "date_last_updated": { + "type": 6, + "value": 1687439686349 + }, + "date_of_expiration": { + "type": 6, + "value": 1687306180932 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": { "type": 6, "value": 1687439686349 }, + "money_release_date": { + "type": 6, + "value": 1687439686349 + }, "money_release_status": "rejected" }, "revision": "lnt02rcr00v9oohxdmr44qg2", @@ -17788,7 +22776,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306331776/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rd000veoohxb5vf7k0r", "revision_nr": 1, "created": 1697467087623, "modified": 1697467087623 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rd000veoohxb5vf7k0r", + "revision_nr": 1, + "created": 1697467087623, + "modified": 1697467087623 + } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306331776", @@ -17802,15 +22799,30 @@ "total_amount": 15000000, "history_id": 1687306331776, "id": 1687306331776, - "date_created": { "type": 6, "value": 1687306331776 }, - "date_last_updated": { "type": 6, "value": 1687439707717 }, - "date_of_expiration": { "type": 6, "value": 1687306331776 }, + "date_created": { + "type": 6, + "value": 1687306331776 + }, + "date_last_updated": { + "type": 6, + "value": 1687439707717 + }, + "date_of_expiration": { + "type": 6, + "value": 1687306331776 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1687439707717 }, - "money_release_date": { "type": 6, "value": 1687439707717 }, + "date_approved": { + "type": 6, + "value": 1687439707717 + }, + "money_release_date": { + "type": 6, + "value": 1687439707717 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -17866,9 +22878,18 @@ "original_amount": 6375092, "total_amount": 6375092, "id": 1687525932247, - "date_created": { "type": 6, "value": 1687525932247 }, - "date_last_updated": { "type": 6, "value": 1687525932247 }, - "date_of_expiration": { "type": 6, "value": 1750684332247 }, + "date_created": { + "type": 6, + "value": 1687525932247 + }, + "date_last_updated": { + "type": 6, + "value": 1687525932247 + }, + "date_of_expiration": { + "type": 6, + "value": 1750684332247 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17929,9 +22950,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1688054453004, - "date_created": { "type": 6, "value": 1688054453004 }, - "date_last_updated": { "type": 6, "value": 1688054453004 }, - "date_of_expiration": { "type": 6, "value": 1719676853004 }, + "date_created": { + "type": 6, + "value": 1688054453004 + }, + "date_last_updated": { + "type": 6, + "value": 1688054453004 + }, + "date_of_expiration": { + "type": 6, + "value": 1719676853004 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17959,7 +22989,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688055217395/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rdl00vnoohxglp7bucb", "revision_nr": 1, "created": 1697467087643, "modified": 1697467087643 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rdl00vnoohxglp7bucb", + "revision_nr": 1, + "created": 1697467087643, + "modified": 1697467087643 + } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688055217395", @@ -17973,9 +23012,18 @@ "total_amount": 1375000, "history_id": 1688055217395, "id": 1688055217395, - "date_created": { "type": 6, "value": 1688055217395 }, - "date_last_updated": { "type": 6, "value": 1688055217395 }, - "date_of_expiration": { "type": 6, "value": 1688055217395 }, + "date_created": { + "type": 6, + "value": 1688055217395 + }, + "date_last_updated": { + "type": 6, + "value": 1688055217395 + }, + "date_of_expiration": { + "type": 6, + "value": 1688055217395 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -18033,9 +23081,18 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1688400574946, - "date_created": { "type": 6, "value": 1688400574946 }, - "date_last_updated": { "type": 6, "value": 1688400574946 }, - "date_of_expiration": { "type": 6, "value": 1691078974946 }, + "date_created": { + "type": 6, + "value": 1688400574946 + }, + "date_last_updated": { + "type": 6, + "value": 1688400574946 + }, + "date_of_expiration": { + "type": 6, + "value": 1691078974946 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18095,9 +23152,18 @@ "original_amount": 5100000, "total_amount": 5100000, "id": 1691079119787, - "date_created": { "type": 6, "value": 1691079119787 }, - "date_last_updated": { "type": 6, "value": 1691079119787 }, - "date_of_expiration": { "type": 6, "value": 1691079119787 }, + "date_created": { + "type": 6, + "value": 1691079119787 + }, + "date_last_updated": { + "type": 6, + "value": 1691079119787 + }, + "date_of_expiration": { + "type": 6, + "value": 1691079119787 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18158,9 +23224,18 @@ "original_amount": 5100000, "total_amount": 5100000, "id": 1691079120545, - "date_created": { "type": 6, "value": 1691079120545 }, - "date_last_updated": { "type": 6, "value": 1691079120545 }, - "date_of_expiration": { "type": 6, "value": 1691079120545 }, + "date_created": { + "type": 6, + "value": 1691079120545 + }, + "date_last_updated": { + "type": 6, + "value": 1691079120545 + }, + "date_of_expiration": { + "type": 6, + "value": 1691079120545 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18230,9 +23305,18 @@ "total_amount": 5199000, "id": 1691085199409, "history_id": 1691085199409, - "date_created": { "type": 6, "value": 1691085199409 }, - "date_last_updated": { "type": 6, "value": 1691085199409 }, - "date_of_expiration": { "type": 6, "value": 1693763599408 }, + "date_created": { + "type": 6, + "value": 1691085199409 + }, + "date_last_updated": { + "type": 6, + "value": 1691085199409 + }, + "date_of_expiration": { + "type": 6, + "value": 1693763599408 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18301,9 +23385,18 @@ "total_amount": 5302980, "id": "1693763776046", "history_id": "1693763776046", - "date_created": { "type": 6, "value": 1693763776046 }, - "date_last_updated": { "type": 6, "value": 1693763776046 }, - "date_of_expiration": { "type": 6, "value": 1693763776046 }, + "date_created": { + "type": 6, + "value": 1693763776046 + }, + "date_last_updated": { + "type": 6, + "value": 1693763776046 + }, + "date_of_expiration": { + "type": 6, + "value": 1693763776046 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18372,9 +23465,18 @@ "total_amount": 5302980, "id": "1693924633176", "history_id": "1693924633176", - "date_created": { "type": 6, "value": 1693924633176 }, - "date_last_updated": { "type": 6, "value": 1693924633176 }, - "date_of_expiration": { "type": 6, "value": 1696516633174 }, + "date_created": { + "type": 6, + "value": 1693924633176 + }, + "date_last_updated": { + "type": 6, + "value": 1693924633176 + }, + "date_of_expiration": { + "type": 6, + "value": 1696516633174 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18444,9 +23546,18 @@ "total_amount": 5409039.6, "id": "1696516664226", "history_id": "1696516664226", - "date_created": { "type": 6, "value": 1696516664226 }, - "date_last_updated": { "type": 6, "value": 1696516664226 }, - "date_of_expiration": { "type": 6, "value": 1696516664226 }, + "date_created": { + "type": 6, + "value": 1696516664226 + }, + "date_last_updated": { + "type": 6, + "value": 1696516664226 + }, + "date_of_expiration": { + "type": 6, + "value": 1696516664226 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18516,9 +23627,18 @@ "total_amount": 5409039, "id": "1696621887766", "history_id": "1696621887766", - "date_created": { "type": 6, "value": 1696621887766 }, - "date_last_updated": { "type": 6, "value": 1696621887766 }, - "date_of_expiration": { "type": 6, "value": 1699300287733 }, + "date_created": { + "type": 6, + "value": 1696621887766 + }, + "date_last_updated": { + "type": 6, + "value": 1696621887766 + }, + "date_of_expiration": { + "type": 6, + "value": 1699300287733 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18534,13 +23654,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history", - "content": { "type": 1, "value": {}, "revision": "lnt02rbw00uvoohx5jq08wbj", "revision_nr": 1, "created": 1697467087717, "modified": 1697467087717 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rbw00uvoohx5jq08wbj", + "revision_nr": 1, + "created": 1697467087717, + "modified": 1697467087717 + } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1689780416218 } }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1689780416218 + } + }, "revision": "lnt02rfp00whoohx6og3czjj", "revision_nr": 1, "created": 1697467087720, @@ -18556,7 +23691,10 @@ "dateValidity": 1678664927087, "totalValue": 1001.4056590358118, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1696820400000 } + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } }, "revision": "lnt02rbs00usoohxabe49yvn", "revision_nr": 1, @@ -18568,7 +23706,11 @@ "path": "ivipcoin-db::__movement_wallet__/019965556064975630/balances/BRL", "content": { "type": 1, - "value": { "available": "80.00000000", "symbol": "BRL", "value": 16.58 }, + "value": { + "available": "80.00000000", + "symbol": "BRL", + "value": 16.58 + }, "revision": "lnt02rfu00wkoohx8js1g8cw", "revision_nr": 1, "created": 1697467087725, @@ -18577,7 +23719,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02rfu00wjoohxa2h59rvu", "revision_nr": 1, "created": 1697467087727, "modified": 1697467087727 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rfu00wjoohxa2h59rvu", + "revision_nr": 1, + "created": 1697467087727, + "modified": 1697467087727 + } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1679011728068/description", @@ -18592,7 +23741,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1679011728068/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rg200wooohx0u7jc8qg", "revision_nr": 1, "created": 1697467087732, "modified": 1697467087732 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rg200wooohx0u7jc8qg", + "revision_nr": 1, + "created": 1697467087732, + "modified": 1697467087732 + } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1679011728068", @@ -18606,15 +23764,30 @@ "total_amount": 100, "history_id": 1679011728068, "id": 1679011728068, - "date_created": { "type": 6, "value": 1679011728068 }, - "date_last_updated": { "type": 6, "value": 1679057279547 }, - "date_of_expiration": { "type": 6, "value": 1681603728068 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679057279547 }, - "money_release_date": { "type": 6, "value": 1679057279547 }, + "date_created": { + "type": 6, + "value": 1679011728068 + }, + "date_last_updated": { + "type": 6, + "value": 1679057279547 + }, + "date_of_expiration": { + "type": 6, + "value": 1681603728068 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679057279547 + }, + "money_release_date": { + "type": 6, + "value": 1679057279547 + }, "money_release_status": "approved" }, "revision": "lnt02rfz00wmoohx16vx7eb7", @@ -18678,9 +23851,18 @@ "total_amount": 20, "id": 1689901373588, "history_id": 1689901373588, - "date_created": { "type": 6, "value": 1689901373588 }, - "date_last_updated": { "type": 6, "value": 1689901373588 }, - "date_of_expiration": { "type": 6, "value": 1716253373584 }, + "date_created": { + "type": 6, + "value": 1689901373588 + }, + "date_last_updated": { + "type": 6, + "value": 1689901373588 + }, + "date_of_expiration": { + "type": 6, + "value": 1716253373584 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18696,13 +23878,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history", - "content": { "type": 1, "value": {}, "revision": "lnt02rfz00wloohxdxauht58", "revision_nr": 1, "created": 1697467087747, "modified": 1697467087747 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rfz00wloohxdxauht58", + "revision_nr": 1, + "created": 1697467087747, + "modified": 1697467087747 + } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02rgj00wtoohxam8tfhhw", "revision_nr": 1, "created": 1697467087749, @@ -18713,7 +23906,13 @@ "path": "ivipcoin-db::__movement_wallet__/019965556064975630", "content": { "type": 1, - "value": { "dataModificacao": 1679011642708, "dateValidity": 1679026042762, "totalValue": 0, "currencyType": "USD", "balancesModificacao": 1689822000000 }, + "value": { + "dataModificacao": 1679011642708, + "dateValidity": 1679026042762, + "totalValue": 0, + "currencyType": "USD", + "balancesModificacao": 1689822000000 + }, "revision": "lnt02rfu00wioohxeyyiaeib", "revision_nr": 1, "created": 1697467087751, @@ -18724,7 +23923,11 @@ "path": "ivipcoin-db::__movement_wallet__/021977101011675604/balances/BRL", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, "revision": "lnt02rgn00wwoohx2satal7r", "revision_nr": 1, "created": 1697467087754, @@ -18735,7 +23938,11 @@ "path": "ivipcoin-db::__movement_wallet__/021977101011675604/balances/IVIP", "content": { "type": 1, - "value": { "available": "72120104.00000000", "symbol": "IVIP", "value": 10477.68 }, + "value": { + "available": "72120104.00000000", + "symbol": "IVIP", + "value": 10477.68 + }, "revision": "lnt02rgq00wxoohx5p295z0t", "revision_nr": 1, "created": 1697467087757, @@ -18744,7 +23951,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02rgn00wvoohx475y3jnm", "revision_nr": 1, "created": 1697467087759, "modified": 1697467087759 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rgn00wvoohx475y3jnm", + "revision_nr": 1, + "created": 1697467087759, + "modified": 1697467087759 + } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677725964136/description", @@ -18759,7 +23973,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677725964136/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rgy00x1oohx0ems7uhu", "revision_nr": 1, "created": 1697467087765, "modified": 1697467087765 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rgy00x1oohx0ems7uhu", + "revision_nr": 1, + "created": 1697467087765, + "modified": 1697467087765 + } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677725964136", @@ -18773,15 +23996,30 @@ "total_amount": 10000, "history_id": 1677725964136, "id": 1677725964136, - "date_created": { "type": 6, "value": 1677725964136 }, - "date_last_updated": { "type": 6, "value": 1677755006417 }, - "date_of_expiration": { "type": 6, "value": 1680317964136 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677755006417 }, - "money_release_date": { "type": 6, "value": 1677755006417 }, + "date_created": { + "type": 6, + "value": 1677725964136 + }, + "date_last_updated": { + "type": 6, + "value": 1677755006417 + }, + "date_of_expiration": { + "type": 6, + "value": 1680317964136 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677755006417 + }, + "money_release_date": { + "type": 6, + "value": 1677755006417 + }, "money_release_status": "approved", "wasDebited": true }, @@ -18827,9 +24065,18 @@ "original_amount": 71386212, "total_amount": 71386212, "id": 1678147737654, - "date_created": { "type": 6, "value": 1678147737654 }, - "date_last_updated": { "type": 6, "value": 1678147737654 }, - "date_of_expiration": { "type": 6, "value": 1678147737654 }, + "date_created": { + "type": 6, + "value": 1678147737654 + }, + "date_last_updated": { + "type": 6, + "value": 1678147737654 + }, + "date_of_expiration": { + "type": 6, + "value": 1678147737654 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18891,9 +24138,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1678160584706, - "date_created": { "type": 6, "value": 1678160584706 }, - "date_last_updated": { "type": 6, "value": 1678160584706 }, - "date_of_expiration": { "type": 6, "value": 1678160584706 }, + "date_created": { + "type": 6, + "value": 1678160584706 + }, + "date_last_updated": { + "type": 6, + "value": 1678160584706 + }, + "date_of_expiration": { + "type": 6, + "value": 1678160584706 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18943,9 +24199,18 @@ "original_amount": 7146034, "total_amount": 7146034, "id": 1678162248934, - "date_created": { "type": 6, "value": 1678162248934 }, - "date_last_updated": { "type": 6, "value": 1678162248934 }, - "date_of_expiration": { "type": 6, "value": 1678162248934 }, + "date_created": { + "type": 6, + "value": 1678162248934 + }, + "date_last_updated": { + "type": 6, + "value": 1678162248934 + }, + "date_of_expiration": { + "type": 6, + "value": 1678162248934 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18986,7 +24251,9 @@ "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/barcode", "content": { "type": 1, - "value": { "content": "23797927500010103493380261019562276900633330" }, + "value": { + "content": "23797927500010103493380261019562276900633330" + }, "revision": "lnt02rhq00xdoohx631j7k4n", "revision_nr": 1, "created": 1697467087793, @@ -18997,7 +24264,11 @@ "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, "revision": "lnt02rht00xfoohx5tpw5avf", "revision_nr": 1, "created": 1697467087795, @@ -19006,7 +24277,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02rht00xeoohxgen1de8v", "revision_nr": 1, "created": 1697467087798, "modified": 1697467087798 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02rht00xeoohxgen1de8v", + "revision_nr": 1, + "created": 1697467087798, + "modified": 1697467087798 + } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details", @@ -19041,9 +24319,18 @@ "total_amount": 10103.49, "history_id": 1677379209968, "id": 1311811220, - "date_created": { "type": 6, "value": 1677379210662 }, - "date_last_updated": { "type": 6, "value": 1677379210662 }, - "date_of_expiration": { "type": 6, "value": 1677639599000 }, + "date_created": { + "type": 6, + "value": 1677379210662 + }, + "date_last_updated": { + "type": 6, + "value": 1677379210662 + }, + "date_of_expiration": { + "type": 6, + "value": 1677639599000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -19103,9 +24390,18 @@ "original_amount": 326, "total_amount": 326, "id": 1684348383580, - "date_created": { "type": 6, "value": 1684348383580 }, - "date_last_updated": { "type": 6, "value": 1684348383580 }, - "date_of_expiration": { "type": 6, "value": 1684348383580 }, + "date_created": { + "type": 6, + "value": 1684348383580 + }, + "date_last_updated": { + "type": 6, + "value": 1684348383580 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348383580 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -19155,9 +24451,18 @@ "original_amount": 1587858, "total_amount": 1587858, "id": 1684624810300, - "date_created": { "type": 6, "value": 1684624810300 }, - "date_last_updated": { "type": 6, "value": 1684624810300 }, - "date_of_expiration": { "type": 6, "value": 1684624810300 }, + "date_created": { + "type": 6, + "value": 1684624810300 + }, + "date_last_updated": { + "type": 6, + "value": 1684624810300 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624810300 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -19218,9 +24523,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685668591211, - "date_created": { "type": 6, "value": 1685668591211 }, - "date_last_updated": { "type": 6, "value": 1685668591211 }, - "date_of_expiration": { "type": 6, "value": 1717290991211 }, + "date_created": { + "type": 6, + "value": 1685668591211 + }, + "date_last_updated": { + "type": 6, + "value": 1685668591211 + }, + "date_of_expiration": { + "type": 6, + "value": 1717290991211 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -19247,7 +24561,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1689198160853/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02riq00xqoohxewjc96os", "revision_nr": 1, "created": 1697467087828, "modified": 1697467087828 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02riq00xqoohxewjc96os", + "revision_nr": 1, + "created": 1697467087828, + "modified": 1697467087828 + } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1689198160853", @@ -19261,9 +24584,18 @@ "total_amount": 72120104, "history_id": 1689198160853, "id": 1689198160853, - "date_created": { "type": 6, "value": 1689198160853 }, - "date_last_updated": { "type": 6, "value": 1689198160853 }, - "date_of_expiration": { "type": 6, "value": 1689198160853 }, + "date_created": { + "type": 6, + "value": 1689198160853 + }, + "date_last_updated": { + "type": 6, + "value": 1689198160853 + }, + "date_of_expiration": { + "type": 6, + "value": 1689198160853 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -19301,7 +24633,11 @@ "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 2098695.0264 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 2098695.0264 + }, "revision": "lnt02rj000xwoohx1ce2fux1", "revision_nr": 1, "created": 1697467087839, @@ -19310,7 +24646,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02rj000xvoohx1uoe8pwt", "revision_nr": 1, "created": 1697467087841, "modified": 1697467087841 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02rj000xvoohx1uoe8pwt", + "revision_nr": 1, + "created": 1697467087841, + "modified": 1697467087841 + } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details", @@ -19344,17 +24687,32 @@ "total_amount": 69956500.88, "id": 1690914468659, "history_id": 1690914468659, - "date_created": { "type": 6, "value": 1690914468659 }, - "date_last_updated": { "type": 6, "value": 1691419368367 }, - "date_of_expiration": { "type": 6, "value": 1690914468659 }, + "date_created": { + "type": 6, + "value": 1690914468659 + }, + "date_last_updated": { + "type": 6, + "value": 1691419368367 + }, + "date_of_expiration": { + "type": 6, + "value": 1690914468659 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1691419368367 }, - "money_release_date": { "type": 6, "value": 1691419368367 }, + "date_approved": { + "type": 6, + "value": 1691419368367 + }, + "money_release_date": { + "type": 6, + "value": 1691419368367 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -19390,7 +24748,11 @@ "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 1026103.0443000001 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 1026103.0443000001 + }, "revision": "lnt02rjf00y2oohx7wzocwdw", "revision_nr": 1, "created": 1697467087854, @@ -19399,7 +24761,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02rjf00y1oohx7t521v5a", "revision_nr": 1, "created": 1697467087857, "modified": 1697467087857 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02rjf00y1oohx7t521v5a", + "revision_nr": 1, + "created": 1697467087857, + "modified": 1697467087857 + } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details", @@ -19433,16 +24802,28 @@ "total_amount": 34203434.81, "id": 1690914748870, "history_id": 1690914748870, - "date_created": { "type": 6, "value": 1690914748870 }, - "date_last_updated": { "type": 6, "value": 1692195719152 }, - "date_of_expiration": { "type": 6, "value": 1690914748870 }, + "date_created": { + "type": 6, + "value": 1690914748870 + }, + "date_last_updated": { + "type": 6, + "value": 1692195719152 + }, + "date_of_expiration": { + "type": 6, + "value": 1690914748870 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "rejected", - "money_release_date": { "type": 6, "value": 1692195719152 }, + "money_release_date": { + "type": 6, + "value": 1692195719152 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -19454,13 +24835,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history", - "content": { "type": 1, "value": {}, "revision": "lnt02rgv00wyoohx5dk05y4m", "revision_nr": 1, "created": 1697467087865, "modified": 1697467087865 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rgv00wyoohx5dk05y4m", + "revision_nr": 1, + "created": 1697467087865, + "modified": 1697467087865 + } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02rjt00y3oohx208u5js5", "revision_nr": 1, "created": 1697467087867, @@ -19471,7 +24863,13 @@ "path": "ivipcoin-db::__movement_wallet__/021977101011675604", "content": { "type": 1, - "value": { "dataModificacao": 1677376425892, "dateValidity": 1678341464139, "totalValue": 3999.180462637249, "currencyType": "USD", "balancesModificacao": 1691419368675 }, + "value": { + "dataModificacao": 1677376425892, + "dateValidity": 1678341464139, + "totalValue": 3999.180462637249, + "currencyType": "USD", + "balancesModificacao": 1691419368675 + }, "revision": "lnt02rgn00wuoohx79cnb6il", "revision_nr": 1, "created": 1697467087870, @@ -19482,7 +24880,11 @@ "path": "ivipcoin-db::__movement_wallet__/023129781601157750/balances/IVIP", "content": { "type": 1, - "value": { "available": "62553.00000000", "symbol": "IVIP", "value": 6.93 }, + "value": { + "available": "62553.00000000", + "symbol": "IVIP", + "value": 6.93 + }, "revision": "lnt02rjy00y6oohx0l3ifa2n", "revision_nr": 1, "created": 1697467087873, @@ -19491,7 +24893,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02rjy00y5oohxa2oqfvnq", "revision_nr": 1, "created": 1697467087875, "modified": 1697467087875 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rjy00y5oohxa2oqfvnq", + "revision_nr": 1, + "created": 1697467087875, + "modified": 1697467087875 + } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689290027436/description", @@ -19506,7 +24915,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689290027436/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rk600yaoohxha4zbt5g", "revision_nr": 1, "created": 1697467087880, "modified": 1697467087880 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rk600yaoohxha4zbt5g", + "revision_nr": 1, + "created": 1697467087880, + "modified": 1697467087880 + } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689290027436", @@ -19520,15 +24938,30 @@ "total_amount": 100, "history_id": 1689290027436, "id": 1689290027436, - "date_created": { "type": 6, "value": 1689290027436 }, - "date_last_updated": { "type": 6, "value": 1689355935839 }, - "date_of_expiration": { "type": 6, "value": 1691882027436 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689355935839 }, - "money_release_date": { "type": 6, "value": 1689355935839 }, + "date_created": { + "type": 6, + "value": 1689290027436 + }, + "date_last_updated": { + "type": 6, + "value": 1689355935839 + }, + "date_of_expiration": { + "type": 6, + "value": 1691882027436 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689355935839 + }, + "money_release_date": { + "type": 6, + "value": 1689355935839 + }, "money_release_status": "approved", "wasDebited": true }, @@ -19551,7 +24984,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689338968555/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rkd00ydoohxgms085uo", "revision_nr": 1, "created": 1697467087888, "modified": 1697467087888 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rkd00ydoohxgms085uo", + "revision_nr": 1, + "created": 1697467087888, + "modified": 1697467087888 + } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689338968555", @@ -19565,9 +25007,18 @@ "total_amount": 100, "history_id": 1689338968555, "id": 1689338968555, - "date_created": { "type": 6, "value": 1689338968555 }, - "date_last_updated": { "type": 6, "value": 1689338968555 }, - "date_of_expiration": { "type": 6, "value": 1691930968555 }, + "date_created": { + "type": 6, + "value": 1689338968555 + }, + "date_last_updated": { + "type": 6, + "value": 1689338968555 + }, + "date_of_expiration": { + "type": 6, + "value": 1691930968555 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -19592,7 +25043,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689345853748/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rkm00ygoohx2x2keq52", "revision_nr": 1, "created": 1697467087896, "modified": 1697467087896 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rkm00ygoohx2x2keq52", + "revision_nr": 1, + "created": 1697467087896, + "modified": 1697467087896 + } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689345853748", @@ -19606,9 +25066,18 @@ "total_amount": 100, "history_id": 1689345853748, "id": 1689345853748, - "date_created": { "type": 6, "value": 1689345853748 }, - "date_last_updated": { "type": 6, "value": 1689345853748 }, - "date_of_expiration": { "type": 6, "value": 1691937853748 }, + "date_created": { + "type": 6, + "value": 1689345853748 + }, + "date_last_updated": { + "type": 6, + "value": 1689345853748 + }, + "date_of_expiration": { + "type": 6, + "value": 1691937853748 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -19656,9 +25125,18 @@ "original_amount": 62553, "total_amount": 62553, "id": 1689357674118, - "date_created": { "type": 6, "value": 1689357674118 }, - "date_last_updated": { "type": 6, "value": 1689357674118 }, - "date_of_expiration": { "type": 6, "value": 1689357674118 }, + "date_created": { + "type": 6, + "value": 1689357674118 + }, + "date_last_updated": { + "type": 6, + "value": 1689357674118 + }, + "date_of_expiration": { + "type": 6, + "value": 1689357674118 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -19728,9 +25206,18 @@ "total_amount": 62553, "id": 1690557889809, "history_id": 1690557889809, - "date_created": { "type": 6, "value": 1690557889809 }, - "date_last_updated": { "type": 6, "value": 1690557889809 }, - "date_of_expiration": { "type": 6, "value": 1690557889809 }, + "date_created": { + "type": 6, + "value": 1690557889809 + }, + "date_last_updated": { + "type": 6, + "value": 1690557889809 + }, + "date_of_expiration": { + "type": 6, + "value": 1690557889809 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -19746,13 +25233,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history", - "content": { "type": 1, "value": {}, "revision": "lnt02rk300y7oohxewvrc06u", "revision_nr": 1, "created": 1697467087917, "modified": 1697467087917 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rk300y7oohxewvrc06u", + "revision_nr": 1, + "created": 1697467087917, + "modified": 1697467087917 + } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02rl900ynoohxbvna2eos", "revision_nr": 1, "created": 1697467087920, @@ -19763,7 +25261,16 @@ "path": "ivipcoin-db::__movement_wallet__/023129781601157750", "content": { "type": 1, - "value": { "dataModificacao": 1689289832519, "dateValidity": 1689289832519, "totalValue": 20.68, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697079600000 } }, + "value": { + "dataModificacao": 1689289832519, + "dateValidity": 1689289832519, + "totalValue": 20.68, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697079600000 + } + }, "revision": "lnt02rjy00y4oohx5v7jhr2g", "revision_nr": 1, "created": 1697467087922, @@ -19783,7 +25290,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688838966144/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rlh00ysoohxdhw41kik", "revision_nr": 1, "created": 1697467087927, "modified": 1697467087927 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rlh00ysoohxdhw41kik", + "revision_nr": 1, + "created": 1697467087927, + "modified": 1697467087927 + } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688838966144", @@ -19797,15 +25313,30 @@ "total_amount": 62000, "history_id": 1688838966144, "id": 1688838966144, - "date_created": { "type": 6, "value": 1688838966144 }, - "date_last_updated": { "type": 6, "value": 1688838966144 }, - "date_of_expiration": { "type": 6, "value": 1688838966144 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1688838966144 }, - "money_release_date": { "type": 6, "value": 1688838966144 }, + "date_created": { + "type": 6, + "value": 1688838966144 + }, + "date_last_updated": { + "type": 6, + "value": 1688838966144 + }, + "date_of_expiration": { + "type": 6, + "value": 1688838966144 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1688838966144 + }, + "money_release_date": { + "type": 6, + "value": 1688838966144 + }, "money_release_status": "approved", "wasDebited": true }, @@ -19851,9 +25382,18 @@ "original_amount": 100000000, "total_amount": 100000000, "id": 1688839141121, - "date_created": { "type": 6, "value": 1688839141121 }, - "date_last_updated": { "type": 6, "value": 1688839141121 }, - "date_of_expiration": { "type": 6, "value": 1688839141121 }, + "date_created": { + "type": 6, + "value": 1688839141121 + }, + "date_last_updated": { + "type": 6, + "value": 1688839141121 + }, + "date_of_expiration": { + "type": 6, + "value": 1688839141121 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -19881,7 +25421,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689276795860/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rlv00yxoohxaijkf20z", "revision_nr": 1, "created": 1697467087941, "modified": 1697467087941 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rlv00yxoohxaijkf20z", + "revision_nr": 1, + "created": 1697467087941, + "modified": 1697467087941 + } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689276795860", @@ -19895,15 +25444,30 @@ "total_amount": 50000000, "history_id": 1689276795860, "id": 1689276795860, - "date_created": { "type": 6, "value": 1689276795860 }, - "date_last_updated": { "type": 6, "value": 1689276795860 }, - "date_of_expiration": { "type": 6, "value": 1689276795860 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1689276795860 }, - "money_release_date": { "type": 6, "value": 1689276795860 }, + "date_created": { + "type": 6, + "value": 1689276795860 + }, + "date_last_updated": { + "type": 6, + "value": 1689276795860 + }, + "date_of_expiration": { + "type": 6, + "value": 1689276795860 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1689276795860 + }, + "money_release_date": { + "type": 6, + "value": 1689276795860 + }, "money_release_status": "approved", "wasDebited": true }, @@ -19959,9 +25523,18 @@ "original_amount": 149517672, "total_amount": 149517672, "id": 1689278842357, - "date_created": { "type": 6, "value": 1689278842357 }, - "date_last_updated": { "type": 6, "value": 1689278842357 }, - "date_of_expiration": { "type": 6, "value": 1705176442357 }, + "date_created": { + "type": 6, + "value": 1689278842357 + }, + "date_last_updated": { + "type": 6, + "value": 1689278842357 + }, + "date_of_expiration": { + "type": 6, + "value": 1705176442357 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20021,9 +25594,18 @@ "original_amount": 450820, "total_amount": 450820, "id": 1689295244660, - "date_created": { "type": 6, "value": 1689295244660 }, - "date_last_updated": { "type": 6, "value": 1689295244660 }, - "date_of_expiration": { "type": 6, "value": 1752453644660 }, + "date_created": { + "type": 6, + "value": 1689295244660 + }, + "date_last_updated": { + "type": 6, + "value": 1689295244660 + }, + "date_of_expiration": { + "type": 6, + "value": 1752453644660 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20050,7 +25632,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689350577243/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rmi00z6oohxal8sczj6", "revision_nr": 1, "created": 1697467087965, "modified": 1697467087965 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rmi00z6oohxal8sczj6", + "revision_nr": 1, + "created": 1697467087965, + "modified": 1697467087965 + } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689350577243", @@ -20064,9 +25655,18 @@ "total_amount": 9396, "history_id": 1689350577243, "id": 1689350577243, - "date_created": { "type": 6, "value": 1689350577243 }, - "date_last_updated": { "type": 6, "value": 1689350577243 }, - "date_of_expiration": { "type": 6, "value": 1691942577243 }, + "date_created": { + "type": 6, + "value": 1689350577243 + }, + "date_last_updated": { + "type": 6, + "value": 1689350577243 + }, + "date_of_expiration": { + "type": 6, + "value": 1691942577243 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -20091,7 +25691,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1690472510945/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rmr00z9oohx6szy9hyb", "revision_nr": 1, "created": 1697467087974, "modified": 1697467087974 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rmr00z9oohx6szy9hyb", + "revision_nr": 1, + "created": 1697467087974, + "modified": 1697467087974 + } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1690472510945", @@ -20105,9 +25714,18 @@ "total_amount": 30010000, "history_id": 1690472510945, "id": 1690472510945, - "date_created": { "type": 6, "value": 1690472510945 }, - "date_last_updated": { "type": 6, "value": 1690472510945 }, - "date_of_expiration": { "type": 6, "value": 1690472510945 }, + "date_created": { + "type": 6, + "value": 1690472510945 + }, + "date_last_updated": { + "type": 6, + "value": 1690472510945 + }, + "date_of_expiration": { + "type": 6, + "value": 1690472510945 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -20174,9 +25792,18 @@ "total_amount": 6001475, "id": 1691081114647, "history_id": 1691081114647, - "date_created": { "type": 6, "value": 1691081114647 }, - "date_last_updated": { "type": 6, "value": 1691081114647 }, - "date_of_expiration": { "type": 6, "value": 1693759514646 }, + "date_created": { + "type": 6, + "value": 1691081114647 + }, + "date_last_updated": { + "type": 6, + "value": 1691081114647 + }, + "date_of_expiration": { + "type": 6, + "value": 1693759514646 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20216,7 +25843,11 @@ "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 721200.99 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 721200.99 + }, "revision": "lnt02rnc00zjoohxd0304njv", "revision_nr": 1, "created": 1697467087995, @@ -20225,7 +25856,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02rnc00zioohxcqwxdo30", "revision_nr": 1, "created": 1697467087997, "modified": 1697467087997 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02rnc00zioohxcqwxdo30", + "revision_nr": 1, + "created": 1697467087997, + "modified": 1697467087997 + } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details", @@ -20259,16 +25897,28 @@ "total_amount": 23318832.01, "id": 1692462419697, "history_id": 1692462419697, - "date_created": { "type": 6, "value": 1692462419697 }, - "date_last_updated": { "type": 6, "value": 1692612895779 }, - "date_of_expiration": { "type": 6, "value": 1692462419697 }, + "date_created": { + "type": 6, + "value": 1692462419697 + }, + "date_last_updated": { + "type": 6, + "value": 1692612895779 + }, + "date_of_expiration": { + "type": 6, + "value": 1692462419697 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "rejected", - "money_release_date": { "type": 6, "value": 1692612895779 }, + "money_release_date": { + "type": 6, + "value": 1692612895779 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -20333,9 +25983,18 @@ "total_amount": 6121504.5, "id": "1693759701053", "history_id": "1693759701053", - "date_created": { "type": 6, "value": 1693759701053 }, - "date_last_updated": { "type": 6, "value": 1693759701053 }, - "date_of_expiration": { "type": 6, "value": 1693759701053 }, + "date_created": { + "type": 6, + "value": 1693759701053 + }, + "date_last_updated": { + "type": 6, + "value": 1693759701053 + }, + "date_of_expiration": { + "type": 6, + "value": 1693759701053 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20404,16 +26063,28 @@ "total_amount": 7836614, "id": "1693861899974", "history_id": "1693861899974", - "date_created": { "type": 6, "value": 1693861899974 }, - "date_last_updated": { "type": 6, "value": 1696424640162 }, - "date_of_expiration": { "type": 6, "value": 1696453899973 }, + "date_created": { + "type": 6, + "value": 1693861899974 + }, + "date_last_updated": { + "type": 6, + "value": 1696424640162 + }, + "date_of_expiration": { + "type": 6, + "value": 1696453899973 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": { "type": 6, "value": 1696424640162 }, + "money_release_date": { + "type": 6, + "value": 1696424640162 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -20427,7 +26098,13 @@ "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697203059628 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697203059628 + } + }, "revision": "lnt02ro700ztoohx74yxb0e3", "revision_nr": 1, "created": 1697467088027, @@ -20489,16 +26166,28 @@ "total_amount": 24582, "id": "1694611059637", "history_id": "1694611059637", - "date_created": { "type": 6, "value": 1694611059637 }, - "date_last_updated": { "type": 6, "value": 1694611086754 }, + "date_created": { + "type": 6, + "value": 1694611059637 + }, + "date_last_updated": { + "type": 6, + "value": 1694611086754 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694611086754 }, - "money_release_date": { "type": 6, "value": 1694611086754 }, + "date_approved": { + "type": 6, + "value": 1694611086754 + }, + "money_release_date": { + "type": 6, + "value": 1694611086754 + }, "money_release_status": "approved", "wasDebited": true }, @@ -20552,9 +26241,18 @@ "total_amount": 39021269, "id": "1694612208335", "history_id": "1694612208335", - "date_created": { "type": 6, "value": 1694612208335 }, - "date_last_updated": { "type": 6, "value": 1694612208335 }, - "date_of_expiration": { "type": 6, "value": 1694612208335 }, + "date_created": { + "type": 6, + "value": 1694612208335 + }, + "date_last_updated": { + "type": 6, + "value": 1694612208335 + }, + "date_of_expiration": { + "type": 6, + "value": 1694612208335 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -20573,7 +26271,13 @@ "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697212107989 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697212107989 + } + }, "revision": "lnt02rot0101oohxdl9vdht3", "revision_nr": 1, "created": 1697467088048, @@ -20635,16 +26339,28 @@ "total_amount": 168, "id": "1694620107990", "history_id": "1694620107990", - "date_created": { "type": 6, "value": 1694620107990 }, - "date_last_updated": { "type": 6, "value": 1694625063588 }, + "date_created": { + "type": 6, + "value": 1694620107990 + }, + "date_last_updated": { + "type": 6, + "value": 1694625063588 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694625063588 }, - "money_release_date": { "type": 6, "value": 1694625063588 }, + "date_approved": { + "type": 6, + "value": 1694625063588 + }, + "money_release_date": { + "type": 6, + "value": 1694625063588 + }, "money_release_status": "approved", "wasDebited": true }, @@ -20698,9 +26414,18 @@ "total_amount": 258446, "id": "1694641684988", "history_id": "1694641684988", - "date_created": { "type": 6, "value": 1694641684988 }, - "date_last_updated": { "type": 6, "value": 1694641684988 }, - "date_of_expiration": { "type": 6, "value": 1694641684988 }, + "date_created": { + "type": 6, + "value": 1694641684988 + }, + "date_last_updated": { + "type": 6, + "value": 1694641684988 + }, + "date_of_expiration": { + "type": 6, + "value": 1694641684988 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -20741,7 +26466,11 @@ "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 750000 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 750000 + }, "revision": "lnt02rpk010doohx99lp2qus", "revision_nr": 1, "created": 1697467088075, @@ -20750,7 +26479,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02rpk010coohx9stp6tks", "revision_nr": 1, "created": 1697467088078, "modified": 1697467088078 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02rpk010coohx9stp6tks", + "revision_nr": 1, + "created": 1697467088078, + "modified": 1697467088078 + } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details", @@ -20784,17 +26520,32 @@ "total_amount": 24250000, "id": "1694692198880", "history_id": "1694692198880", - "date_created": { "type": 6, "value": 1694692198880 }, - "date_last_updated": { "type": 6, "value": 1695042142983 }, - "date_of_expiration": { "type": 6, "value": 1694692198880 }, + "date_created": { + "type": 6, + "value": 1694692198880 + }, + "date_last_updated": { + "type": 6, + "value": 1695042142983 + }, + "date_of_expiration": { + "type": 6, + "value": 1694692198880 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1695042142983 }, - "money_release_date": { "type": 6, "value": 1695042142983 }, + "date_approved": { + "type": 6, + "value": 1695042142983 + }, + "money_release_date": { + "type": 6, + "value": 1695042142983 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -20860,9 +26611,18 @@ "total_amount": 8000000, "id": "1696451540047", "history_id": "1696451540047", - "date_created": { "type": 6, "value": 1696451540047 }, - "date_last_updated": { "type": 6, "value": 1696451540047 }, - "date_of_expiration": { "type": 6, "value": 1699129939879 }, + "date_created": { + "type": 6, + "value": 1696451540047 + }, + "date_last_updated": { + "type": 6, + "value": 1696451540047 + }, + "date_of_expiration": { + "type": 6, + "value": 1699129939879 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20878,13 +26638,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history", - "content": { "type": 1, "value": {}, "revision": "lnt02rle00ypoohx1uyldyww", "revision_nr": 1, "created": 1697467088096, "modified": 1697467088096 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rle00ypoohx1uyldyww", + "revision_nr": 1, + "created": 1697467088096, + "modified": 1697467088096 + } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1695054577899 } }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1695054577899 + } + }, "revision": "lnt02rq8010ioohx5tred0dg", "revision_nr": 1, "created": 1697467088099, @@ -20895,7 +26670,11 @@ "path": "ivipcoin-db::__movement_wallet__/025514055020579240/balances/IVIP", "content": { "type": 1, - "value": { "available": "36441252.50000000", "symbol": "IVIP", "value": 4538.39 }, + "value": { + "available": "36441252.50000000", + "symbol": "IVIP", + "value": 4538.39 + }, "revision": "lnt02rqb010koohx31gxa2is", "revision_nr": 1, "created": 1697467088101, @@ -20904,7 +26683,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02rqb010joohx5h8ag28y", "revision_nr": 1, "created": 1697467088105, "modified": 1697467088105 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rqb010joohx5h8ag28y", + "revision_nr": 1, + "created": 1697467088105, + "modified": 1697467088105 + } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240", @@ -20915,7 +26701,10 @@ "dateValidity": 1688773726146, "totalValue": 15.572371266885096, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1696993200000 } + "balancesModificacao": { + "type": 6, + "value": 1696993200000 + } }, "revision": "lnt02rle00yooohxfhvdebvv", "revision_nr": 1, @@ -20927,7 +26716,11 @@ "path": "ivipcoin-db::__movement_wallet__/026685155320837372/balances/IVIP", "content": { "type": 1, - "value": { "available": "8958033.00000000", "symbol": "IVIP", "value": 9273.73 }, + "value": { + "available": "8958033.00000000", + "symbol": "IVIP", + "value": 9273.73 + }, "revision": "lnt02rqj010noohx8q1c12wq", "revision_nr": 1, "created": 1697467088110, @@ -20936,7 +26729,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02rqj010moohxdqpa3h0y", "revision_nr": 1, "created": 1697467088112, "modified": 1697467088112 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rqj010moohxdqpa3h0y", + "revision_nr": 1, + "created": 1697467088112, + "modified": 1697467088112 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681332472707/description", @@ -20951,7 +26751,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681332472707/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rqr010roohx2emegwe0", "revision_nr": 1, "created": 1697467088118, "modified": 1697467088118 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rqr010roohx2emegwe0", + "revision_nr": 1, + "created": 1697467088118, + "modified": 1697467088118 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681332472707", @@ -20965,15 +26774,30 @@ "total_amount": 50, "history_id": 1681332472707, "id": 1681332472707, - "date_created": { "type": 6, "value": 1681332472707 }, - "date_last_updated": { "type": 6, "value": 1681334114528 }, - "date_of_expiration": { "type": 6, "value": 1683924472707 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1681334114528 }, - "money_release_date": { "type": 6, "value": 1681334114528 }, + "date_created": { + "type": 6, + "value": 1681332472707 + }, + "date_last_updated": { + "type": 6, + "value": 1681334114528 + }, + "date_of_expiration": { + "type": 6, + "value": 1683924472707 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1681334114528 + }, + "money_release_date": { + "type": 6, + "value": 1681334114528 + }, "money_release_status": "approved", "wasDebited": true }, @@ -20996,7 +26820,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681334377618/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rr0010uoohxhdyubix3", "revision_nr": 1, "created": 1697467088126, "modified": 1697467088126 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rr0010uoohxhdyubix3", + "revision_nr": 1, + "created": 1697467088126, + "modified": 1697467088126 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681334377618", @@ -21010,15 +26843,30 @@ "total_amount": 350, "history_id": 1681334377618, "id": 1681334377618, - "date_created": { "type": 6, "value": 1681334377618 }, - "date_last_updated": { "type": 6, "value": 1681334547169 }, - "date_of_expiration": { "type": 6, "value": 1683926377618 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1681334547169 }, - "money_release_date": { "type": 6, "value": 1681334547169 }, + "date_created": { + "type": 6, + "value": 1681334377618 + }, + "date_last_updated": { + "type": 6, + "value": 1681334547169 + }, + "date_of_expiration": { + "type": 6, + "value": 1683926377618 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1681334547169 + }, + "money_release_date": { + "type": 6, + "value": 1681334547169 + }, "money_release_status": "approved", "wasDebited": true }, @@ -21041,7 +26889,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682092492202/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rr8010xoohx51jr8b9a", "revision_nr": 1, "created": 1697467088135, "modified": 1697467088135 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rr8010xoohx51jr8b9a", + "revision_nr": 1, + "created": 1697467088135, + "modified": 1697467088135 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682092492202", @@ -21055,15 +26912,30 @@ "total_amount": 200, "history_id": 1682092492202, "id": 1682092492202, - "date_created": { "type": 6, "value": 1682092492202 }, - "date_last_updated": { "type": 6, "value": 1682357453305 }, - "date_of_expiration": { "type": 6, "value": 1684684492202 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1682357453305 }, - "money_release_date": { "type": 6, "value": 1682357453305 }, + "date_created": { + "type": 6, + "value": 1682092492202 + }, + "date_last_updated": { + "type": 6, + "value": 1682357453305 + }, + "date_of_expiration": { + "type": 6, + "value": 1684684492202 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1682357453305 + }, + "money_release_date": { + "type": 6, + "value": 1682357453305 + }, "money_release_status": "approved", "wasDebited": true }, @@ -21086,7 +26958,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682353441521/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rrh0110oohx20ci35e7", "revision_nr": 1, "created": 1697467088144, "modified": 1697467088144 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rrh0110oohx20ci35e7", + "revision_nr": 1, + "created": 1697467088144, + "modified": 1697467088144 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682353441521", @@ -21100,9 +26981,18 @@ "total_amount": 200, "history_id": 1682353441521, "id": 1682353441521, - "date_created": { "type": 6, "value": 1682353441521 }, - "date_last_updated": { "type": 6, "value": 1682353441521 }, - "date_of_expiration": { "type": 6, "value": 1684945441521 }, + "date_created": { + "type": 6, + "value": 1682353441521 + }, + "date_last_updated": { + "type": 6, + "value": 1682353441521 + }, + "date_of_expiration": { + "type": 6, + "value": 1684945441521 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -21129,7 +27019,11 @@ "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 20 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 20 + }, "revision": "lnt02rrq0115oohx4ruq0h4l", "revision_nr": 1, "created": 1697467088152, @@ -21138,11 +27032,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02rrp0114oohx91qrfaix", "revision_nr": 1, "created": 1697467088156, "modified": 1697467088157 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02rrp0114oohx91qrfaix", + "revision_nr": 1, + "created": 1697467088156, + "modified": 1697467088157 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344/details", - "content": { "type": 1, "value": {}, "revision": "lnt02rrp0113oohx218bg4iz", "revision_nr": 1, "created": 1697467088160, "modified": 1697467088160 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rrp0113oohx218bg4iz", + "revision_nr": 1, + "created": 1697467088160, + "modified": 1697467088160 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344", @@ -21156,9 +27064,18 @@ "total_amount": 1020, "history_id": 1682354342344, "id": 1682354342344, - "date_created": { "type": 6, "value": 1682354342344 }, - "date_last_updated": { "type": 6, "value": 1682354342344 }, - "date_of_expiration": { "type": 6, "value": 1684946342344 }, + "date_created": { + "type": 6, + "value": 1682354342344 + }, + "date_last_updated": { + "type": 6, + "value": 1682354342344 + }, + "date_of_expiration": { + "type": 6, + "value": 1684946342344 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -21207,9 +27124,18 @@ "original_amount": 8647027, "total_amount": 8647027, "id": 1684018921033, - "date_created": { "type": 6, "value": 1684018921033 }, - "date_last_updated": { "type": 6, "value": 1684018921033 }, - "date_of_expiration": { "type": 6, "value": 1684018921033 }, + "date_created": { + "type": 6, + "value": 1684018921033 + }, + "date_last_updated": { + "type": 6, + "value": 1684018921033 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018921033 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -21237,7 +27163,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689084265995/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rsc011aoohxfnhz2rxb", "revision_nr": 1, "created": 1697467088176, "modified": 1697467088176 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rsc011aoohxfnhz2rxb", + "revision_nr": 1, + "created": 1697467088176, + "modified": 1697467088176 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689084265995", @@ -21251,15 +27186,30 @@ "total_amount": 400, "history_id": 1689084265995, "id": 1689084265995, - "date_created": { "type": 6, "value": 1689084265995 }, - "date_last_updated": { "type": 6, "value": 1689275138556 }, - "date_of_expiration": { "type": 6, "value": 1691676265995 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689275138556 }, - "money_release_date": { "type": 6, "value": 1689275138556 }, + "date_created": { + "type": 6, + "value": 1689084265995 + }, + "date_last_updated": { + "type": 6, + "value": 1689275138556 + }, + "date_of_expiration": { + "type": 6, + "value": 1691676265995 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689275138556 + }, + "money_release_date": { + "type": 6, + "value": 1689275138556 + }, "money_release_status": "approved", "wasDebited": true }, @@ -21282,7 +27232,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689095021542/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rsm011doohx84vq4lyz", "revision_nr": 1, "created": 1697467088184, "modified": 1697467088184 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rsm011doohx84vq4lyz", + "revision_nr": 1, + "created": 1697467088184, + "modified": 1697467088184 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689095021542", @@ -21296,9 +27255,18 @@ "total_amount": 401.02, "history_id": 1689095021542, "id": 1689095021542, - "date_created": { "type": 6, "value": 1689095021542 }, - "date_last_updated": { "type": 6, "value": 1689095021542 }, - "date_of_expiration": { "type": 6, "value": 1691687021542 }, + "date_created": { + "type": 6, + "value": 1689095021542 + }, + "date_last_updated": { + "type": 6, + "value": 1689095021542 + }, + "date_of_expiration": { + "type": 6, + "value": 1691687021542 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -21346,9 +27314,18 @@ "original_amount": 168630, "total_amount": 168630, "id": 1689275206669, - "date_created": { "type": 6, "value": 1689275206669 }, - "date_last_updated": { "type": 6, "value": 1689275206669 }, - "date_of_expiration": { "type": 6, "value": 1689275206669 }, + "date_created": { + "type": 6, + "value": 1689275206669 + }, + "date_last_updated": { + "type": 6, + "value": 1689275206669 + }, + "date_of_expiration": { + "type": 6, + "value": 1689275206669 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -21367,7 +27344,13 @@ "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693192070124 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693192070124 + } + }, "revision": "lnt02rt0011hoohxdnli2481", "revision_nr": 1, "created": 1697467088199, @@ -21429,16 +27412,28 @@ "total_amount": 30, "id": 1690600070124, "history_id": 1690600070124, - "date_created": { "type": 6, "value": 1690600070124 }, - "date_last_updated": { "type": 6, "value": 1690809267089 }, + "date_created": { + "type": 6, + "value": 1690600070124 + }, + "date_last_updated": { + "type": 6, + "value": 1690809267089 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1690809267089 }, - "money_release_date": { "type": 6, "value": 1690809267089 }, + "date_approved": { + "type": 6, + "value": 1690809267089 + }, + "money_release_date": { + "type": 6, + "value": 1690809267089 + }, "money_release_status": "approved", "wasDebited": true }, @@ -21492,9 +27487,18 @@ "total_amount": 26363, "id": 1690822928470, "history_id": 1690822928470, - "date_created": { "type": 6, "value": 1690822928470 }, - "date_last_updated": { "type": 6, "value": 1690822928470 }, - "date_of_expiration": { "type": 6, "value": 1690822928470 }, + "date_created": { + "type": 6, + "value": 1690822928470 + }, + "date_last_updated": { + "type": 6, + "value": 1690822928470 + }, + "date_of_expiration": { + "type": 6, + "value": 1690822928470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -21513,7 +27517,13 @@ "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693501456427 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693501456427 + } + }, "revision": "lnt02rtp011poohxeej27att", "revision_nr": 1, "created": 1697467088225, @@ -21575,16 +27585,28 @@ "total_amount": 100, "id": 1690909456427, "history_id": 1690909456427, - "date_created": { "type": 6, "value": 1690909456427 }, - "date_last_updated": { "type": 6, "value": 1690977485678 }, + "date_created": { + "type": 6, + "value": 1690909456427 + }, + "date_last_updated": { + "type": 6, + "value": 1690977485678 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1690977485678 }, - "money_release_date": { "type": 6, "value": 1690977485678 }, + "date_approved": { + "type": 6, + "value": 1690977485678 + }, + "money_release_date": { + "type": 6, + "value": 1690977485678 + }, "money_release_status": "approved", "wasDebited": true }, @@ -21638,9 +27660,18 @@ "total_amount": 116013, "id": 1690977815869, "history_id": 1690977815869, - "date_created": { "type": 6, "value": 1690977815869 }, - "date_last_updated": { "type": 6, "value": 1690977815869 }, - "date_of_expiration": { "type": 6, "value": 1690977815869 }, + "date_created": { + "type": 6, + "value": 1690977815869 + }, + "date_last_updated": { + "type": 6, + "value": 1690977815869 + }, + "date_of_expiration": { + "type": 6, + "value": 1690977815869 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -21657,7 +27688,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history", - "content": { "type": 1, "value": {}, "revision": "lnt02rqo010ooohx0qabdbwl", "revision_nr": 1, "created": 1697467088248, "modified": 1697467088248 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rqo010ooohx0qabdbwl", + "revision_nr": 1, + "created": 1697467088248, + "modified": 1697467088248 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344/description", @@ -21674,7 +27712,11 @@ "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 20 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 20 + }, "revision": "lnt02ruk0122oohxa5yzbklf", "revision_nr": 1, "created": 1697467088255, @@ -21683,7 +27725,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02ruk0121oohx7atwawnw", "revision_nr": 1, "created": 1697467088259, "modified": 1697467088259 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02ruk0121oohx7atwawnw", + "revision_nr": 1, + "created": 1697467088259, + "modified": 1697467088259 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344", @@ -21696,7 +27745,10 @@ "total_amount": 1020, "installments": 1, "installment_amount": 1020, - "date_created": { "type": 6, "value": 1682354342344 }, + "date_created": { + "type": 6, + "value": 1682354342344 + }, "history_id": 1682354342344, "currency_id": "BRL" }, @@ -21708,17 +27760,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305", - "content": { "type": 1, "value": {}, "revision": "lnt02rug011yoohx700meur4", "revision_nr": 1, "created": 1697467088264, "modified": 1697467088264 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rug011yoohx700meur4", + "revision_nr": 1, + "created": 1697467088264, + "modified": 1697467088264 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt02rug011xoohx7dblc0jk", "revision_nr": 1, "created": 1697467088267, "modified": 1697467088267 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rug011xoohx7dblc0jk", + "revision_nr": 1, + "created": 1697467088267, + "modified": 1697467088267 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit", "content": { "type": 1, - "value": { "approvedLimit": 1000, "limitUsed": 1000, "analysisRequested": { "type": 6, "value": 1682092437620 }, "lastReview": { "type": 6, "value": 1682092464302 } }, + "value": { + "approvedLimit": 1000, + "limitUsed": 1000, + "analysisRequested": { + "type": 6, + "value": 1682092437620 + }, + "lastReview": { + "type": 6, + "value": 1682092464302 + } + }, "revision": "lnt02rug011woohxc2b82esu", "revision_nr": 1, "created": 1697467088269, @@ -21729,7 +27806,16 @@ "path": "ivipcoin-db::__movement_wallet__/026685155320837372", "content": { "type": 1, - "value": { "dataModificacao": 1681239500343, "dateValidity": 1681239500343, "totalValue": 405.92, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696215600000 } }, + "value": { + "dataModificacao": 1681239500343, + "dateValidity": 1681239500343, + "totalValue": 405.92, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696215600000 + } + }, "revision": "lnt02rqj010loohx7hrv95bm", "revision_nr": 1, "created": 1697467088272, @@ -21740,7 +27826,14 @@ "path": "ivipcoin-db::__movement_wallet__/027193309143186410", "content": { "type": 1, - "value": { "dataModificacao": 1678237675259, "dateValidity": 1678252075296, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678237675259, + "dateValidity": 1678252075296, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02rv40123oohx6y246yen", "revision_nr": 1, "created": 1697467088276, @@ -21751,7 +27844,11 @@ "path": "ivipcoin-db::__movement_wallet__/027536607098873624/balances/BRL", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, "revision": "lnt02rv90126oohx7pbjguoo", "revision_nr": 1, "created": 1697467088282, @@ -21762,7 +27859,11 @@ "path": "ivipcoin-db::__movement_wallet__/027536607098873624/balances/IVIP", "content": { "type": 1, - "value": { "available": "7306097.00000000", "symbol": "IVIP", "value": 2344.22 }, + "value": { + "available": "7306097.00000000", + "symbol": "IVIP", + "value": 2344.22 + }, "revision": "lnt02rve0127oohx50x67n30", "revision_nr": 1, "created": 1697467088285, @@ -21771,7 +27872,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02rv90125oohx1sd11inb", "revision_nr": 1, "created": 1697467088288, "modified": 1697467088288 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rv90125oohx1sd11inb", + "revision_nr": 1, + "created": 1697467088288, + "modified": 1697467088288 + } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684115687035/description", @@ -21786,7 +27894,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684115687035/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rvo012boohx8ml9hioo", "revision_nr": 1, "created": 1697467088295, "modified": 1697467088295 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rvo012boohx8ml9hioo", + "revision_nr": 1, + "created": 1697467088295, + "modified": 1697467088295 + } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684115687035", @@ -21800,15 +27917,30 @@ "total_amount": 1000, "history_id": 1684115687035, "id": 1684115687035, - "date_created": { "type": 6, "value": 1684115687035 }, - "date_last_updated": { "type": 6, "value": 1684116686172 }, - "date_of_expiration": { "type": 6, "value": 1686707687035 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684116686172 }, - "money_release_date": { "type": 6, "value": 1684116686172 }, + "date_created": { + "type": 6, + "value": 1684115687035 + }, + "date_last_updated": { + "type": 6, + "value": 1684116686172 + }, + "date_of_expiration": { + "type": 6, + "value": 1686707687035 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684116686172 + }, + "money_release_date": { + "type": 6, + "value": 1684116686172 + }, "money_release_status": "approved", "wasDebited": true }, @@ -21831,7 +27963,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684116712162/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rvx012eoohxaam83l8o", "revision_nr": 1, "created": 1697467088304, "modified": 1697467088304 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rvx012eoohxaam83l8o", + "revision_nr": 1, + "created": 1697467088304, + "modified": 1697467088304 + } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684116712162", @@ -21845,15 +27986,30 @@ "total_amount": 500, "history_id": 1684116712162, "id": 1684116712162, - "date_created": { "type": 6, "value": 1684116712162 }, - "date_last_updated": { "type": 6, "value": 1684116737988 }, - "date_of_expiration": { "type": 6, "value": 1686708712162 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684116737988 }, - "money_release_date": { "type": 6, "value": 1684116737988 }, + "date_created": { + "type": 6, + "value": 1684116712162 + }, + "date_last_updated": { + "type": 6, + "value": 1684116737988 + }, + "date_of_expiration": { + "type": 6, + "value": 1686708712162 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684116737988 + }, + "money_release_date": { + "type": 6, + "value": 1684116737988 + }, "money_release_status": "approved", "wasDebited": true }, @@ -21899,9 +28055,18 @@ "original_amount": 7306097, "total_amount": 7306097, "id": 1684625508072, - "date_created": { "type": 6, "value": 1684625508072 }, - "date_last_updated": { "type": 6, "value": 1684625508072 }, - "date_of_expiration": { "type": 6, "value": 1684625508072 }, + "date_created": { + "type": 6, + "value": 1684625508072 + }, + "date_last_updated": { + "type": 6, + "value": 1684625508072 + }, + "date_of_expiration": { + "type": 6, + "value": 1684625508072 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -21929,7 +28094,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398096730/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rwc012joohx6rjce1la", "revision_nr": 1, "created": 1697467088319, "modified": 1697467088319 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rwc012joohx6rjce1la", + "revision_nr": 1, + "created": 1697467088319, + "modified": 1697467088319 + } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398096730", @@ -21943,9 +28117,18 @@ "total_amount": 7306097, "history_id": 1685398096730, "id": 1685398096730, - "date_created": { "type": 6, "value": 1685398096730 }, - "date_last_updated": { "type": 6, "value": 1685398096730 }, - "date_of_expiration": { "type": 6, "value": 1685398096730 }, + "date_created": { + "type": 6, + "value": 1685398096730 + }, + "date_last_updated": { + "type": 6, + "value": 1685398096730 + }, + "date_of_expiration": { + "type": 6, + "value": 1685398096730 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -21970,7 +28153,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398151765/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rwk012moohxelxg10v8", "revision_nr": 1, "created": 1697467088327, "modified": 1697467088327 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rwk012moohxelxg10v8", + "revision_nr": 1, + "created": 1697467088327, + "modified": 1697467088327 + } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398151765", @@ -21984,9 +28176,18 @@ "total_amount": 7306097, "history_id": 1685398151765, "id": 1685398151765, - "date_created": { "type": 6, "value": 1685398151765 }, - "date_last_updated": { "type": 6, "value": 1685398151765 }, - "date_of_expiration": { "type": 6, "value": 1685398151765 }, + "date_created": { + "type": 6, + "value": 1685398151765 + }, + "date_last_updated": { + "type": 6, + "value": 1685398151765 + }, + "date_of_expiration": { + "type": 6, + "value": 1685398151765 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -22000,13 +28201,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history", - "content": { "type": 1, "value": {}, "revision": "lnt02rvk0128oohx43fs0bb8", "revision_nr": 1, "created": 1697467088333, "modified": 1697467088333 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rvk0128oohx43fs0bb8", + "revision_nr": 1, + "created": 1697467088333, + "modified": 1697467088333 + } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02rwt012noohx4bcr76cz", "revision_nr": 1, "created": 1697467088336, @@ -22017,7 +28229,13 @@ "path": "ivipcoin-db::__movement_wallet__/027536607098873624", "content": { "type": 1, - "value": { "dataModificacao": 1684115568267, "dateValidity": 1684115568267, "totalValue": 301.2, "currencyType": "USD", "balancesModificacao": 1689822000000 }, + "value": { + "dataModificacao": 1684115568267, + "dateValidity": 1684115568267, + "totalValue": 301.2, + "currencyType": "USD", + "balancesModificacao": 1689822000000 + }, "revision": "lnt02rv90124oohx4b2q3etb", "revision_nr": 1, "created": 1697467088339, @@ -22028,7 +28246,14 @@ "path": "ivipcoin-db::__movement_wallet__/028175815433013172", "content": { "type": 1, - "value": { "dataModificacao": 1678161645477, "dateValidity": 1678176045916, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678161645477, + "dateValidity": 1678176045916, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02rwz012ooohx0ipkco7b", "revision_nr": 1, "created": 1697467088342, @@ -22039,7 +28264,14 @@ "path": "ivipcoin-db::__movement_wallet__/028947617959504292", "content": { "type": 1, - "value": { "dataModificacao": 1678243619498, "dateValidity": 1678254419535, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678243619498, + "dateValidity": 1678254419535, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02rx2012poohxhbtidghk", "revision_nr": 1, "created": 1697467088345, @@ -22050,7 +28282,11 @@ "path": "ivipcoin-db::__movement_wallet__/029287228206681390/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02rx5012roohx9ajn9vw9", "revision_nr": 1, "created": 1697467088347, @@ -22061,7 +28297,13 @@ "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693005005269 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693005005269 + } + }, "revision": "lnt02rx8012uoohx11o97rlg", "revision_nr": 1, "created": 1697467088350, @@ -22123,8 +28365,14 @@ "total_amount": 20, "id": 1690413005269, "history_id": 1690413005269, - "date_created": { "type": 6, "value": 1690413005269 }, - "date_last_updated": { "type": 6, "value": 1690413005269 }, + "date_created": { + "type": 6, + "value": 1690413005269 + }, + "date_last_updated": { + "type": 6, + "value": 1690413005269 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -22142,7 +28390,13 @@ "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693613470147 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693613470147 + } + }, "revision": "lnt02rxo012zoohx9ilo0gp4", "revision_nr": 1, "created": 1697467088367, @@ -22204,8 +28458,14 @@ "total_amount": 20, "id": 1691021470147, "history_id": 1691021470147, - "date_created": { "type": 6, "value": 1691021470147 }, - "date_last_updated": { "type": 6, "value": 1691021470147 }, + "date_created": { + "type": 6, + "value": 1691021470147 + }, + "date_last_updated": { + "type": 6, + "value": 1691021470147 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -22223,7 +28483,13 @@ "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694007318336 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694007318336 + } + }, "revision": "lnt02ry30134oohxfh48adp5", "revision_nr": 1, "created": 1697467088382, @@ -22285,16 +28551,28 @@ "total_amount": 30, "id": 1691415318336, "history_id": 1691415318336, - "date_created": { "type": 6, "value": 1691415318336 }, - "date_last_updated": { "type": 6, "value": 1691415472035 }, + "date_created": { + "type": 6, + "value": 1691415318336 + }, + "date_last_updated": { + "type": 6, + "value": 1691415472035 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691415472035 }, - "money_release_date": { "type": 6, "value": 1691415472035 }, + "date_approved": { + "type": 6, + "value": 1691415472035 + }, + "money_release_date": { + "type": 6, + "value": 1691415472035 + }, "money_release_status": "approved", "wasDebited": true }, @@ -22348,9 +28626,18 @@ "total_amount": 41845, "id": 1691415588273, "history_id": 1691415588273, - "date_created": { "type": 6, "value": 1691415588273 }, - "date_last_updated": { "type": 6, "value": 1691415588273 }, - "date_of_expiration": { "type": 6, "value": 1691415588273 }, + "date_created": { + "type": 6, + "value": 1691415588273 + }, + "date_last_updated": { + "type": 6, + "value": 1691415588273 + }, + "date_of_expiration": { + "type": 6, + "value": 1691415588273 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -22391,7 +28678,11 @@ "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 1255.35 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 1255.35 + }, "revision": "lnt02rz0013goohxgt7k2rbk", "revision_nr": 1, "created": 1697467088415, @@ -22400,7 +28691,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02rz0013foohx9l9y3x2s", "revision_nr": 1, "created": 1697467088418, "modified": 1697467088418 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02rz0013foohx9l9y3x2s", + "revision_nr": 1, + "created": 1697467088418, + "modified": 1697467088418 + } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details", @@ -22435,17 +28733,32 @@ "total_amount": 40589.65, "id": "1696141267349", "history_id": "1696141267349", - "date_created": { "type": 6, "value": 1696141267349 }, - "date_last_updated": { "type": 6, "value": 1696293156722 }, - "date_of_expiration": { "type": 6, "value": 1696141267349 }, + "date_created": { + "type": 6, + "value": 1696141267349 + }, + "date_last_updated": { + "type": 6, + "value": 1696293156722 + }, + "date_of_expiration": { + "type": 6, + "value": 1696141267349 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1696293156722 }, - "money_release_date": { "type": 6, "value": 1696293156722 }, + "date_approved": { + "type": 6, + "value": 1696293156722 + }, + "money_release_date": { + "type": 6, + "value": 1696293156722 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -22481,7 +28794,11 @@ "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 1255.35 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 1255.35 + }, "revision": "lnt02rzj013moohxb9ct4t25", "revision_nr": 1, "created": 1697467088433, @@ -22490,7 +28807,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02rzj013loohx28hj1hnt", "revision_nr": 1, "created": 1697467088436, "modified": 1697467088436 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02rzj013loohx28hj1hnt", + "revision_nr": 1, + "created": 1697467088436, + "modified": 1697467088436 + } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details", @@ -22525,16 +28849,28 @@ "total_amount": 40589.65, "id": "1696142296852", "history_id": "1696142296852", - "date_created": { "type": 6, "value": 1696142296852 }, - "date_last_updated": { "type": 6, "value": 1696293977233 }, - "date_of_expiration": { "type": 6, "value": 1696142296852 }, + "date_created": { + "type": 6, + "value": 1696142296852 + }, + "date_last_updated": { + "type": 6, + "value": 1696293977233 + }, + "date_of_expiration": { + "type": 6, + "value": 1696142296852 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_amount", - "money_release_date": { "type": 6, "value": 1696293977233 }, + "money_release_date": { + "type": 6, + "value": 1696293977233 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -22546,13 +28882,27 @@ }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history", - "content": { "type": 1, "value": {}, "revision": "lnt02rx7012soohx3vkb4n4m", "revision_nr": 1, "created": 1697467088445, "modified": 1697467088445 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rx7012soohx3vkb4n4m", + "revision_nr": 1, + "created": 1697467088445, + "modified": 1697467088445 + } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390", "content": { "type": 1, - "value": { "balances": {}, "dateValidity": 1690386695913, "balancesModificacao": { "type": 6, "value": 1697252400000 } }, + "value": { + "balances": {}, + "dateValidity": 1690386695913, + "balancesModificacao": { + "type": 6, + "value": 1697252400000 + } + }, "revision": "lnt02rx5012qoohxd5n894id", "revision_nr": 1, "created": 1697467088447, @@ -22563,7 +28913,14 @@ "path": "ivipcoin-db::__movement_wallet__/029673451892467508", "content": { "type": 1, - "value": { "dataModificacao": 1678135581348, "dateValidity": 1678166670994, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678135581348, + "dateValidity": 1678166670994, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02s00013noohxcwmbf5rk", "revision_nr": 1, "created": 1697467088451, @@ -22574,7 +28931,14 @@ "path": "ivipcoin-db::__movement_wallet__/030266248194021460", "content": { "type": 1, - "value": { "dataModificacao": 1684104956115, "dateValidity": 1684104956115, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684104956115, + "dateValidity": 1684104956115, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02s03013ooohxesbi6uha", "revision_nr": 1, "created": 1697467088454, @@ -22585,7 +28949,13 @@ "path": "ivipcoin-db::__movement_wallet__/031498453118469660", "content": { "type": 1, - "value": { "dataModificacao": 1696478671880, "dateValidity": 1696478671929, "balances": {}, "history": {}, "currencyType": "USD" }, + "value": { + "dataModificacao": 1696478671880, + "dateValidity": 1696478671929, + "balances": {}, + "history": {}, + "currencyType": "USD" + }, "revision": "lnt02s06013poohx0cayh621", "revision_nr": 1, "created": 1697467088457, @@ -22596,7 +28966,11 @@ "path": "ivipcoin-db::__movement_wallet__/032980170462535652/balances/IVIP", "content": { "type": 1, - "value": { "available": "5000843.00000000", "symbol": "IVIP", "value": 622.94 }, + "value": { + "available": "5000843.00000000", + "symbol": "IVIP", + "value": 622.94 + }, "revision": "lnt02s09013soohx4vfb8e67", "revision_nr": 1, "created": 1697467088460, @@ -22605,7 +28979,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02s09013roohxa78dereq", "revision_nr": 1, "created": 1697467088463, "modified": 1697467088463 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02s09013roohxa78dereq", + "revision_nr": 1, + "created": 1697467088463, + "modified": 1697467088463 + } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1688955478238/description", @@ -22620,7 +29001,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1688955478238/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02s0i013woohxdkkr6bua", "revision_nr": 1, "created": 1697467088469, "modified": 1697467088469 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02s0i013woohxdkkr6bua", + "revision_nr": 1, + "created": 1697467088469, + "modified": 1697467088469 + } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1688955478238", @@ -22634,15 +29024,30 @@ "total_amount": 100, "history_id": 1688955478238, "id": 1688955478238, - "date_created": { "type": 6, "value": 1688955478238 }, - "date_last_updated": { "type": 6, "value": 1689002683693 }, - "date_of_expiration": { "type": 6, "value": 1691547478238 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689002683693 }, - "money_release_date": { "type": 6, "value": 1689002683693 }, + "date_created": { + "type": 6, + "value": 1688955478238 + }, + "date_last_updated": { + "type": 6, + "value": 1689002683693 + }, + "date_of_expiration": { + "type": 6, + "value": 1691547478238 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689002683693 + }, + "money_release_date": { + "type": 6, + "value": 1689002683693 + }, "money_release_status": "approved", "wasDebited": true }, @@ -22688,9 +29093,18 @@ "original_amount": 145670, "total_amount": 145670, "id": 1689002980878, - "date_created": { "type": 6, "value": 1689002980878 }, - "date_last_updated": { "type": 6, "value": 1689002980878 }, - "date_of_expiration": { "type": 6, "value": 1689002980878 }, + "date_created": { + "type": 6, + "value": 1689002980878 + }, + "date_last_updated": { + "type": 6, + "value": 1689002980878 + }, + "date_of_expiration": { + "type": 6, + "value": 1689002980878 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -22709,7 +29123,13 @@ "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693784217742 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693784217742 + } + }, "revision": "lnt02s0w0140oohxd51e2b2u", "revision_nr": 1, "created": 1697467088482, @@ -22771,16 +29191,28 @@ "total_amount": 356, "id": 1691192217742, "history_id": 1691192217742, - "date_created": { "type": 6, "value": 1691192217742 }, - "date_last_updated": { "type": 6, "value": 1691249189728 }, + "date_created": { + "type": 6, + "value": 1691192217742 + }, + "date_last_updated": { + "type": 6, + "value": 1691249189728 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691249189728 }, - "money_release_date": { "type": 6, "value": 1691249189728 }, + "date_approved": { + "type": 6, + "value": 1691249189728 + }, + "money_release_date": { + "type": 6, + "value": 1691249189728 + }, "money_release_status": "approved", "wasDebited": true }, @@ -22834,9 +29266,18 @@ "total_amount": 505200, "id": 1691277371847, "history_id": 1691277371847, - "date_created": { "type": 6, "value": 1691277371847 }, - "date_last_updated": { "type": 6, "value": 1691277371847 }, - "date_of_expiration": { "type": 6, "value": 1691277371847 }, + "date_created": { + "type": 6, + "value": 1691277371847 + }, + "date_last_updated": { + "type": 6, + "value": 1691277371847 + }, + "date_of_expiration": { + "type": 6, + "value": 1691277371847 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -22855,7 +29296,13 @@ "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694307306900 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694307306900 + } + }, "revision": "lnt02s1m0148oohxea5w23x3", "revision_nr": 1, "created": 1697467088509, @@ -22917,16 +29364,28 @@ "total_amount": 1800, "id": 1691715306900, "history_id": 1691715306900, - "date_created": { "type": 6, "value": 1691715306900 }, - "date_last_updated": { "type": 6, "value": 1691807444902 }, + "date_created": { + "type": 6, + "value": 1691715306900 + }, + "date_last_updated": { + "type": 6, + "value": 1691807444902 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691807444902 }, - "money_release_date": { "type": 6, "value": 1691807444902 }, + "date_approved": { + "type": 6, + "value": 1691807444902 + }, + "money_release_date": { + "type": 6, + "value": 1691807444902 + }, "money_release_status": "approved", "wasDebited": true }, @@ -22980,9 +29439,18 @@ "total_amount": 3402797, "id": 1691847078457, "history_id": 1691847078457, - "date_created": { "type": 6, "value": 1691847078457 }, - "date_last_updated": { "type": 6, "value": 1691847078457 }, - "date_of_expiration": { "type": 6, "value": 1691847078457 }, + "date_created": { + "type": 6, + "value": 1691847078457 + }, + "date_last_updated": { + "type": 6, + "value": 1691847078457 + }, + "date_of_expiration": { + "type": 6, + "value": 1691847078457 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -23001,7 +29469,13 @@ "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698279005865 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698279005865 + } + }, "revision": "lnt02s2c014goohx281t68si", "revision_nr": 1, "created": 1697467088535, @@ -23064,16 +29538,28 @@ "total_amount": 647176, "id": "1695687005865", "history_id": "1695687005865", - "date_created": { "type": 6, "value": 1695687005865 }, - "date_last_updated": { "type": 6, "value": 1695687878463 }, + "date_created": { + "type": 6, + "value": 1695687005865 + }, + "date_last_updated": { + "type": 6, + "value": 1695687878463 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1695687878463 }, - "money_release_date": { "type": 6, "value": 1695687878463 }, + "date_approved": { + "type": 6, + "value": 1695687878463 + }, + "money_release_date": { + "type": 6, + "value": 1695687878463 + }, "money_release_status": "approved", "wasDebited": true }, @@ -23087,7 +29573,13 @@ "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698443432960 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698443432960 + } + }, "revision": "lnt02s2s014loohxefj7gqu5", "revision_nr": 1, "created": 1697467088551, @@ -23150,16 +29642,28 @@ "total_amount": 300000, "id": "1695851432961", "history_id": "1695851432961", - "date_created": { "type": 6, "value": 1695851432961 }, - "date_last_updated": { "type": 6, "value": 1695934087672 }, + "date_created": { + "type": 6, + "value": 1695851432961 + }, + "date_last_updated": { + "type": 6, + "value": 1695934087672 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1695934087672 }, - "money_release_date": { "type": 6, "value": 1695934087672 }, + "date_approved": { + "type": 6, + "value": 1695934087672 + }, + "money_release_date": { + "type": 6, + "value": 1695934087672 + }, "money_release_status": "approved", "wasDebited": true }, @@ -23171,13 +29675,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history", - "content": { "type": 1, "value": {}, "revision": "lnt02s0f013toohx7jgy6jyr", "revision_nr": 1, "created": 1697467088567, "modified": 1697467088567 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02s0f013toohx7jgy6jyr", + "revision_nr": 1, + "created": 1697467088567, + "modified": 1697467088567 + } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02s3b014poohxggvwefeo", "revision_nr": 1, "created": 1697467088570, @@ -23188,7 +29703,16 @@ "path": "ivipcoin-db::__movement_wallet__/032980170462535652", "content": { "type": 1, - "value": { "dataModificacao": 1688955354063, "dateValidity": 1688955354063, "totalValue": 20.42, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696906800000 } }, + "value": { + "dataModificacao": 1688955354063, + "dateValidity": 1688955354063, + "totalValue": 20.42, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696906800000 + } + }, "revision": "lnt02s09013qoohxgb77a6wy", "revision_nr": 1, "created": 1697467088573, @@ -23199,7 +29723,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/balances/BRL", "content": { "type": 1, - "value": { "available": "62.42718182", "symbol": "BRL", "value": 12.2 }, + "value": { + "available": "62.42718182", + "symbol": "BRL", + "value": 12.2 + }, "revision": "lnt02s3h014soohxhmqydvtp", "revision_nr": 1, "created": 1697467088576, @@ -23210,7 +29738,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/balances/IVIP", "content": { "type": 1, - "value": { "available": "302069023.00000000", "symbol": "IVIP", "value": 32205.5 }, + "value": { + "available": "302069023.00000000", + "symbol": "IVIP", + "value": 32205.5 + }, "revision": "lnt02s3k014toohxaxghbzdu", "revision_nr": 1, "created": 1697467088579, @@ -23219,7 +29751,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02s3h014roohx7m1scyej", "revision_nr": 1, "created": 1697467088581, "modified": 1697467088581 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02s3h014roohx7m1scyej", + "revision_nr": 1, + "created": 1697467088581, + "modified": 1697467088581 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785461525/description", @@ -23234,7 +29773,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785461525/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02s3t014xoohxbwn19hvg", "revision_nr": 1, "created": 1697467088588, "modified": 1697467088588 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02s3t014xoohxbwn19hvg", + "revision_nr": 1, + "created": 1697467088588, + "modified": 1697467088588 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785461525", @@ -23248,15 +29796,30 @@ "total_amount": 5510, "history_id": 1677785461525, "id": 1677785461525, - "date_created": { "type": 6, "value": 1677785461525 }, - "date_last_updated": { "type": 6, "value": 1677793984457 }, - "date_of_expiration": { "type": 6, "value": 1680377461525 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677793984457 }, - "money_release_date": { "type": 6, "value": 1677793984457 }, + "date_created": { + "type": 6, + "value": 1677785461525 + }, + "date_last_updated": { + "type": 6, + "value": 1677793984457 + }, + "date_of_expiration": { + "type": 6, + "value": 1680377461525 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677793984457 + }, + "money_release_date": { + "type": 6, + "value": 1677793984457 + }, "money_release_status": "approved", "wasDebited": true }, @@ -23279,7 +29842,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785378675/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02s430150oohxc63s0er4", "revision_nr": 1, "created": 1697467088598, "modified": 1697467088598 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02s430150oohxc63s0er4", + "revision_nr": 1, + "created": 1697467088598, + "modified": 1697467088598 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785378675", @@ -23293,15 +29865,30 @@ "total_amount": 6500, "history_id": 1677785378675, "id": 1677785378675, - "date_created": { "type": 6, "value": 1677785378675 }, - "date_last_updated": { "type": 6, "value": 1677794043971 }, - "date_of_expiration": { "type": 6, "value": 1680377378675 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677794043971 }, - "money_release_date": { "type": 6, "value": 1677794043971 }, + "date_created": { + "type": 6, + "value": 1677785378675 + }, + "date_last_updated": { + "type": 6, + "value": 1677794043971 + }, + "date_of_expiration": { + "type": 6, + "value": 1680377378675 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677794043971 + }, + "money_release_date": { + "type": 6, + "value": 1677794043971 + }, "money_release_status": "approved", "wasDebited": true }, @@ -23324,7 +29911,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785194938/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02s4d0153oohx42dn1cwl", "revision_nr": 1, "created": 1697467088609, "modified": 1697467088609 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02s4d0153oohx42dn1cwl", + "revision_nr": 1, + "created": 1697467088609, + "modified": 1697467088609 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785194938", @@ -23338,15 +29934,30 @@ "total_amount": 7700, "history_id": 1677785194938, "id": 1677785194938, - "date_created": { "type": 6, "value": 1677785194938 }, - "date_last_updated": { "type": 6, "value": 1677794098990 }, - "date_of_expiration": { "type": 6, "value": 1680377194938 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677794098990 }, - "money_release_date": { "type": 6, "value": 1677794098990 }, + "date_created": { + "type": 6, + "value": 1677785194938 + }, + "date_last_updated": { + "type": 6, + "value": 1677794098990 + }, + "date_of_expiration": { + "type": 6, + "value": 1680377194938 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677794098990 + }, + "money_release_date": { + "type": 6, + "value": 1677794098990 + }, "money_release_status": "approved", "wasDebited": true }, @@ -23369,7 +29980,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748547608/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02s4n0156oohx0hzd8dw8", "revision_nr": 1, "created": 1697467088618, "modified": 1697467088618 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02s4n0156oohx0hzd8dw8", + "revision_nr": 1, + "created": 1697467088618, + "modified": 1697467088618 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748547608", @@ -23383,15 +30003,30 @@ "total_amount": 9900, "history_id": 1677748547608, "id": 1677748547608, - "date_created": { "type": 6, "value": 1677748547608 }, - "date_last_updated": { "type": 6, "value": 1677760522227 }, - "date_of_expiration": { "type": 6, "value": 1680340547608 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677760522227 }, - "money_release_date": { "type": 6, "value": 1677760522227 }, + "date_created": { + "type": 6, + "value": 1677748547608 + }, + "date_last_updated": { + "type": 6, + "value": 1677760522227 + }, + "date_of_expiration": { + "type": 6, + "value": 1680340547608 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677760522227 + }, + "money_release_date": { + "type": 6, + "value": 1677760522227 + }, "money_release_status": "approved", "wasDebited": true }, @@ -23414,7 +30049,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748489604/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02s4x0159oohx6kjy3xjw", "revision_nr": 1, "created": 1697467088628, "modified": 1697467088628 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02s4x0159oohx6kjy3xjw", + "revision_nr": 1, + "created": 1697467088628, + "modified": 1697467088628 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748489604", @@ -23428,15 +30072,30 @@ "total_amount": 100, "history_id": 1677748489604, "id": 1677748489604, - "date_created": { "type": 6, "value": 1677748489604 }, - "date_last_updated": { "type": 6, "value": 1677755475426 }, - "date_of_expiration": { "type": 6, "value": 1680340489604 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677755475426 }, - "money_release_date": { "type": 6, "value": 1677755475426 }, + "date_created": { + "type": 6, + "value": 1677748489604 + }, + "date_last_updated": { + "type": 6, + "value": 1677755475426 + }, + "date_of_expiration": { + "type": 6, + "value": 1680340489604 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677755475426 + }, + "money_release_date": { + "type": 6, + "value": 1677755475426 + }, "money_release_status": "approved", "wasDebited": true }, @@ -23459,7 +30118,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678472649293/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02s56015coohx15wk0ar3", "revision_nr": 1, "created": 1697467088637, "modified": 1697467088637 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02s56015coohx15wk0ar3", + "revision_nr": 1, + "created": 1697467088637, + "modified": 1697467088637 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678472649293", @@ -23473,15 +30141,30 @@ "total_amount": 12000, "history_id": 1678472649293, "id": 1678472649293, - "date_created": { "type": 6, "value": 1678472649293 }, - "date_last_updated": { "type": 6, "value": 1678539415180 }, - "date_of_expiration": { "type": 6, "value": 1681064649293 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678539415180 }, - "money_release_date": { "type": 6, "value": 1678539415180 }, + "date_created": { + "type": 6, + "value": 1678472649293 + }, + "date_last_updated": { + "type": 6, + "value": 1678539415180 + }, + "date_of_expiration": { + "type": 6, + "value": 1681064649293 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678539415180 + }, + "money_release_date": { + "type": 6, + "value": 1678539415180 + }, "money_release_status": "approved", "wasDebited": true }, @@ -23527,9 +30210,18 @@ "original_amount": 71460340, "total_amount": 71460340, "id": 1678153842542, - "date_created": { "type": 6, "value": 1678153842542 }, - "date_last_updated": { "type": 6, "value": 1678153842542 }, - "date_of_expiration": { "type": 6, "value": 1678153842542 }, + "date_created": { + "type": 6, + "value": 1678153842542 + }, + "date_last_updated": { + "type": 6, + "value": 1678153842542 + }, + "date_of_expiration": { + "type": 6, + "value": 1678153842542 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -23580,9 +30272,18 @@ "original_amount": 71460340, "total_amount": 71460340, "id": 1678153902578, - "date_created": { "type": 6, "value": 1678153902578 }, - "date_last_updated": { "type": 6, "value": 1678153902578 }, - "date_of_expiration": { "type": 6, "value": 1678153902578 }, + "date_created": { + "type": 6, + "value": 1678153902578 + }, + "date_last_updated": { + "type": 6, + "value": 1678153902578 + }, + "date_of_expiration": { + "type": 6, + "value": 1678153902578 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -23645,7 +30346,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 19.8 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 19.8 + }, "revision": "lnt02s62015ooohxdpwlamzj", "revision_nr": 1, "created": 1697467088669, @@ -23654,13 +30359,22 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02s62015noohxc1hxajrv", "revision_nr": 1, "created": 1697467088674, "modified": 1697467088674 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02s62015noohxc1hxajrv", + "revision_nr": 1, + "created": 1697467088674, + "modified": 1697467088674 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, "revision": "lnt02s6a015qoohxd0at4jkb", "revision_nr": 1, "created": 1697467088677, @@ -23669,13 +30383,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02s6a015poohx1ytfhja0", "revision_nr": 1, "created": 1697467088680, "modified": 1697467088680 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02s6a015poohx1ytfhja0", + "revision_nr": 1, + "created": 1697467088680, + "modified": 1697467088680 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 2019.8, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 2019.8, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02s5s015joohxecgd3etz", "revision_nr": 1, "created": 1697467088683, @@ -23694,9 +30423,18 @@ "total_amount": 2019.8, "history_id": 1677379374499, "id": 1312813383, - "date_created": { "type": 6, "value": 1677379375196 }, - "date_last_updated": { "type": 6, "value": 1677379375196 }, - "date_of_expiration": { "type": 6, "value": 1677465774972 }, + "date_created": { + "type": 6, + "value": 1677379375196 + }, + "date_last_updated": { + "type": 6, + "value": 1677379375196 + }, + "date_of_expiration": { + "type": 6, + "value": 1677465774972 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -23757,7 +30495,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 19.8 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 19.8 + }, "revision": "lnt02s6z015yoohx79cveko8", "revision_nr": 1, "created": 1697467088702, @@ -23766,13 +30508,22 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02s6z015xoohx70a4ejpt", "revision_nr": 1, "created": 1697467088706, "modified": 1697467088706 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02s6z015xoohx70a4ejpt", + "revision_nr": 1, + "created": 1697467088706, + "modified": 1697467088706 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, "revision": "lnt02s760160oohx0pdc59dh", "revision_nr": 1, "created": 1697467088709, @@ -23781,13 +30532,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02s76015zoohxambpdqg4", "revision_nr": 1, "created": 1697467088712, "modified": 1697467088712 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02s76015zoohxambpdqg4", + "revision_nr": 1, + "created": 1697467088712, + "modified": 1697467088712 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 2019.8, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 2019.8, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02s6q015toohx11epb4bb", "revision_nr": 1, "created": 1697467088715, @@ -23806,9 +30572,18 @@ "total_amount": 2019.8, "history_id": 1677379588878, "id": 1312813393, - "date_created": { "type": 6, "value": 1677379589568 }, - "date_last_updated": { "type": 6, "value": 1677379589568 }, - "date_of_expiration": { "type": 6, "value": 1677465989346 }, + "date_created": { + "type": 6, + "value": 1677379589568 + }, + "date_last_updated": { + "type": 6, + "value": 1677379589568 + }, + "date_of_expiration": { + "type": 6, + "value": 1677465989346 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -23857,9 +30632,18 @@ "original_amount": 126385600, "total_amount": 126385600, "id": 1679266944717, - "date_created": { "type": 6, "value": 1679266944717 }, - "date_last_updated": { "type": 6, "value": 1679266944717 }, - "date_of_expiration": { "type": 6, "value": 1679266944717 }, + "date_created": { + "type": 6, + "value": 1679266944717 + }, + "date_last_updated": { + "type": 6, + "value": 1679266944717 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266944717 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -23889,7 +30673,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 51.1 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 51.1 + }, "revision": "lnt02s7t0167oohxg1xg8y0a", "revision_nr": 1, "created": 1697467088732, @@ -23898,11 +30686,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02s7t0166oohx8ebhhfbh", "revision_nr": 1, "created": 1697467088735, "modified": 1697467088735 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02s7t0166oohx8ebhhfbh", + "revision_nr": 1, + "created": 1697467088735, + "modified": 1697467088735 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395/details", - "content": { "type": 1, "value": {}, "revision": "lnt02s7t0165oohxfjtdb6nm", "revision_nr": 1, "created": 1697467088739, "modified": 1697467088739 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02s7t0165oohxfjtdb6nm", + "revision_nr": 1, + "created": 1697467088739, + "modified": 1697467088739 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395", @@ -23916,9 +30718,18 @@ "total_amount": 2606.1, "history_id": 1679852406395, "id": 1679852406395, - "date_created": { "type": 6, "value": 1679852406395 }, - "date_last_updated": { "type": 6, "value": 1679852406395 }, - "date_of_expiration": { "type": 6, "value": 1682444406395 }, + "date_created": { + "type": 6, + "value": 1679852406395 + }, + "date_last_updated": { + "type": 6, + "value": 1679852406395 + }, + "date_of_expiration": { + "type": 6, + "value": 1682444406395 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -23967,9 +30778,18 @@ "original_amount": 13606977, "total_amount": 13606977, "id": 1679872071598, - "date_created": { "type": 6, "value": 1679872071598 }, - "date_last_updated": { "type": 6, "value": 1679872071598 }, - "date_of_expiration": { "type": 6, "value": 1679872071598 }, + "date_created": { + "type": 6, + "value": 1679872071598 + }, + "date_last_updated": { + "type": 6, + "value": 1679872071598 + }, + "date_of_expiration": { + "type": 6, + "value": 1679872071598 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -23999,7 +30819,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 52.2 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 52.2 + }, "revision": "lnt02s8g016eoohx62sveicl", "revision_nr": 1, "created": 1697467088755, @@ -24008,11 +30832,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02s8g016doohxh845gt4b", "revision_nr": 1, "created": 1697467088759, "modified": 1697467088759 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02s8g016doohxh845gt4b", + "revision_nr": 1, + "created": 1697467088759, + "modified": 1697467088759 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250/details", - "content": { "type": 1, "value": {}, "revision": "lnt02s8g016coohxbijj1994", "revision_nr": 1, "created": 1697467088762, "modified": 1697467088762 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02s8g016coohxbijj1994", + "revision_nr": 1, + "created": 1697467088762, + "modified": 1697467088762 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250", @@ -24026,9 +30864,18 @@ "total_amount": 2662.2, "history_id": 1682964262250, "id": 1682964262250, - "date_created": { "type": 6, "value": 1682964262250 }, - "date_last_updated": { "type": 6, "value": 1682964262250 }, - "date_of_expiration": { "type": 6, "value": 1685556262250 }, + "date_created": { + "type": 6, + "value": 1682964262250 + }, + "date_last_updated": { + "type": 6, + "value": 1682964262250 + }, + "date_of_expiration": { + "type": 6, + "value": 1685556262250 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -24054,7 +30901,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964678725/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02s8w016hoohxat3r0rgx", "revision_nr": 1, "created": 1697467088771, "modified": 1697467088771 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02s8w016hoohxat3r0rgx", + "revision_nr": 1, + "created": 1697467088771, + "modified": 1697467088771 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964678725", @@ -24068,15 +30924,30 @@ "total_amount": 2610, "history_id": 1682964678725, "id": 1682964678725, - "date_created": { "type": 6, "value": 1682964678725 }, - "date_last_updated": { "type": 6, "value": 1682965176565 }, - "date_of_expiration": { "type": 6, "value": 1685556678725 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1682965176565 }, - "money_release_date": { "type": 6, "value": 1682965176565 }, + "date_created": { + "type": 6, + "value": 1682964678725 + }, + "date_last_updated": { + "type": 6, + "value": 1682965176565 + }, + "date_of_expiration": { + "type": 6, + "value": 1685556678725 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1682965176565 + }, + "money_release_date": { + "type": 6, + "value": 1682965176565 + }, "money_release_status": "approved", "wasDebited": true }, @@ -24136,9 +31007,18 @@ "total_amount": 2606.1, "id": 1682965648718, "contract_id": "1679852406395", - "date_created": { "type": 6, "value": 1682965648718 }, - "date_last_updated": { "type": 6, "value": 1682965648718 }, - "date_of_expiration": { "type": 6, "value": 1682965648718 }, + "date_created": { + "type": 6, + "value": 1682965648718 + }, + "date_last_updated": { + "type": 6, + "value": 1682965648718 + }, + "date_of_expiration": { + "type": 6, + "value": 1682965648718 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -24165,7 +31045,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683077498849/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02s9g016noohxcv3dh5rw", "revision_nr": 1, "created": 1697467088792, "modified": 1697467088792 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02s9g016noohxcv3dh5rw", + "revision_nr": 1, + "created": 1697467088792, + "modified": 1697467088792 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683077498849", @@ -24179,15 +31068,30 @@ "total_amount": 50, "history_id": 1683077498849, "id": 1683077498849, - "date_created": { "type": 6, "value": 1683077498849 }, - "date_last_updated": { "type": 6, "value": 1683078275310 }, - "date_of_expiration": { "type": 6, "value": 1685669498849 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1683078275310 }, - "money_release_date": { "type": 6, "value": 1683078275310 }, + "date_created": { + "type": 6, + "value": 1683077498849 + }, + "date_last_updated": { + "type": 6, + "value": 1683078275310 + }, + "date_of_expiration": { + "type": 6, + "value": 1685669498849 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683078275310 + }, + "money_release_date": { + "type": 6, + "value": 1683078275310 + }, "money_release_status": "approved", "wasDebited": true }, @@ -24247,9 +31151,18 @@ "total_amount": 2662.2, "id": 1683078471570, "contract_id": "1682964262250", - "date_created": { "type": 6, "value": 1683078471570 }, - "date_last_updated": { "type": 6, "value": 1683078471570 }, - "date_of_expiration": { "type": 6, "value": 1683078471570 }, + "date_created": { + "type": 6, + "value": 1683078471570 + }, + "date_last_updated": { + "type": 6, + "value": 1683078471570 + }, + "date_of_expiration": { + "type": 6, + "value": 1683078471570 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -24278,7 +31191,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02sa1016voohxfjj5bj5t", "revision_nr": 1, "created": 1697467088812, @@ -24287,11 +31204,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02sa1016uoohxfqgu4j9k", "revision_nr": 1, "created": 1697467088816, "modified": 1697467088816 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02sa1016uoohxfqgu4j9k", + "revision_nr": 1, + "created": 1697467088816, + "modified": 1697467088816 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834/details", - "content": { "type": 1, "value": {}, "revision": "lnt02sa1016toohx317ngu7o", "revision_nr": 1, "created": 1697467088819, "modified": 1697467088819 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sa1016toohx317ngu7o", + "revision_nr": 1, + "created": 1697467088819, + "modified": 1697467088819 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834", @@ -24305,9 +31236,18 @@ "total_amount": 13300, "history_id": 1683078539834, "id": 1683078539834, - "date_created": { "type": 6, "value": 1683078539834 }, - "date_last_updated": { "type": 6, "value": 1683078539834 }, - "date_of_expiration": { "type": 6, "value": 1685670539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, + "date_last_updated": { + "type": 6, + "value": 1683078539834 + }, + "date_of_expiration": { + "type": 6, + "value": 1685670539834 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -24356,9 +31296,18 @@ "original_amount": 54049325, "total_amount": 54049325, "id": 1684018958577, - "date_created": { "type": 6, "value": 1684018958577 }, - "date_last_updated": { "type": 6, "value": 1684018958577 }, - "date_of_expiration": { "type": 6, "value": 1684018958577 }, + "date_created": { + "type": 6, + "value": 1684018958577 + }, + "date_last_updated": { + "type": 6, + "value": 1684018958577 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018958577 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24420,9 +31369,18 @@ "original_amount": 369625820, "total_amount": 369625820, "id": 1684158157715, - "date_created": { "type": 6, "value": 1684158157715 }, - "date_last_updated": { "type": 6, "value": 1684158157715 }, - "date_of_expiration": { "type": 6, "value": 1684158157715 }, + "date_created": { + "type": 6, + "value": 1684158157715 + }, + "date_last_updated": { + "type": 6, + "value": 1684158157715 + }, + "date_of_expiration": { + "type": 6, + "value": 1684158157715 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24483,9 +31441,18 @@ "original_amount": 3989184, "total_amount": 3989184, "id": 1686924794730, - "date_created": { "type": 6, "value": 1686924794730 }, - "date_last_updated": { "type": 6, "value": 1686924794730 }, - "date_of_expiration": { "type": 6, "value": 1686924794730 }, + "date_created": { + "type": 6, + "value": 1686924794730 + }, + "date_last_updated": { + "type": 6, + "value": 1686924794730 + }, + "date_of_expiration": { + "type": 6, + "value": 1686924794730 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24546,9 +31513,18 @@ "original_amount": 35902602, "total_amount": 35902602, "id": 1686924859436, - "date_created": { "type": 6, "value": 1686924859436 }, - "date_last_updated": { "type": 6, "value": 1686924859436 }, - "date_of_expiration": { "type": 6, "value": 1686924859436 }, + "date_created": { + "type": 6, + "value": 1686924859436 + }, + "date_last_updated": { + "type": 6, + "value": 1686924859436 + }, + "date_of_expiration": { + "type": 6, + "value": 1686924859436 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24575,7 +31551,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1688993449178/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02sbl0179oohxh9x80d6h", "revision_nr": 1, "created": 1697467088868, "modified": 1697467088868 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02sbl0179oohxh9x80d6h", + "revision_nr": 1, + "created": 1697467088868, + "modified": 1697467088868 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1688993449178", @@ -24589,15 +31574,30 @@ "total_amount": 1735, "history_id": 1688993449178, "id": 1688993449178, - "date_created": { "type": 6, "value": 1688993449178 }, - "date_last_updated": { "type": 6, "value": 1689021800593 }, - "date_of_expiration": { "type": 6, "value": 1691585449178 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689021800593 }, - "money_release_date": { "type": 6, "value": 1689021800593 }, + "date_created": { + "type": 6, + "value": 1688993449178 + }, + "date_last_updated": { + "type": 6, + "value": 1689021800593 + }, + "date_of_expiration": { + "type": 6, + "value": 1691585449178 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689021800593 + }, + "money_release_date": { + "type": 6, + "value": 1689021800593 + }, "money_release_status": "approved", "wasDebited": true }, @@ -24657,9 +31657,18 @@ "total_amount": 1209.091, "id": 1689023462249, "contract_id": "1683078539834", - "date_created": { "type": 6, "value": 1689023462249 }, - "date_last_updated": { "type": 6, "value": 1689023462249 }, - "date_of_expiration": { "type": 6, "value": 1689023462249 }, + "date_created": { + "type": 6, + "value": 1689023462249 + }, + "date_last_updated": { + "type": 6, + "value": 1689023462249 + }, + "date_of_expiration": { + "type": 6, + "value": 1689023462249 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -24709,9 +31718,18 @@ "original_amount": 23038, "total_amount": 23038, "id": 1689027294801, - "date_created": { "type": 6, "value": 1689027294801 }, - "date_last_updated": { "type": 6, "value": 1689027294801 }, - "date_of_expiration": { "type": 6, "value": 1689027294801 }, + "date_created": { + "type": 6, + "value": 1689027294801 + }, + "date_last_updated": { + "type": 6, + "value": 1689027294801 + }, + "date_of_expiration": { + "type": 6, + "value": 1689027294801 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24762,9 +31780,18 @@ "original_amount": 10892, "total_amount": 10892, "id": 1689119838635, - "date_created": { "type": 6, "value": 1689119838635 }, - "date_last_updated": { "type": 6, "value": 1689119838635 }, - "date_of_expiration": { "type": 6, "value": 1689119838635 }, + "date_created": { + "type": 6, + "value": 1689119838635 + }, + "date_last_updated": { + "type": 6, + "value": 1689119838635 + }, + "date_of_expiration": { + "type": 6, + "value": 1689119838635 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24815,9 +31842,18 @@ "original_amount": 44060, "total_amount": 44060, "id": 1689121233961, - "date_created": { "type": 6, "value": 1689121233961 }, - "date_last_updated": { "type": 6, "value": 1689121233961 }, - "date_of_expiration": { "type": 6, "value": 1689121233961 }, + "date_created": { + "type": 6, + "value": 1689121233961 + }, + "date_last_updated": { + "type": 6, + "value": 1689121233961 + }, + "date_of_expiration": { + "type": 6, + "value": 1689121233961 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24868,9 +31904,18 @@ "original_amount": 9455, "total_amount": 9455, "id": 1689164526021, - "date_created": { "type": 6, "value": 1689164526021 }, - "date_last_updated": { "type": 6, "value": 1689164526021 }, - "date_of_expiration": { "type": 6, "value": 1689164526021 }, + "date_created": { + "type": 6, + "value": 1689164526021 + }, + "date_last_updated": { + "type": 6, + "value": 1689164526021 + }, + "date_of_expiration": { + "type": 6, + "value": 1689164526021 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24921,9 +31966,18 @@ "original_amount": 12818, "total_amount": 12818, "id": 1689704009270, - "date_created": { "type": 6, "value": 1689704009270 }, - "date_last_updated": { "type": 6, "value": 1689704009270 }, - "date_of_expiration": { "type": 6, "value": 1689704009270 }, + "date_created": { + "type": 6, + "value": 1689704009270 + }, + "date_last_updated": { + "type": 6, + "value": 1689704009270 + }, + "date_of_expiration": { + "type": 6, + "value": 1689704009270 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24974,9 +32028,18 @@ "original_amount": 82033, "total_amount": 82033, "id": 1690245422296, - "date_created": { "type": 6, "value": 1690245422296 }, - "date_last_updated": { "type": 6, "value": 1690245422296 }, - "date_of_expiration": { "type": 6, "value": 1690245422296 }, + "date_created": { + "type": 6, + "value": 1690245422296 + }, + "date_last_updated": { + "type": 6, + "value": 1690245422296 + }, + "date_of_expiration": { + "type": 6, + "value": 1690245422296 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -25027,9 +32090,18 @@ "original_amount": 16360, "total_amount": 16360, "id": 1690245659912, - "date_created": { "type": 6, "value": 1690245659912 }, - "date_last_updated": { "type": 6, "value": 1690245659912 }, - "date_of_expiration": { "type": 6, "value": 1690245659912 }, + "date_created": { + "type": 6, + "value": 1690245659912 + }, + "date_last_updated": { + "type": 6, + "value": 1690245659912 + }, + "date_of_expiration": { + "type": 6, + "value": 1690245659912 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -25088,9 +32160,18 @@ "total_amount": 23044, "id": 1690477890638, "history_id": 1690477890638, - "date_created": { "type": 6, "value": 1690477890638 }, - "date_last_updated": { "type": 6, "value": 1690477890638 }, - "date_of_expiration": { "type": 6, "value": 1690477890638 }, + "date_created": { + "type": 6, + "value": 1690477890638 + }, + "date_last_updated": { + "type": 6, + "value": 1690477890638 + }, + "date_of_expiration": { + "type": 6, + "value": 1690477890638 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -25149,9 +32230,18 @@ "total_amount": 103259, "id": 1690581074985, "history_id": 1690581074985, - "date_created": { "type": 6, "value": 1690581074985 }, - "date_last_updated": { "type": 6, "value": 1690581074985 }, - "date_of_expiration": { "type": 6, "value": 1690581074985 }, + "date_created": { + "type": 6, + "value": 1690581074985 + }, + "date_last_updated": { + "type": 6, + "value": 1690581074985 + }, + "date_of_expiration": { + "type": 6, + "value": 1690581074985 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -25210,9 +32300,18 @@ "total_amount": 55731, "id": 1690912306732, "history_id": 1690912306732, - "date_created": { "type": 6, "value": 1690912306732 }, - "date_last_updated": { "type": 6, "value": 1690912306732 }, - "date_of_expiration": { "type": 6, "value": 1690912306732 }, + "date_created": { + "type": 6, + "value": 1690912306732 + }, + "date_last_updated": { + "type": 6, + "value": 1690912306732 + }, + "date_of_expiration": { + "type": 6, + "value": 1690912306732 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -25282,9 +32381,18 @@ "total_amount": 7000000, "id": 1691091813497, "history_id": 1691091813497, - "date_created": { "type": 6, "value": 1691091813497 }, - "date_last_updated": { "type": 6, "value": 1691091813497 }, - "date_of_expiration": { "type": 6, "value": 1693770213496 }, + "date_created": { + "type": 6, + "value": 1691091813497 + }, + "date_last_updated": { + "type": 6, + "value": 1691091813497 + }, + "date_of_expiration": { + "type": 6, + "value": 1693770213496 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -25342,9 +32450,18 @@ "total_amount": 61311, "id": 1691190824646, "history_id": 1691190824646, - "date_created": { "type": 6, "value": 1691190824646 }, - "date_last_updated": { "type": 6, "value": 1691190824646 }, - "date_of_expiration": { "type": 6, "value": 1691190824646 }, + "date_created": { + "type": 6, + "value": 1691190824646 + }, + "date_last_updated": { + "type": 6, + "value": 1691190824646 + }, + "date_of_expiration": { + "type": 6, + "value": 1691190824646 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -25363,7 +32480,13 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1695582792970 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695582792970 + } + }, "revision": "lnt02sf30188oohx7yiv5abu", "revision_nr": 1, "created": 1697467088995, @@ -25425,8 +32548,14 @@ "total_amount": 2000, "id": "1692990792970", "history_id": "1692990792970", - "date_created": { "type": 6, "value": 1692990792970 }, - "date_last_updated": { "type": 6, "value": 1692990792970 }, + "date_created": { + "type": 6, + "value": 1692990792970 + }, + "date_last_updated": { + "type": 6, + "value": 1692990792970 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -25495,9 +32624,18 @@ "total_amount": 7140000, "id": "1693770411115", "history_id": "1693770411115", - "date_created": { "type": 6, "value": 1693770411115 }, - "date_last_updated": { "type": 6, "value": 1693770411115 }, - "date_of_expiration": { "type": 6, "value": 1693770411115 }, + "date_created": { + "type": 6, + "value": 1693770411115 + }, + "date_last_updated": { + "type": 6, + "value": 1693770411115 + }, + "date_of_expiration": { + "type": 6, + "value": 1693770411115 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -25515,7 +32653,13 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697107013081 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697107013081 + } + }, "revision": "lnt02sfy018hoohx1bbf1sob", "revision_nr": 1, "created": 1697467089026, @@ -25577,8 +32721,14 @@ "total_amount": 2000, "id": "1694515013082", "history_id": "1694515013082", - "date_created": { "type": 6, "value": 1694515013082 }, - "date_last_updated": { "type": 6, "value": 1694515013082 }, + "date_created": { + "type": 6, + "value": 1694515013082 + }, + "date_last_updated": { + "type": 6, + "value": 1694515013082 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -25618,7 +32768,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 30 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 30 + }, "revision": "lnt02sgo018qoohxbnv29t4o", "revision_nr": 1, "created": 1697467089051, @@ -25627,7 +32781,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02sgo018poohx1flk1ow4", "revision_nr": 1, "created": 1697467089054, "modified": 1697467089054 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02sgo018poohx1flk1ow4", + "revision_nr": 1, + "created": 1697467089054, + "modified": 1697467089054 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details", @@ -25661,17 +32822,32 @@ "total_amount": 970, "id": "1694563336129", "history_id": "1694563336129", - "date_created": { "type": 6, "value": 1694563336129 }, - "date_last_updated": { "type": 6, "value": 1695128598738 }, - "date_of_expiration": { "type": 6, "value": 1694563336129 }, + "date_created": { + "type": 6, + "value": 1694563336129 + }, + "date_last_updated": { + "type": 6, + "value": 1695128598738 + }, + "date_of_expiration": { + "type": 6, + "value": 1694563336129 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1695128598738 }, - "money_release_date": { "type": 6, "value": 1695128598738 }, + "date_approved": { + "type": 6, + "value": 1695128598738 + }, + "money_release_date": { + "type": 6, + "value": 1695128598738 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -25685,7 +32861,13 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697194446900 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697194446900 + } + }, "revision": "lnt02sh1018soohx5sn9bnvu", "revision_nr": 1, "created": 1697467089064, @@ -25747,16 +32929,28 @@ "total_amount": 2500, "id": "1694602446900", "history_id": "1694602446900", - "date_created": { "type": 6, "value": 1694602446900 }, - "date_last_updated": { "type": 6, "value": 1694614465688 }, + "date_created": { + "type": 6, + "value": 1694602446900 + }, + "date_last_updated": { + "type": 6, + "value": 1694614465688 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694614465688 }, - "money_release_date": { "type": 6, "value": 1694614465688 }, + "date_approved": { + "type": 6, + "value": 1694614465688 + }, + "money_release_date": { + "type": 6, + "value": 1694614465688 + }, "money_release_status": "approved", "wasDebited": true }, @@ -25823,9 +33017,18 @@ "total_amount": 1209.090909090909, "id": "1694614621977", "history_id": "1694614621977", - "date_created": { "type": 6, "value": 1694614621977 }, - "date_last_updated": { "type": 6, "value": 1694614621977 }, - "date_of_expiration": { "type": 6, "value": 1694614621977 }, + "date_created": { + "type": 6, + "value": 1694614621977 + }, + "date_last_updated": { + "type": 6, + "value": 1694614621977 + }, + "date_of_expiration": { + "type": 6, + "value": 1694614621977 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -25896,9 +33099,18 @@ "total_amount": 1209.090909090909, "id": "1694614622168", "history_id": "1694614622168", - "date_created": { "type": 6, "value": 1694614622168 }, - "date_last_updated": { "type": 6, "value": 1694614622168 }, - "date_of_expiration": { "type": 6, "value": 1694614622168 }, + "date_created": { + "type": 6, + "value": 1694614622168 + }, + "date_last_updated": { + "type": 6, + "value": 1694614622168 + }, + "date_of_expiration": { + "type": 6, + "value": 1694614622168 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -25938,7 +33150,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 942112.9199999999 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 942112.9199999999 + }, "revision": "lnt02sig0199oohxei8655du", "revision_nr": 1, "created": 1697467089116, @@ -25947,7 +33163,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02sig0198oohxchjv64bq", "revision_nr": 1, "created": 1697467089119, "modified": 1697467089119 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02sig0198oohxchjv64bq", + "revision_nr": 1, + "created": 1697467089119, + "modified": 1697467089119 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details", @@ -25981,17 +33204,32 @@ "total_amount": 30461651.08, "id": "1694707376145", "history_id": "1694707376145", - "date_created": { "type": 6, "value": 1694707376145 }, - "date_last_updated": { "type": 6, "value": 1695339072164 }, - "date_of_expiration": { "type": 6, "value": 1694707376145 }, + "date_created": { + "type": 6, + "value": 1694707376145 + }, + "date_last_updated": { + "type": 6, + "value": 1695339072164 + }, + "date_of_expiration": { + "type": 6, + "value": 1694707376145 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1695339072164 }, - "money_release_date": { "type": 6, "value": 1695339072164 }, + "date_approved": { + "type": 6, + "value": 1695339072164 + }, + "money_release_date": { + "type": 6, + "value": 1695339072164 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -26057,9 +33295,18 @@ "total_amount": 20, "id": "1696309633832", "history_id": "1696309633832", - "date_created": { "type": 6, "value": 1696309633832 }, - "date_last_updated": { "type": 6, "value": 1696309633832 }, - "date_of_expiration": { "type": 6, "value": 1722661633831 }, + "date_created": { + "type": 6, + "value": 1696309633832 + }, + "date_last_updated": { + "type": 6, + "value": 1696309633832 + }, + "date_of_expiration": { + "type": 6, + "value": 1722661633831 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -26129,9 +33376,18 @@ "total_amount": 7000000, "id": "1696433201105", "history_id": "1696433201105", - "date_created": { "type": 6, "value": 1696433201105 }, - "date_last_updated": { "type": 6, "value": 1696433201105 }, - "date_of_expiration": { "type": 6, "value": 1699111601054 }, + "date_created": { + "type": 6, + "value": 1696433201105 + }, + "date_last_updated": { + "type": 6, + "value": 1696433201105 + }, + "date_of_expiration": { + "type": 6, + "value": 1699111601054 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -26147,7 +33403,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history", - "content": { "type": 1, "value": {}, "revision": "lnt02s3p014uoohxc4qwfge1", "revision_nr": 1, "created": 1697467089158, "modified": 1697467089158 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02s3p014uoohxc4qwfge1", + "revision_nr": 1, + "created": 1697467089158, + "modified": 1697467089158 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395/description", @@ -26164,7 +33427,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 51.1 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 51.1 + }, "revision": "lnt02sjt019ooohx3kop9mvz", "revision_nr": 1, "created": 1697467089165, @@ -26173,7 +33440,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02sjt019noohx0l4rbn67", "revision_nr": 1, "created": 1697467089168, "modified": 1697467089168 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02sjt019noohx0l4rbn67", + "revision_nr": 1, + "created": 1697467089168, + "modified": 1697467089168 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395", @@ -26186,7 +33460,10 @@ "total_amount": 2606.1, "installments": 1, "installment_amount": 2606.1, - "date_created": { "type": 6, "value": 1679852406395 }, + "date_created": { + "type": 6, + "value": 1679852406395 + }, "history_id": 1679852406395, "currency_id": "BRL", "status": "paid" @@ -26199,7 +33476,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304", - "content": { "type": 1, "value": {}, "revision": "lnt02sjq019koohx6k919r6w", "revision_nr": 1, "created": 1697467089176, "modified": 1697467089176 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sjq019koohx6k919r6w", + "revision_nr": 1, + "created": 1697467089176, + "modified": 1697467089176 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250/description", @@ -26216,7 +33500,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 52.2 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 52.2 + }, "revision": "lnt02skb019toohx3vdierap", "revision_nr": 1, "created": 1697467089183, @@ -26225,7 +33513,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02skb019soohx2tfd5k2y", "revision_nr": 1, "created": 1697467089187, "modified": 1697467089187 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02skb019soohx2tfd5k2y", + "revision_nr": 1, + "created": 1697467089187, + "modified": 1697467089187 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250", @@ -26238,7 +33533,10 @@ "total_amount": 2662.2, "installments": 1, "installment_amount": 2662.2, - "date_created": { "type": 6, "value": 1682964262250 }, + "date_created": { + "type": 6, + "value": 1682964262250 + }, "history_id": 1682964262250, "currency_id": "BRL", "status": "paid" @@ -26264,7 +33562,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02skp019xoohx0amo3y9u", "revision_nr": 1, "created": 1697467089197, @@ -26273,7 +33575,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02skp019woohxgs00eho7", "revision_nr": 1, "created": 1697467089200, "modified": 1697467089200 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02skp019woohxgs00eho7", + "revision_nr": 1, + "created": 1697467089200, + "modified": 1697467089200 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834", @@ -26286,7 +33595,10 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { "type": 6, "value": 1683078539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL", "status": "paid" @@ -26299,7 +33611,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt02sk8019poohxgqlj0qdu", "revision_nr": 1, "created": 1697467089206, "modified": 1697467089206 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sk8019poohxgqlj0qdu", + "revision_nr": 1, + "created": 1697467089206, + "modified": 1697467089206 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834/description", @@ -26316,7 +33635,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02sl701a2oohxapczdzo3", "revision_nr": 1, "created": 1697467089214, @@ -26325,7 +33648,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02sl701a1oohxf07jbn4k", "revision_nr": 1, "created": 1697467089217, "modified": 1697467089217 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02sl701a1oohxf07jbn4k", + "revision_nr": 1, + "created": 1697467089217, + "modified": 1697467089217 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834", @@ -26338,11 +33668,17 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { "type": 6, "value": 1683078539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1694614622016 } + "date_last_updated": { + "type": 6, + "value": 1694614622016 + } }, "revision": "lnt02sl3019zoohx83de1b7z", "revision_nr": 1, @@ -26352,7 +33688,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt02sl3019yoohx35t6gmwz", "revision_nr": 1, "created": 1697467089225, "modified": 1697467089225 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sl3019yoohx35t6gmwz", + "revision_nr": 1, + "created": 1697467089225, + "modified": 1697467089225 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834/description", @@ -26369,7 +33712,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02slo01a7oohx0z75f919", "revision_nr": 1, "created": 1697467089232, @@ -26378,7 +33725,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02slo01a6oohx7ksf0rwd", "revision_nr": 1, "created": 1697467089235, "modified": 1697467089235 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02slo01a6oohx7ksf0rwd", + "revision_nr": 1, + "created": 1697467089235, + "modified": 1697467089235 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834", @@ -26391,11 +33745,17 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { "type": 6, "value": 1683078539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1694614622191 } + "date_last_updated": { + "type": 6, + "value": 1694614622191 + } }, "revision": "lnt02sll01a4oohx9ztze6r9", "revision_nr": 1, @@ -26405,7 +33765,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308", - "content": { "type": 1, "value": {}, "revision": "lnt02sll01a3oohx8mt39vtz", "revision_nr": 1, "created": 1697467089243, "modified": 1697467089243 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sll01a3oohx8mt39vtz", + "revision_nr": 1, + "created": 1697467089243, + "modified": 1697467089243 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834/description", @@ -26422,7 +33789,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02sm701acoohx82xc1ael", "revision_nr": 1, "created": 1697467089250, @@ -26431,7 +33802,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02sm701aboohxcwto346g", "revision_nr": 1, "created": 1697467089254, "modified": 1697467089254 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02sm701aboohxcwto346g", + "revision_nr": 1, + "created": 1697467089254, + "modified": 1697467089254 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834", @@ -26444,7 +33822,10 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { "type": 6, "value": 1683078539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, @@ -26456,7 +33837,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309", - "content": { "type": 1, "value": {}, "revision": "lnt02sm301a8oohx1kq603rq", "revision_nr": 1, "created": 1697467089260, "modified": 1697467089260 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sm301a8oohx1kq603rq", + "revision_nr": 1, + "created": 1697467089260, + "modified": 1697467089260 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834/description", @@ -26473,7 +33861,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02smo01ahoohxhron6526", "revision_nr": 1, "created": 1697467089267, @@ -26482,7 +33874,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02smo01agoohxgxkr7otr", "revision_nr": 1, "created": 1697467089271, "modified": 1697467089271 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02smo01agoohxgxkr7otr", + "revision_nr": 1, + "created": 1697467089271, + "modified": 1697467089271 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834", @@ -26495,7 +33894,10 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { "type": 6, "value": 1683078539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, @@ -26507,7 +33909,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310", - "content": { "type": 1, "value": {}, "revision": "lnt02smk01adoohx8c3ra3xl", "revision_nr": 1, "created": 1697467089278, "modified": 1697467089278 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02smk01adoohx8c3ra3xl", + "revision_nr": 1, + "created": 1697467089278, + "modified": 1697467089278 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834/description", @@ -26524,7 +33933,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02sn501amoohx9ioehg1e", "revision_nr": 1, "created": 1697467089284, @@ -26533,7 +33946,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02sn501aloohxaed2hcha", "revision_nr": 1, "created": 1697467089288, "modified": 1697467089288 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02sn501aloohxaed2hcha", + "revision_nr": 1, + "created": 1697467089288, + "modified": 1697467089288 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834", @@ -26546,7 +33966,10 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { "type": 6, "value": 1683078539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, @@ -26558,7 +33981,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311", - "content": { "type": 1, "value": {}, "revision": "lnt02sn201aioohxeoyohvl1", "revision_nr": 1, "created": 1697467089297, "modified": 1697467089297 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sn201aioohxeoyohvl1", + "revision_nr": 1, + "created": 1697467089297, + "modified": 1697467089297 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834/description", @@ -26575,7 +34005,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02sno01aroohxcfx1ehst", "revision_nr": 1, "created": 1697467089304, @@ -26584,7 +34018,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02sno01aqoohx2t8p4kle", "revision_nr": 1, "created": 1697467089309, "modified": 1697467089309 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02sno01aqoohx2t8p4kle", + "revision_nr": 1, + "created": 1697467089309, + "modified": 1697467089309 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834", @@ -26597,7 +34038,10 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { "type": 6, "value": 1683078539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, @@ -26609,7 +34053,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312", - "content": { "type": 1, "value": {}, "revision": "lnt02snl01anoohx2w0mb34b", "revision_nr": 1, "created": 1697467089316, "modified": 1697467089316 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02snl01anoohx2w0mb34b", + "revision_nr": 1, + "created": 1697467089316, + "modified": 1697467089316 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834/description", @@ -26626,7 +34077,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02so801awoohxgskk57je", "revision_nr": 1, "created": 1697467089325, @@ -26635,7 +34090,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02so801avoohxh6bpbgj6", "revision_nr": 1, "created": 1697467089329, "modified": 1697467089329 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02so801avoohxh6bpbgj6", + "revision_nr": 1, + "created": 1697467089329, + "modified": 1697467089329 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834", @@ -26648,7 +34110,10 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { "type": 6, "value": 1683078539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, @@ -26660,7 +34125,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401", - "content": { "type": 1, "value": {}, "revision": "lnt02so401asoohxfr0g6x34", "revision_nr": 1, "created": 1697467089336, "modified": 1697467089336 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02so401asoohxfr0g6x34", + "revision_nr": 1, + "created": 1697467089336, + "modified": 1697467089336 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834/description", @@ -26677,7 +34149,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02sos01b1oohx551degj7", "revision_nr": 1, "created": 1697467089344, @@ -26686,7 +34162,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02sos01b0oohx3c9y0ks4", "revision_nr": 1, "created": 1697467089348, "modified": 1697467089348 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02sos01b0oohx3c9y0ks4", + "revision_nr": 1, + "created": 1697467089348, + "modified": 1697467089348 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834", @@ -26699,7 +34182,10 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { "type": 6, "value": 1683078539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, @@ -26711,7 +34197,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402", - "content": { "type": 1, "value": {}, "revision": "lnt02soo01axoohxg6hl28nl", "revision_nr": 1, "created": 1697467089357, "modified": 1697467089357 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02soo01axoohxg6hl28nl", + "revision_nr": 1, + "created": 1697467089357, + "modified": 1697467089357 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834/description", @@ -26728,7 +34221,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02spe01b6oohx3gk943j5", "revision_nr": 1, "created": 1697467089366, @@ -26737,7 +34234,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02spd01b5oohxd3bw62x6", "revision_nr": 1, "created": 1697467089369, "modified": 1697467089369 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02spd01b5oohxd3bw62x6", + "revision_nr": 1, + "created": 1697467089369, + "modified": 1697467089369 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834", @@ -26750,7 +34254,10 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { "type": 6, "value": 1683078539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, @@ -26762,7 +34269,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403", - "content": { "type": 1, "value": {}, "revision": "lnt02sp901b2oohxgtf2eqwb", "revision_nr": 1, "created": 1697467089376, "modified": 1697467089376 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sp901b2oohxgtf2eqwb", + "revision_nr": 1, + "created": 1697467089376, + "modified": 1697467089376 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834/description", @@ -26779,7 +34293,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02spw01bboohx7opp6134", "revision_nr": 1, "created": 1697467089385, @@ -26788,7 +34306,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02spw01baoohx405l95nu", "revision_nr": 1, "created": 1697467089389, "modified": 1697467089389 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02spw01baoohx405l95nu", + "revision_nr": 1, + "created": 1697467089389, + "modified": 1697467089389 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834", @@ -26801,7 +34326,10 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { "type": 6, "value": 1683078539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, @@ -26813,17 +34341,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404", - "content": { "type": 1, "value": {}, "revision": "lnt02sps01b7oohx0hhm0t80", "revision_nr": 1, "created": 1697467089396, "modified": 1697467089396 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sps01b7oohx0hhm0t80", + "revision_nr": 1, + "created": 1697467089396, + "modified": 1697467089396 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt02sjq019joohx8be62ypi", "revision_nr": 1, "created": 1697467089399, "modified": 1697467089399 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sjq019joohx8be62ypi", + "revision_nr": 1, + "created": 1697467089399, + "modified": 1697467089399 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit", "content": { "type": 1, - "value": { "approvedLimit": 10000, "limitUsed": 9090.90909090909, "analysisRequested": { "type": 6, "value": 1679792769965 }, "lastReview": { "type": 6, "value": 1679793429922 } }, + "value": { + "approvedLimit": 10000, + "limitUsed": 9090.90909090909, + "analysisRequested": { + "type": 6, + "value": 1679792769965 + }, + "lastReview": { + "type": 6, + "value": 1679793429922 + } + }, "revision": "lnt02sjq019ioohxefyv0b3t", "revision_nr": 1, "created": 1697467089403, @@ -26834,7 +34387,16 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100", "content": { "type": 1, - "value": { "dataModificacao": 1677378717676, "dateValidity": 1678943777415, "totalValue": 13247.575, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697338800000 } }, + "value": { + "dataModificacao": 1677378717676, + "dateValidity": 1678943777415, + "totalValue": 13247.575, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } + }, "revision": "lnt02s3h014qoohx4lrs6hyp", "revision_nr": 1, "created": 1697467089408, @@ -26845,7 +34407,11 @@ "path": "ivipcoin-db::__movement_wallet__/035372379621126936/balances/IVIP", "content": { "type": 1, - "value": { "available": "38137.00000000", "symbol": "IVIP", "value": 3.88 }, + "value": { + "available": "38137.00000000", + "symbol": "IVIP", + "value": 3.88 + }, "revision": "lnt02sqo01beoohx0ci8gqfr", "revision_nr": 1, "created": 1697467089412, @@ -26854,7 +34420,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02sqo01bdoohx8kneffzr", "revision_nr": 1, "created": 1697467089416, "modified": 1697467089416 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sqo01bdoohx8kneffzr", + "revision_nr": 1, + "created": 1697467089416, + "modified": 1697467089416 + } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689115233061/description", @@ -26869,7 +34442,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689115233061/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02sr001bioohx7l4n8nga", "revision_nr": 1, "created": 1697467089424, "modified": 1697467089424 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02sr001bioohx7l4n8nga", + "revision_nr": 1, + "created": 1697467089424, + "modified": 1697467089424 + } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689115233061", @@ -26883,15 +34465,30 @@ "total_amount": 20, "history_id": 1689115233061, "id": 1689115233061, - "date_created": { "type": 6, "value": 1689115233061 }, - "date_last_updated": { "type": 6, "value": 1689150346943 }, - "date_of_expiration": { "type": 6, "value": 1691707233061 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689150346943 }, - "money_release_date": { "type": 6, "value": 1689150346943 }, + "date_created": { + "type": 6, + "value": 1689115233061 + }, + "date_last_updated": { + "type": 6, + "value": 1689150346943 + }, + "date_of_expiration": { + "type": 6, + "value": 1691707233061 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689150346943 + }, + "money_release_date": { + "type": 6, + "value": 1689150346943 + }, "money_release_status": "approved", "wasDebited": true }, @@ -26914,7 +34511,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689278707835/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02src01bloohxcetfg0wn", "revision_nr": 1, "created": 1697467089436, "modified": 1697467089436 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02src01bloohxcetfg0wn", + "revision_nr": 1, + "created": 1697467089436, + "modified": 1697467089436 + } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689278707835", @@ -26928,15 +34534,30 @@ "total_amount": 20, "history_id": 1689278707835, "id": 1689278707835, - "date_created": { "type": 6, "value": 1689278707835 }, - "date_last_updated": { "type": 6, "value": 1689278828225 }, - "date_of_expiration": { "type": 6, "value": 1691870707835 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689278828225 }, - "money_release_date": { "type": 6, "value": 1689278828225 }, + "date_created": { + "type": 6, + "value": 1689278707835 + }, + "date_last_updated": { + "type": 6, + "value": 1689278828225 + }, + "date_of_expiration": { + "type": 6, + "value": 1691870707835 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689278828225 + }, + "money_release_date": { + "type": 6, + "value": 1689278828225 + }, "money_release_status": "approved", "wasDebited": true }, @@ -26982,9 +34603,18 @@ "original_amount": 25268, "total_amount": 25268, "id": 1689683815156, - "date_created": { "type": 6, "value": 1689683815156 }, - "date_last_updated": { "type": 6, "value": 1689683815156 }, - "date_of_expiration": { "type": 6, "value": 1689683815156 }, + "date_created": { + "type": 6, + "value": 1689683815156 + }, + "date_last_updated": { + "type": 6, + "value": 1689683815156 + }, + "date_of_expiration": { + "type": 6, + "value": 1689683815156 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -27012,7 +34642,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689684340625/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02srw01bqoohx30ra2cfr", "revision_nr": 1, "created": 1697467089456, "modified": 1697467089456 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02srw01bqoohx30ra2cfr", + "revision_nr": 1, + "created": 1697467089456, + "modified": 1697467089456 + } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689684340625", @@ -27026,15 +34665,30 @@ "total_amount": 20, "history_id": 1689684340625, "id": 1689684340625, - "date_created": { "type": 6, "value": 1689684340625 }, - "date_last_updated": { "type": 6, "value": 1689691567863 }, - "date_of_expiration": { "type": 6, "value": 1692276340625 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689691567863 }, - "money_release_date": { "type": 6, "value": 1689691567863 }, + "date_created": { + "type": 6, + "value": 1689684340625 + }, + "date_last_updated": { + "type": 6, + "value": 1689691567863 + }, + "date_of_expiration": { + "type": 6, + "value": 1692276340625 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689691567863 + }, + "money_release_date": { + "type": 6, + "value": 1689691567863 + }, "money_release_status": "approved", "wasDebited": true }, @@ -27080,9 +34734,18 @@ "original_amount": 12869, "total_amount": 12869, "id": 1689695209900, - "date_created": { "type": 6, "value": 1689695209900 }, - "date_last_updated": { "type": 6, "value": 1689695209900 }, - "date_of_expiration": { "type": 6, "value": 1689695209900 }, + "date_created": { + "type": 6, + "value": 1689695209900 + }, + "date_last_updated": { + "type": 6, + "value": 1689695209900 + }, + "date_of_expiration": { + "type": 6, + "value": 1689695209900 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -27099,13 +34762,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history", - "content": { "type": 1, "value": {}, "revision": "lnt02sqw01bfoohx6pw48jgo", "revision_nr": 1, "created": 1697467089472, "modified": 1697467089472 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sqw01bfoohx6pw48jgo", + "revision_nr": 1, + "created": 1697467089472, + "modified": 1697467089472 + } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02ssg01btoohx76egdg6k", "revision_nr": 1, "created": 1697467089477, @@ -27116,7 +34790,16 @@ "path": "ivipcoin-db::__movement_wallet__/035372379621126936", "content": { "type": 1, - "value": { "dataModificacao": 1681695529045, "dateValidity": 1681695529045, "totalValue": 12.39, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697425200000 } }, + "value": { + "dataModificacao": 1681695529045, + "dateValidity": 1681695529045, + "totalValue": 12.39, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } + }, "revision": "lnt02sqo01bcoohxfzchd8ka", "revision_nr": 1, "created": 1697467089480, @@ -27127,7 +34810,11 @@ "path": "ivipcoin-db::__movement_wallet__/036609796475115090/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02sso01bvoohx2gecers1", "revision_nr": 1, "created": 1697467089484, @@ -27138,7 +34825,14 @@ "path": "ivipcoin-db::__movement_wallet__/036609796475115090", "content": { "type": 1, - "value": { "dataModificacao": 1689337184637, "dateValidity": 1689337184638, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1689337184637, + "dateValidity": 1689337184638, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02sso01buoohxg01y15ej", "revision_nr": 1, "created": 1697467089487, @@ -27149,7 +34843,11 @@ "path": "ivipcoin-db::__movement_wallet__/036781805197076300/balances/IVIP", "content": { "type": 1, - "value": { "available": "31783.20000000", "symbol": "IVIP", "value": 6.74 }, + "value": { + "available": "31783.20000000", + "symbol": "IVIP", + "value": 6.74 + }, "revision": "lnt02ssw01byoohxdokc05mb", "revision_nr": 1, "created": 1697467089492, @@ -27158,7 +34856,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02ssw01bxoohx3vela578", "revision_nr": 1, "created": 1697467089496, "modified": 1697467089496 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02ssw01bxoohx3vela578", + "revision_nr": 1, + "created": 1697467089496, + "modified": 1697467089496 + } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220381451/description", @@ -27173,7 +34878,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220381451/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02st701c2oohx7wpjatuj", "revision_nr": 1, "created": 1697467089503, "modified": 1697467089503 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02st701c2oohx7wpjatuj", + "revision_nr": 1, + "created": 1697467089503, + "modified": 1697467089503 + } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220381451", @@ -27187,9 +34901,18 @@ "total_amount": 20, "history_id": 1689220381451, "id": 1689220381451, - "date_created": { "type": 6, "value": 1689220381451 }, - "date_last_updated": { "type": 6, "value": 1689220381451 }, - "date_of_expiration": { "type": 6, "value": 1691812381451 }, + "date_created": { + "type": 6, + "value": 1689220381451 + }, + "date_last_updated": { + "type": 6, + "value": 1689220381451 + }, + "date_of_expiration": { + "type": 6, + "value": 1691812381451 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -27214,7 +34937,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220411584/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02stj01c5oohxb3ig9obo", "revision_nr": 1, "created": 1697467089515, "modified": 1697467089515 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02stj01c5oohxb3ig9obo", + "revision_nr": 1, + "created": 1697467089515, + "modified": 1697467089515 + } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220411584", @@ -27228,15 +34960,30 @@ "total_amount": 50, "history_id": 1689220411584, "id": 1689220411584, - "date_created": { "type": 6, "value": 1689220411584 }, - "date_last_updated": { "type": 6, "value": 1689257685911 }, - "date_of_expiration": { "type": 6, "value": 1691812411584 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689257685911 }, - "money_release_date": { "type": 6, "value": 1689257685911 }, + "date_created": { + "type": 6, + "value": 1689220411584 + }, + "date_last_updated": { + "type": 6, + "value": 1689257685911 + }, + "date_of_expiration": { + "type": 6, + "value": 1691812411584 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689257685911 + }, + "money_release_date": { + "type": 6, + "value": 1689257685911 + }, "money_release_status": "approved", "wasDebited": true }, @@ -27282,9 +35029,18 @@ "original_amount": 18682, "total_amount": 18682, "id": 1689258185846, - "date_created": { "type": 6, "value": 1689258185846 }, - "date_last_updated": { "type": 6, "value": 1689258185846 }, - "date_of_expiration": { "type": 6, "value": 1689258185846 }, + "date_created": { + "type": 6, + "value": 1689258185846 + }, + "date_last_updated": { + "type": 6, + "value": 1689258185846 + }, + "date_of_expiration": { + "type": 6, + "value": 1689258185846 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -27312,7 +35068,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488308744/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02su201caoohx78mn4w25", "revision_nr": 1, "created": 1697467089533, "modified": 1697467089533 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02su201caoohx78mn4w25", + "revision_nr": 1, + "created": 1697467089533, + "modified": 1697467089533 + } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488308744", @@ -27326,9 +35091,18 @@ "total_amount": 20, "history_id": 1689488308744, "id": 1689488308744, - "date_created": { "type": 6, "value": 1689488308744 }, - "date_last_updated": { "type": 6, "value": 1689488308744 }, - "date_of_expiration": { "type": 6, "value": 1692080308744 }, + "date_created": { + "type": 6, + "value": 1689488308744 + }, + "date_last_updated": { + "type": 6, + "value": 1689488308744 + }, + "date_of_expiration": { + "type": 6, + "value": 1692080308744 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -27353,7 +35127,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488325765/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02sue01cdoohx9m04h1cq", "revision_nr": 1, "created": 1697467089545, "modified": 1697467089545 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02sue01cdoohx9m04h1cq", + "revision_nr": 1, + "created": 1697467089545, + "modified": 1697467089545 + } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488325765", @@ -27367,15 +35150,30 @@ "total_amount": 20, "history_id": 1689488325765, "id": 1689488325765, - "date_created": { "type": 6, "value": 1689488325765 }, - "date_last_updated": { "type": 6, "value": 1689614108067 }, - "date_of_expiration": { "type": 6, "value": 1692080325765 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689614108067 }, - "money_release_date": { "type": 6, "value": 1689614108067 }, + "date_created": { + "type": 6, + "value": 1689488325765 + }, + "date_last_updated": { + "type": 6, + "value": 1689614108067 + }, + "date_of_expiration": { + "type": 6, + "value": 1692080325765 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689614108067 + }, + "money_release_date": { + "type": 6, + "value": 1689614108067 + }, "money_release_status": "approved", "wasDebited": true }, @@ -27398,7 +35196,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689606916771/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02suo01cgoohxdxvy1l5q", "revision_nr": 1, "created": 1697467089559, "modified": 1697467089559 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02suo01cgoohxdxvy1l5q", + "revision_nr": 1, + "created": 1697467089559, + "modified": 1697467089559 + } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689606916771", @@ -27412,9 +35219,18 @@ "total_amount": 20, "history_id": 1689606916771, "id": 1689606916771, - "date_created": { "type": 6, "value": 1689606916771 }, - "date_last_updated": { "type": 6, "value": 1689606916771 }, - "date_of_expiration": { "type": 6, "value": 1692198916771 }, + "date_created": { + "type": 6, + "value": 1689606916771 + }, + "date_last_updated": { + "type": 6, + "value": 1689606916771 + }, + "date_of_expiration": { + "type": 6, + "value": 1692198916771 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -27462,9 +35278,18 @@ "original_amount": 12478, "total_amount": 12478, "id": 1689614163424, - "date_created": { "type": 6, "value": 1689614163424 }, - "date_last_updated": { "type": 6, "value": 1689614163424 }, - "date_of_expiration": { "type": 6, "value": 1689614163424 }, + "date_created": { + "type": 6, + "value": 1689614163424 + }, + "date_last_updated": { + "type": 6, + "value": 1689614163424 + }, + "date_of_expiration": { + "type": 6, + "value": 1689614163424 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -27534,9 +35359,18 @@ "total_amount": 31160, "id": 1690673977679, "history_id": 1690673977679, - "date_created": { "type": 6, "value": 1690673977679 }, - "date_last_updated": { "type": 6, "value": 1690673977679 }, - "date_of_expiration": { "type": 6, "value": 1693352377677 }, + "date_created": { + "type": 6, + "value": 1690673977679 + }, + "date_last_updated": { + "type": 6, + "value": 1690673977679 + }, + "date_of_expiration": { + "type": 6, + "value": 1693352377677 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -27554,7 +35388,13 @@ "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693266063331 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693266063331 + } + }, "revision": "lnt02svl01cooohx9fxg166z", "revision_nr": 1, "created": 1697467089590, @@ -27616,8 +35456,14 @@ "total_amount": 50, "id": 1690674063331, "history_id": 1690674063331, - "date_created": { "type": 6, "value": 1690674063331 }, - "date_last_updated": { "type": 6, "value": 1690674063331 }, + "date_created": { + "type": 6, + "value": 1690674063331 + }, + "date_last_updated": { + "type": 6, + "value": 1690674063331 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -27635,7 +35481,13 @@ "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694472568160 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694472568160 + } + }, "revision": "lnt02sw601ctoohxhj7t1fmz", "revision_nr": 1, "created": 1697467089610, @@ -27697,8 +35549,14 @@ "total_amount": 20, "id": 1691880568161, "history_id": 1691880568161, - "date_created": { "type": 6, "value": 1691880568161 }, - "date_last_updated": { "type": 6, "value": 1691880568161 }, + "date_created": { + "type": 6, + "value": 1691880568161 + }, + "date_last_updated": { + "type": 6, + "value": 1691880568161 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -27767,9 +35625,18 @@ "total_amount": 31783.2, "id": "1693353168151", "history_id": "1693353168151", - "date_created": { "type": 6, "value": 1693353168151 }, - "date_last_updated": { "type": 6, "value": 1693353168151 }, - "date_of_expiration": { "type": 6, "value": 1693353168151 }, + "date_created": { + "type": 6, + "value": 1693353168151 + }, + "date_last_updated": { + "type": 6, + "value": 1693353168151 + }, + "date_of_expiration": { + "type": 6, + "value": 1693353168151 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -27785,13 +35652,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history", - "content": { "type": 1, "value": {}, "revision": "lnt02st401bzoohxbi8gbw2s", "revision_nr": 1, "created": 1697467089644, "modified": 1697467089644 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02st401bzoohxbi8gbw2s", + "revision_nr": 1, + "created": 1697467089644, + "modified": 1697467089644 + } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02sx801d1oohx2b9ugifh", "revision_nr": 1, "created": 1697467089648, @@ -27802,7 +35680,16 @@ "path": "ivipcoin-db::__movement_wallet__/036781805197076300", "content": { "type": 1, - "value": { "dataModificacao": 1689220270724, "dateValidity": 1689220270724, "totalValue": 14.47, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696215600000 } }, + "value": { + "dataModificacao": 1689220270724, + "dateValidity": 1689220270724, + "totalValue": 14.47, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696215600000 + } + }, "revision": "lnt02ssv01bwoohx418bgia3", "revision_nr": 1, "created": 1697467089653, @@ -27813,7 +35700,14 @@ "path": "ivipcoin-db::__movement_wallet__/039695615525592090", "content": { "type": 1, - "value": { "dataModificacao": 1677455523126, "dateValidity": 1677455523127, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677455523126, + "dateValidity": 1677455523127, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02sxh01d2oohx1gbw4ue1", "revision_nr": 1, "created": 1697467089658, @@ -27824,7 +35718,11 @@ "path": "ivipcoin-db::__movement_wallet__/039734721775654510/balances/IVIP", "content": { "type": 1, - "value": { "available": "150481.00000000", "symbol": "IVIP", "value": 16.044 }, + "value": { + "available": "150481.00000000", + "symbol": "IVIP", + "value": 16.044 + }, "revision": "lnt02sxm01d5oohx3nqv4oia", "revision_nr": 1, "created": 1697467089661, @@ -27833,13 +35731,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02sxm01d4oohx9vo95u55", "revision_nr": 1, "created": 1697467089665, "modified": 1697467089665 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sxm01d4oohx9vo95u55", + "revision_nr": 1, + "created": 1697467089665, + "modified": 1697467089665 + } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699111958190 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699111958190 + } + }, "revision": "lnt02sxt01d8oohx9gzhf8q7", "revision_nr": 1, "created": 1697467089668, @@ -27902,8 +35813,14 @@ "total_amount": 100, "id": "1696519958190", "history_id": "1696519958190", - "date_created": { "type": 6, "value": 1696519958190 }, - "date_last_updated": { "type": 6, "value": 1696519958190 }, + "date_created": { + "type": 6, + "value": 1696519958190 + }, + "date_last_updated": { + "type": 6, + "value": 1696519958190 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -27921,7 +35838,13 @@ "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699133572533 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699133572533 + } + }, "revision": "lnt02syb01ddoohx5aqy3idh", "revision_nr": 1, "created": 1697467089687, @@ -27984,8 +35907,14 @@ "total_amount": 50, "id": "1696541572533", "history_id": "1696541572533", - "date_created": { "type": 6, "value": 1696541572533 }, - "date_last_updated": { "type": 6, "value": 1696541572533 }, + "date_created": { + "type": 6, + "value": 1696541572533 + }, + "date_last_updated": { + "type": 6, + "value": 1696541572533 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -28003,7 +35932,13 @@ "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699177584658 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699177584658 + } + }, "revision": "lnt02syu01dioohx166kfdqz", "revision_nr": 1, "created": 1697467089705, @@ -28066,16 +36001,28 @@ "total_amount": 50, "id": "1696585584658", "history_id": "1696585584658", - "date_created": { "type": 6, "value": 1696585584658 }, - "date_last_updated": { "type": 6, "value": 1696688396574 }, + "date_created": { + "type": 6, + "value": 1696585584658 + }, + "date_last_updated": { + "type": 6, + "value": 1696688396574 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1696688396574 }, - "money_release_date": { "type": 6, "value": 1696688396574 }, + "date_approved": { + "type": 6, + "value": 1696688396574 + }, + "money_release_date": { + "type": 6, + "value": 1696688396574 + }, "money_release_status": "approved", "wasDebited": true }, @@ -28130,9 +36077,18 @@ "total_amount": 70156, "id": "1696706580251", "history_id": "1696706580251", - "date_created": { "type": 6, "value": 1696706580251 }, - "date_last_updated": { "type": 6, "value": 1696706580251 }, - "date_of_expiration": { "type": 6, "value": 1696706580251 }, + "date_created": { + "type": 6, + "value": 1696706580251 + }, + "date_last_updated": { + "type": 6, + "value": 1696706580251 + }, + "date_of_expiration": { + "type": 6, + "value": 1696706580251 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -28151,7 +36107,13 @@ "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699487170002 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699487170002 + } + }, "revision": "lnt02szr01dqoohx8pgr0q6g", "revision_nr": 1, "created": 1697467089740, @@ -28214,16 +36176,28 @@ "total_amount": 50, "id": "1696895170006", "history_id": "1696895170006", - "date_created": { "type": 6, "value": 1696895170006 }, - "date_last_updated": { "type": 6, "value": 1696939710416 }, + "date_created": { + "type": 6, + "value": 1696895170006 + }, + "date_last_updated": { + "type": 6, + "value": 1696939710416 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1696939710416 }, - "money_release_date": { "type": 6, "value": 1696939710416 }, + "date_approved": { + "type": 6, + "value": 1696939710416 + }, + "money_release_date": { + "type": 6, + "value": 1696939710416 + }, "money_release_status": "approved", "wasDebited": true }, @@ -28278,9 +36252,18 @@ "total_amount": 80325, "id": "1696951453164", "history_id": "1696951453164", - "date_created": { "type": 6, "value": 1696951453164 }, - "date_last_updated": { "type": 6, "value": 1696951453164 }, - "date_of_expiration": { "type": 6, "value": 1696951453164 }, + "date_created": { + "type": 6, + "value": 1696951453164 + }, + "date_last_updated": { + "type": 6, + "value": 1696951453164 + }, + "date_of_expiration": { + "type": 6, + "value": 1696951453164 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -28297,13 +36280,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history", - "content": { "type": 1, "value": {}, "revision": "lnt02sxt01d6oohxe5wrf499", "revision_nr": 1, "created": 1697467089769, "modified": 1697467089769 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sxt01d6oohxe5wrf499", + "revision_nr": 1, + "created": 1697467089769, + "modified": 1697467089769 + } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02t0p01dxoohxgx6k08vf", "revision_nr": 1, "created": 1697467089774, @@ -28314,7 +36308,15 @@ "path": "ivipcoin-db::__movement_wallet__/039734721775654510", "content": { "type": 1, - "value": { "dataModificacao": 1696456086300, "dateValidity": 1696456087509, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697425200000 } }, + "value": { + "dataModificacao": 1696456086300, + "dateValidity": 1696456087509, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } + }, "revision": "lnt02sxm01d3oohxabyd9odo", "revision_nr": 1, "created": 1697467089778, @@ -28325,7 +36327,14 @@ "path": "ivipcoin-db::__movement_wallet__/041090915252286260", "content": { "type": 1, - "value": { "dataModificacao": 1677897482019, "dateValidity": 1678002144888, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677897482019, + "dateValidity": 1678002144888, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02t0y01dyoohx3z7z1div", "revision_nr": 1, "created": 1697467089781, @@ -28380,7 +36389,11 @@ "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.9900000000000001 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.9900000000000001 + }, "revision": "lnt02t1i01e8oohx6pby4ypc", "revision_nr": 1, "created": 1697467089801, @@ -28389,21 +36402,52 @@ }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02t1i01e7oohxel1u3aki", "revision_nr": 1, "created": 1697467089806, "modified": 1697467089806 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02t1i01e7oohxel1u3aki", + "revision_nr": 1, + "created": 1697467089806, + "modified": 1697467089806 + } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/bank_info/collector", - "content": { "type": 1, "value": { "account_holder_name": "IVIPCOIN LTDA" }, "revision": "lnt02t1q01eaoohxf3n037z6", "revision_nr": 1, "created": 1697467089810, "modified": 1697467089810 } + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "lnt02t1q01eaoohxf3n037z6", + "revision_nr": 1, + "created": 1697467089810, + "modified": 1697467089810 + } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02t1q01e9oohxbf8xcqy8", "revision_nr": 1, "created": 1697467089814, "modified": 1697467089814 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02t1q01e9oohxbf8xcqy8", + "revision_nr": 1, + "created": 1697467089814, + "modified": 1697467089814 + } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 100.99, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 100.99, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02t1601e3oohxfxdn0hjt", "revision_nr": 1, "created": 1697467089818, @@ -28422,9 +36466,18 @@ "total_amount": 100.99, "history_id": 1679068099316, "id": 55838306631, - "date_created": { "type": 6, "value": 1679068099967 }, - "date_last_updated": { "type": 6, "value": 1679154647000 }, - "date_of_expiration": { "type": 6, "value": 1679154499697 }, + "date_created": { + "type": 6, + "value": 1679068099967 + }, + "date_last_updated": { + "type": 6, + "value": 1679154647000 + }, + "date_of_expiration": { + "type": 6, + "value": 1679154499697 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "cancelled", @@ -28485,7 +36538,11 @@ "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.9900000000000001 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.9900000000000001 + }, "revision": "lnt02t2l01eioohx6eahgvvl", "revision_nr": 1, "created": 1697467089842, @@ -28494,21 +36551,52 @@ }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02t2k01ehoohx4bebgqxg", "revision_nr": 1, "created": 1697467089846, "modified": 1697467089846 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02t2k01ehoohx4bebgqxg", + "revision_nr": 1, + "created": 1697467089846, + "modified": 1697467089846 + } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/bank_info/collector", - "content": { "type": 1, "value": { "account_holder_name": "IVIPCOIN LTDA" }, "revision": "lnt02t2u01ekoohxfbxo3wqu", "revision_nr": 1, "created": 1697467089849, "modified": 1697467089849 } + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "lnt02t2u01ekoohxfbxo3wqu", + "revision_nr": 1, + "created": 1697467089849, + "modified": 1697467089849 + } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02t2u01ejoohx5ou5b68b", "revision_nr": 1, "created": 1697467089853, "modified": 1697467089853 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02t2u01ejoohx5ou5b68b", + "revision_nr": 1, + "created": 1697467089853, + "modified": 1697467089853 + } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 100.99, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 100.99, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02t2901edoohxf9jbef3i", "revision_nr": 1, "created": 1697467089857, @@ -28527,16 +36615,31 @@ "total_amount": 100.99, "history_id": 1679068275059, "id": 55838239297, - "date_created": { "type": 6, "value": 1679068275826 }, - "date_last_updated": { "type": 6, "value": 1679068337000 }, - "date_of_expiration": { "type": 6, "value": 1679154675577 }, + "date_created": { + "type": 6, + "value": 1679068275826 + }, + "date_last_updated": { + "type": 6, + "value": 1679068337000 + }, + "date_of_expiration": { + "type": 6, + "value": 1679154675577 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679068337000 }, - "money_release_date": { "type": 6, "value": 1679068337000 }, + "date_approved": { + "type": 6, + "value": 1679068337000 + }, + "money_release_date": { + "type": 6, + "value": 1679068337000 + }, "wasDebited": true }, "revision": "lnt02t2601eboohxggahhasw", @@ -28581,9 +36684,18 @@ "original_amount": 581846, "total_amount": 581846, "id": 1679267870429, - "date_created": { "type": 6, "value": 1679267870429 }, - "date_last_updated": { "type": 6, "value": 1679267870429 }, - "date_of_expiration": { "type": 6, "value": 1679267870429 }, + "date_created": { + "type": 6, + "value": 1679267870429 + }, + "date_last_updated": { + "type": 6, + "value": 1679267870429 + }, + "date_of_expiration": { + "type": 6, + "value": 1679267870429 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28611,7 +36723,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586586983/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02t3l01epoohxdrppfbiz", "revision_nr": 1, "created": 1697467089877, "modified": 1697467089877 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02t3l01epoohxdrppfbiz", + "revision_nr": 1, + "created": 1697467089877, + "modified": 1697467089877 + } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586586983", @@ -28625,9 +36746,18 @@ "total_amount": 581846, "history_id": 1686586586983, "id": 1686586586983, - "date_created": { "type": 6, "value": 1686586586983 }, - "date_last_updated": { "type": 6, "value": 1686586586983 }, - "date_of_expiration": { "type": 6, "value": 1686586586983 }, + "date_created": { + "type": 6, + "value": 1686586586983 + }, + "date_last_updated": { + "type": 6, + "value": 1686586586983 + }, + "date_of_expiration": { + "type": 6, + "value": 1686586586983 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -28652,7 +36782,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586986320/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02t3w01esoohx5eiqafm7", "revision_nr": 1, "created": 1697467089888, "modified": 1697467089888 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02t3w01esoohx5eiqafm7", + "revision_nr": 1, + "created": 1697467089888, + "modified": 1697467089888 + } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586986320", @@ -28666,9 +36805,18 @@ "total_amount": 581846, "history_id": 1686586986320, "id": 1686586986320, - "date_created": { "type": 6, "value": 1686586986320 }, - "date_last_updated": { "type": 6, "value": 1686586986320 }, - "date_of_expiration": { "type": 6, "value": 1686586986320 }, + "date_created": { + "type": 6, + "value": 1686586986320 + }, + "date_last_updated": { + "type": 6, + "value": 1686586986320 + }, + "date_of_expiration": { + "type": 6, + "value": 1686586986320 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -28735,9 +36883,18 @@ "total_amount": 400954, "id": 1690134068779, "history_id": 1690134068779, - "date_created": { "type": 6, "value": 1690134068779 }, - "date_last_updated": { "type": 6, "value": 1690134068779 }, - "date_of_expiration": { "type": 6, "value": 1690134068779 }, + "date_created": { + "type": 6, + "value": 1690134068779 + }, + "date_last_updated": { + "type": 6, + "value": 1690134068779 + }, + "date_of_expiration": { + "type": 6, + "value": 1690134068779 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -28753,13 +36910,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history", - "content": { "type": 1, "value": {}, "revision": "lnt02t1201e0oohx9qte36ku", "revision_nr": 1, "created": 1697467089912, "modified": 1697467089912 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02t1201e0oohx9qte36ku", + "revision_nr": 1, + "created": 1697467089912, + "modified": 1697467089912 + } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/balances/IVIP", "content": { "type": 1, - "value": { "available": "581846.00000000", "symbol": "IVIP", "value": 73.41 }, + "value": { + "available": "581846.00000000", + "symbol": "IVIP", + "value": 73.41 + }, "revision": "lnt02t4o01eyoohx6kmi25bo", "revision_nr": 1, "created": 1697467089915, @@ -28768,13 +36936,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02t4o01exoohx7b05b194", "revision_nr": 1, "created": 1697467089919, "modified": 1697467089919 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02t4o01exoohx7b05b194", + "revision_nr": 1, + "created": 1697467089919, + "modified": 1697467089919 + } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02t4v01ezoohx040s9lk3", "revision_nr": 1, "created": 1697467089925, @@ -28785,7 +36964,16 @@ "path": "ivipcoin-db::__movement_wallet__/041395808163281030", "content": { "type": 1, - "value": { "dataModificacao": 1679068061044, "dateValidity": 1679068061044, "currencyType": "USD", "totalValue": 18.88, "balancesModificacao": { "type": 6, "value": 1696993200000 } }, + "value": { + "dataModificacao": 1679068061044, + "dateValidity": 1679068061044, + "currencyType": "USD", + "totalValue": 18.88, + "balancesModificacao": { + "type": 6, + "value": 1696993200000 + } + }, "revision": "lnt02t1101dzoohx2vjn2wtn", "revision_nr": 1, "created": 1697467089929, @@ -28805,7 +36993,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/042964162467339360/history/1689548630515/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02t5901f4oohx7uhqbt1z", "revision_nr": 1, "created": 1697467089938, "modified": 1697467089938 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02t5901f4oohx7uhqbt1z", + "revision_nr": 1, + "created": 1697467089938, + "modified": 1697467089938 + } }, { "path": "ivipcoin-db::__movement_wallet__/042964162467339360/history/1689548630515", @@ -28819,9 +37016,18 @@ "total_amount": 100, "history_id": 1689548630515, "id": 1689548630515, - "date_created": { "type": 6, "value": 1689548630515 }, - "date_last_updated": { "type": 6, "value": 1689548630515 }, - "date_of_expiration": { "type": 6, "value": 1692140630515 }, + "date_created": { + "type": 6, + "value": 1689548630515 + }, + "date_last_updated": { + "type": 6, + "value": 1689548630515 + }, + "date_of_expiration": { + "type": 6, + "value": 1692140630515 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -28835,13 +37041,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/042964162467339360/history", - "content": { "type": 1, "value": {}, "revision": "lnt02t5501f1oohxaadoab3v", "revision_nr": 1, "created": 1697467089947, "modified": 1697467089947 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02t5501f1oohxaadoab3v", + "revision_nr": 1, + "created": 1697467089947, + "modified": 1697467089947 + } }, { "path": "ivipcoin-db::__movement_wallet__/042964162467339360/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02t5n01f5oohx3uix9yue", "revision_nr": 1, "created": 1697467089951, @@ -28852,7 +37069,13 @@ "path": "ivipcoin-db::__movement_wallet__/042964162467339360", "content": { "type": 1, - "value": { "dataModificacao": 1689548492145, "dateValidity": 1689548492145, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1689548492145, + "dateValidity": 1689548492145, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02t5501f0oohxcfalao64", "revision_nr": 1, "created": 1697467089955, @@ -28863,7 +37086,11 @@ "path": "ivipcoin-db::__movement_wallet__/044107260739866040/balances/IVIP", "content": { "type": 1, - "value": { "available": "127146.00000000", "symbol": "IVIP", "value": 13.81 }, + "value": { + "available": "127146.00000000", + "symbol": "IVIP", + "value": 13.81 + }, "revision": "lnt02t5v01f8oohx3xwc8i50", "revision_nr": 1, "created": 1697467089960, @@ -28872,13 +37099,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02t5v01f7oohxcru34j2c", "revision_nr": 1, "created": 1697467089964, "modified": 1697467089964 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02t5v01f7oohxcru34j2c", + "revision_nr": 1, + "created": 1697467089964, + "modified": 1697467089964 + } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698810290801 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698810290801 + } + }, "revision": "lnt02t6401fboohx4f4nbevy", "revision_nr": 1, "created": 1697467089968, @@ -28941,8 +37181,14 @@ "total_amount": 150, "id": "1696218290801", "history_id": "1696218290801", - "date_created": { "type": 6, "value": 1696218290801 }, - "date_last_updated": { "type": 6, "value": 1696218290801 }, + "date_created": { + "type": 6, + "value": 1696218290801 + }, + "date_last_updated": { + "type": 6, + "value": 1696218290801 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -28960,7 +37206,13 @@ "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699104289783 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699104289783 + } + }, "revision": "lnt02t6p01fgoohx1m5tbxc3", "revision_nr": 1, "created": 1697467089989, @@ -29023,8 +37275,14 @@ "total_amount": 100, "id": "1696512289784", "history_id": "1696512289784", - "date_created": { "type": 6, "value": 1696512289784 }, - "date_last_updated": { "type": 6, "value": 1696512289784 }, + "date_created": { + "type": 6, + "value": 1696512289784 + }, + "date_last_updated": { + "type": 6, + "value": 1696512289784 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -29042,7 +37300,13 @@ "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699277069126 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699277069126 + } + }, "revision": "lnt02t7901floohxfqra163p", "revision_nr": 1, "created": 1697467090009, @@ -29105,16 +37369,28 @@ "total_amount": 100, "id": "1696685069127", "history_id": "1696685069127", - "date_created": { "type": 6, "value": 1696685069127 }, - "date_last_updated": { "type": 6, "value": 1696689638574 }, + "date_created": { + "type": 6, + "value": 1696685069127 + }, + "date_last_updated": { + "type": 6, + "value": 1696689638574 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1696689638574 }, - "money_release_date": { "type": 6, "value": 1696689638574 }, + "date_approved": { + "type": 6, + "value": 1696689638574 + }, + "money_release_date": { + "type": 6, + "value": 1696689638574 + }, "money_release_status": "approved", "wasDebited": true }, @@ -29169,9 +37445,18 @@ "total_amount": 127146, "id": "1696690479419", "history_id": "1696690479419", - "date_created": { "type": 6, "value": 1696690479419 }, - "date_last_updated": { "type": 6, "value": 1696690479419 }, - "date_of_expiration": { "type": 6, "value": 1696690479419 }, + "date_created": { + "type": 6, + "value": 1696690479419 + }, + "date_last_updated": { + "type": 6, + "value": 1696690479419 + }, + "date_of_expiration": { + "type": 6, + "value": 1696690479419 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -29188,13 +37473,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history", - "content": { "type": 1, "value": {}, "revision": "lnt02t6401f9oohxggif2mcp", "revision_nr": 1, "created": 1697467090043, "modified": 1697467090043 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02t6401f9oohxggif2mcp", + "revision_nr": 1, + "created": 1697467090043, + "modified": 1697467090043 + } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02t8b01fsoohx5coq26qz", "revision_nr": 1, "created": 1697467090047, @@ -29205,7 +37501,15 @@ "path": "ivipcoin-db::__movement_wallet__/044107260739866040", "content": { "type": 1, - "value": { "dataModificacao": 1696161500774, "dateValidity": 1696161500803, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696993200000 } }, + "value": { + "dataModificacao": 1696161500774, + "dateValidity": 1696161500803, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696993200000 + } + }, "revision": "lnt02t5v01f6oohxe9ox3c6c", "revision_nr": 1, "created": 1697467090050, @@ -29225,7 +37529,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/044398429081975660/history/1678092684774/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02t8o01fxoohx7nio5dzt", "revision_nr": 1, "created": 1697467090060, "modified": 1697467090060 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02t8o01fxoohx7nio5dzt", + "revision_nr": 1, + "created": 1697467090060, + "modified": 1697467090060 + } }, { "path": "ivipcoin-db::__movement_wallet__/044398429081975660/history/1678092684774", @@ -29239,9 +37552,18 @@ "total_amount": 20, "history_id": 1678092684774, "id": 1678092684774, - "date_created": { "type": 6, "value": 1678092684774 }, - "date_last_updated": { "type": 6, "value": 1678092684774 }, - "date_of_expiration": { "type": 6, "value": 1680684684774 }, + "date_created": { + "type": 6, + "value": 1678092684774 + }, + "date_last_updated": { + "type": 6, + "value": 1678092684774 + }, + "date_of_expiration": { + "type": 6, + "value": 1680684684774 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -29255,13 +37577,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/044398429081975660/history", - "content": { "type": 1, "value": {}, "revision": "lnt02t8j01fuoohxa1ypfz9y", "revision_nr": 1, "created": 1697467090068, "modified": 1697467090068 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02t8j01fuoohxa1ypfz9y", + "revision_nr": 1, + "created": 1697467090068, + "modified": 1697467090068 + } }, { "path": "ivipcoin-db::__movement_wallet__/044398429081975660", "content": { "type": 1, - "value": { "dataModificacao": 1678092570010, "dateValidity": 1678110570040, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678092570010, + "dateValidity": 1678110570040, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02t8i01ftoohx8z8s37dm", "revision_nr": 1, "created": 1697467090072, @@ -29272,7 +37607,11 @@ "path": "ivipcoin-db::__movement_wallet__/045122812371711340/balances/IVIP", "content": { "type": 1, - "value": { "available": "615.00000000", "symbol": "IVIP", "value": 0.094 }, + "value": { + "available": "615.00000000", + "symbol": "IVIP", + "value": 0.094 + }, "revision": "lnt02t9401g0oohx8gp77znh", "revision_nr": 1, "created": 1697467090076, @@ -29281,7 +37620,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02t9401fzoohxfqbn8u0r", "revision_nr": 1, "created": 1697467090080, "modified": 1697467090080 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02t9401fzoohxfqbn8u0r", + "revision_nr": 1, + "created": 1697467090080, + "modified": 1697467090080 + } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678363004367/description", @@ -29296,7 +37642,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678363004367/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02t9g01g4oohx2u0macwc", "revision_nr": 1, "created": 1697467090088, "modified": 1697467090088 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02t9g01g4oohx2u0macwc", + "revision_nr": 1, + "created": 1697467090088, + "modified": 1697467090088 + } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678363004367", @@ -29310,15 +37665,30 @@ "total_amount": 1500, "history_id": 1678363004367, "id": 1678363004367, - "date_created": { "type": 6, "value": 1678363004367 }, - "date_last_updated": { "type": 6, "value": 1678363074662 }, - "date_of_expiration": { "type": 6, "value": 1680955004367 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678363074662 }, - "money_release_date": { "type": 6, "value": 1678363074662 }, + "date_created": { + "type": 6, + "value": 1678363004367 + }, + "date_last_updated": { + "type": 6, + "value": 1678363074662 + }, + "date_of_expiration": { + "type": 6, + "value": 1680955004367 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678363074662 + }, + "money_release_date": { + "type": 6, + "value": 1678363074662 + }, "money_release_status": "approved", "wasDebited": true }, @@ -29341,7 +37711,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678578646817/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02t9t01g7oohxhjr7dj3t", "revision_nr": 1, "created": 1697467090101, "modified": 1697467090101 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02t9t01g7oohxhjr7dj3t", + "revision_nr": 1, + "created": 1697467090101, + "modified": 1697467090101 + } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678578646817", @@ -29355,15 +37734,30 @@ "total_amount": 150, "history_id": 1678578646817, "id": 1678578646817, - "date_created": { "type": 6, "value": 1678578646817 }, - "date_last_updated": { "type": 6, "value": 1678578746705 }, - "date_of_expiration": { "type": 6, "value": 1681170646817 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678578746705 }, - "money_release_date": { "type": 6, "value": 1678578746705 }, + "date_created": { + "type": 6, + "value": 1678578646817 + }, + "date_last_updated": { + "type": 6, + "value": 1678578746705 + }, + "date_of_expiration": { + "type": 6, + "value": 1681170646817 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678578746705 + }, + "money_release_date": { + "type": 6, + "value": 1678578746705 + }, "money_release_status": "approved", "wasDebited": true }, @@ -29409,9 +37803,18 @@ "original_amount": 9610615, "total_amount": 9610615, "id": 1679266969508, - "date_created": { "type": 6, "value": 1679266969508 }, - "date_last_updated": { "type": 6, "value": 1679266969508 }, - "date_of_expiration": { "type": 6, "value": 1679266969508 }, + "date_created": { + "type": 6, + "value": 1679266969508 + }, + "date_last_updated": { + "type": 6, + "value": 1679266969508 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266969508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29473,9 +37876,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1681517575873, - "date_created": { "type": 6, "value": 1681517575873 }, - "date_last_updated": { "type": 6, "value": 1681517575873 }, - "date_of_expiration": { "type": 6, "value": 1681517575873 }, + "date_created": { + "type": 6, + "value": 1681517575873 + }, + "date_last_updated": { + "type": 6, + "value": 1681517575873 + }, + "date_of_expiration": { + "type": 6, + "value": 1681517575873 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29525,9 +37937,18 @@ "original_amount": 100, "total_amount": 100, "id": 1685393623279, - "date_created": { "type": 6, "value": 1685393623279 }, - "date_last_updated": { "type": 6, "value": 1685393623279 }, - "date_of_expiration": { "type": 6, "value": 1685393623279 }, + "date_created": { + "type": 6, + "value": 1685393623279 + }, + "date_last_updated": { + "type": 6, + "value": 1685393623279 + }, + "date_of_expiration": { + "type": 6, + "value": 1685393623279 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29588,9 +38009,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685666780649, - "date_created": { "type": 6, "value": 1685666780649 }, - "date_last_updated": { "type": 6, "value": 1685666780649 }, - "date_of_expiration": { "type": 6, "value": 1688258780649 }, + "date_created": { + "type": 6, + "value": 1685666780649 + }, + "date_last_updated": { + "type": 6, + "value": 1685666780649 + }, + "date_of_expiration": { + "type": 6, + "value": 1688258780649 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29650,9 +38080,18 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1688400356570, - "date_created": { "type": 6, "value": 1688400356570 }, - "date_last_updated": { "type": 6, "value": 1688400356570 }, - "date_of_expiration": { "type": 6, "value": 1688400356570 }, + "date_created": { + "type": 6, + "value": 1688400356570 + }, + "date_last_updated": { + "type": 6, + "value": 1688400356570 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400356570 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29680,7 +38119,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688402757097/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02tbo01gnoohx0pru2qyz", "revision_nr": 1, "created": 1697467090168, "modified": 1697467090168 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02tbo01gnoohx0pru2qyz", + "revision_nr": 1, + "created": 1697467090168, + "modified": 1697467090168 + } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688402757097", @@ -29694,15 +38142,30 @@ "total_amount": 9770000, "history_id": 1688402757097, "id": 1688402757097, - "date_created": { "type": 6, "value": 1688402757097 }, - "date_last_updated": { "type": 6, "value": 1688502811967 }, - "date_of_expiration": { "type": 6, "value": 1688402757097 }, + "date_created": { + "type": 6, + "value": 1688402757097 + }, + "date_last_updated": { + "type": 6, + "value": 1688502811967 + }, + "date_of_expiration": { + "type": 6, + "value": 1688402757097 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1688502811967 }, - "money_release_date": { "type": 6, "value": 1688502811967 }, + "date_approved": { + "type": 6, + "value": 1688502811967 + }, + "money_release_date": { + "type": 6, + "value": 1688502811967 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -29714,13 +38177,32 @@ }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history", - "content": { "type": 1, "value": {}, "revision": "lnt02t9c01g1oohx18shha0u", "revision_nr": 1, "created": 1697467090177, "modified": 1697467090177 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02t9c01g1oohx18shha0u", + "revision_nr": 1, + "created": 1697467090177, + "modified": 1697467090177 + } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/credit", "content": { "type": 1, - "value": { "approvedLimit": 3000, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1680628575345 }, "lastReview": { "type": 6, "value": 1680978371033 } }, + "value": { + "approvedLimit": 3000, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1680628575345 + }, + "lastReview": { + "type": 6, + "value": 1680978371033 + } + }, "revision": "lnt02tc101gooohxhyo04ljf", "revision_nr": 1, "created": 1697467090181, @@ -29731,7 +38213,16 @@ "path": "ivipcoin-db::__movement_wallet__/045122812371711340", "content": { "type": 1, - "value": { "dataModificacao": 1678330009291, "dateValidity": 1678662517584, "totalValue": 0.17, "currencyType": "BRL", "balancesModificacao": { "type": 6, "value": 1696561200000 } }, + "value": { + "dataModificacao": 1678330009291, + "dateValidity": 1678662517584, + "totalValue": 0.17, + "currencyType": "BRL", + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } + }, "revision": "lnt02t9401fyoohx2l9pdqqq", "revision_nr": 1, "created": 1697467090185, @@ -29742,7 +38233,11 @@ "path": "ivipcoin-db::__movement_wallet__/045407265934540584/balances/IVIP", "content": { "type": 1, - "value": { "available": "32771309.00000000", "symbol": "IVIP", "value": 4296.45 }, + "value": { + "available": "32771309.00000000", + "symbol": "IVIP", + "value": 4296.45 + }, "revision": "lnt02tc901groohxejyzfctr", "revision_nr": 1, "created": 1697467090189, @@ -29751,7 +38246,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02tc901gqoohx4ii22ix6", "revision_nr": 1, "created": 1697467090193, "modified": 1697467090193 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02tc901gqoohx4ii22ix6", + "revision_nr": 1, + "created": 1697467090193, + "modified": 1697467090193 + } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678148520442/description", @@ -29766,7 +38268,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678148520442/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02tcl01gvoohxezi5aosp", "revision_nr": 1, "created": 1697467090201, "modified": 1697467090201 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02tcl01gvoohxezi5aosp", + "revision_nr": 1, + "created": 1697467090201, + "modified": 1697467090201 + } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678148520442", @@ -29780,15 +38291,30 @@ "total_amount": 4000, "history_id": 1678148520442, "id": 1678148520442, - "date_created": { "type": 6, "value": 1678148520442 }, - "date_last_updated": { "type": 6, "value": 1678205053026 }, - "date_of_expiration": { "type": 6, "value": 1680740520442 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678205053026 }, - "money_release_date": { "type": 6, "value": 1678205053026 }, + "date_created": { + "type": 6, + "value": 1678148520442 + }, + "date_last_updated": { + "type": 6, + "value": 1678205053026 + }, + "date_of_expiration": { + "type": 6, + "value": 1680740520442 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678205053026 + }, + "money_release_date": { + "type": 6, + "value": 1678205053026 + }, "money_release_status": "approved", "wasDebited": true }, @@ -29834,9 +38360,18 @@ "original_amount": 28376575, "total_amount": 28376575, "id": 1678207899775, - "date_created": { "type": 6, "value": 1678207899775 }, - "date_last_updated": { "type": 6, "value": 1678207899775 }, - "date_of_expiration": { "type": 6, "value": 1678207899775 }, + "date_created": { + "type": 6, + "value": 1678207899775 + }, + "date_last_updated": { + "type": 6, + "value": 1678207899775 + }, + "date_of_expiration": { + "type": 6, + "value": 1678207899775 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29864,7 +38399,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022785271/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02td501h0oohx9t7166as", "revision_nr": 1, "created": 1697467090222, "modified": 1697467090222 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02td501h0oohx9t7166as", + "revision_nr": 1, + "created": 1697467090222, + "modified": 1697467090222 + } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022785271", @@ -29878,15 +38422,30 @@ "total_amount": 4000, "history_id": 1689022785271, "id": 1689022785271, - "date_created": { "type": 6, "value": 1689022785271 }, - "date_last_updated": { "type": 6, "value": 1689023489899 }, - "date_of_expiration": { "type": 6, "value": 1691614785271 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689023489899 }, - "money_release_date": { "type": 6, "value": 1689023489899 }, + "date_created": { + "type": 6, + "value": 1689022785271 + }, + "date_last_updated": { + "type": 6, + "value": 1689023489899 + }, + "date_of_expiration": { + "type": 6, + "value": 1691614785271 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689023489899 + }, + "money_release_date": { + "type": 6, + "value": 1689023489899 + }, "money_release_status": "approved", "wasDebited": true }, @@ -29909,7 +38468,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022932520/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02tdi01h3oohxe4vkemf9", "revision_nr": 1, "created": 1697467090234, "modified": 1697467090234 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02tdi01h3oohxe4vkemf9", + "revision_nr": 1, + "created": 1697467090234, + "modified": 1697467090234 + } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022932520", @@ -29923,9 +38491,18 @@ "total_amount": 4000, "history_id": 1689022932520, "id": 1689022932520, - "date_created": { "type": 6, "value": 1689022932520 }, - "date_last_updated": { "type": 6, "value": 1689022932520 }, - "date_of_expiration": { "type": 6, "value": 1691614932520 }, + "date_created": { + "type": 6, + "value": 1689022932520 + }, + "date_last_updated": { + "type": 6, + "value": 1689022932520 + }, + "date_of_expiration": { + "type": 6, + "value": 1691614932520 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -29973,9 +38550,18 @@ "original_amount": 3621314, "total_amount": 3621314, "id": 1689025604196, - "date_created": { "type": 6, "value": 1689025604196 }, - "date_last_updated": { "type": 6, "value": 1689025604196 }, - "date_of_expiration": { "type": 6, "value": 1689025604196 }, + "date_created": { + "type": 6, + "value": 1689025604196 + }, + "date_last_updated": { + "type": 6, + "value": 1689025604196 + }, + "date_of_expiration": { + "type": 6, + "value": 1689025604196 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30003,7 +38589,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689196978297/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02te401h8oohxde6s7skl", "revision_nr": 1, "created": 1697467090256, "modified": 1697467090256 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02te401h8oohxde6s7skl", + "revision_nr": 1, + "created": 1697467090256, + "modified": 1697467090256 + } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689196978297", @@ -30017,15 +38612,30 @@ "total_amount": 2000, "history_id": 1689196978297, "id": 1689196978297, - "date_created": { "type": 6, "value": 1689196978297 }, - "date_last_updated": { "type": 6, "value": 1689257573443 }, - "date_of_expiration": { "type": 6, "value": 1691788978297 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689257573443 }, - "money_release_date": { "type": 6, "value": 1689257573443 }, + "date_created": { + "type": 6, + "value": 1689196978297 + }, + "date_last_updated": { + "type": 6, + "value": 1689257573443 + }, + "date_of_expiration": { + "type": 6, + "value": 1691788978297 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689257573443 + }, + "money_release_date": { + "type": 6, + "value": 1689257573443 + }, "money_release_status": "approved", "wasDebited": true }, @@ -30071,9 +38681,18 @@ "original_amount": 773420, "total_amount": 773420, "id": 1689258784601, - "date_created": { "type": 6, "value": 1689258784601 }, - "date_last_updated": { "type": 6, "value": 1689258784601 }, - "date_of_expiration": { "type": 6, "value": 1689258784601 }, + "date_created": { + "type": 6, + "value": 1689258784601 + }, + "date_last_updated": { + "type": 6, + "value": 1689258784601 + }, + "date_of_expiration": { + "type": 6, + "value": 1689258784601 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30090,13 +38709,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history", - "content": { "type": 1, "value": {}, "revision": "lnt02tch01gsoohx4rir8eku", "revision_nr": 1, "created": 1697467090275, "modified": 1697467090275 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02tch01gsoohx4rir8eku", + "revision_nr": 1, + "created": 1697467090275, + "modified": 1697467090275 + } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02ter01hboohxayfxcnf1", "revision_nr": 1, "created": 1697467090281, @@ -30107,7 +38737,16 @@ "path": "ivipcoin-db::__movement_wallet__/045407265934540584", "content": { "type": 1, - "value": { "dataModificacao": 1678132398712, "dateValidity": 1678671560774, "totalValue": 7620.23, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696820400000 } }, + "value": { + "dataModificacao": 1678132398712, + "dateValidity": 1678671560774, + "totalValue": 7620.23, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } + }, "revision": "lnt02tc901gpoohxbb2tcf1e", "revision_nr": 1, "created": 1697467090287, @@ -30118,7 +38757,14 @@ "path": "ivipcoin-db::__movement_wallet__/045642520706235200", "content": { "type": 1, - "value": { "dataModificacao": 1678565263127, "dateValidity": 1678579663168, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678565263127, + "dateValidity": 1678579663168, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02tf301hcoohx8nul0s2y", "revision_nr": 1, "created": 1697467090291, @@ -30129,7 +38775,11 @@ "path": "ivipcoin-db::__movement_wallet__/046564008100064220/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02tf701heoohx34bz9f0r", "revision_nr": 1, "created": 1697467090295, @@ -30146,7 +38796,10 @@ "balances": {}, "history": {}, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1697166000000 } + "balancesModificacao": { + "type": 6, + "value": 1697166000000 + } }, "revision": "lnt02tf701hdoohxh1t80idd", "revision_nr": 1, @@ -30164,7 +38817,10 @@ "balances": {}, "history": {}, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1692500400000 } + "balancesModificacao": { + "type": 6, + "value": 1692500400000 + } }, "revision": "lnt02tff01hfoohxfuvh1sfd", "revision_nr": 1, @@ -30176,7 +38832,11 @@ "path": "ivipcoin-db::__movement_wallet__/047925577230662820/balances/IVIP", "content": { "type": 1, - "value": { "available": "8588955.54000000", "symbol": "IVIP", "value": 4678.3 }, + "value": { + "available": "8588955.54000000", + "symbol": "IVIP", + "value": 4678.3 + }, "revision": "lnt02tfj01hioohxe32w0joy", "revision_nr": 1, "created": 1697467090308, @@ -30185,7 +38845,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02tfj01hhoohx23x32tut", "revision_nr": 1, "created": 1697467090311, "modified": 1697467090311 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02tfj01hhoohx23x32tut", + "revision_nr": 1, + "created": 1697467090311, + "modified": 1697467090311 + } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1683569771704/description", @@ -30200,7 +38867,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1683569771704/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02tfv01hmoohxazcw1r14", "revision_nr": 1, "created": 1697467090319, "modified": 1697467090319 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02tfv01hmoohxazcw1r14", + "revision_nr": 1, + "created": 1697467090319, + "modified": 1697467090319 + } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1683569771704", @@ -30214,15 +38890,30 @@ "total_amount": 5000, "history_id": 1683569771704, "id": 1683569771704, - "date_created": { "type": 6, "value": 1683569771704 }, - "date_last_updated": { "type": 6, "value": 1683570873225 }, - "date_of_expiration": { "type": 6, "value": 1686161771704 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1683570873225 }, - "money_release_date": { "type": 6, "value": 1683570873225 }, + "date_created": { + "type": 6, + "value": 1683569771704 + }, + "date_last_updated": { + "type": 6, + "value": 1683570873225 + }, + "date_of_expiration": { + "type": 6, + "value": 1686161771704 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683570873225 + }, + "money_release_date": { + "type": 6, + "value": 1683570873225 + }, "money_release_status": "approved", "wasDebited": true }, @@ -30268,9 +38959,18 @@ "original_amount": 27021960, "total_amount": 27021960, "id": 1684018936403, - "date_created": { "type": 6, "value": 1684018936403 }, - "date_last_updated": { "type": 6, "value": 1684018936403 }, - "date_of_expiration": { "type": 6, "value": 1684018936403 }, + "date_created": { + "type": 6, + "value": 1684018936403 + }, + "date_last_updated": { + "type": 6, + "value": 1684018936403 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018936403 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30331,9 +39031,18 @@ "original_amount": 7668365, "total_amount": 7668365, "id": 1688531798249, - "date_created": { "type": 6, "value": 1688531798249 }, - "date_last_updated": { "type": 6, "value": 1688531798249 }, - "date_of_expiration": { "type": 6, "value": 1691210198249 }, + "date_created": { + "type": 6, + "value": 1688531798249 + }, + "date_last_updated": { + "type": 6, + "value": 1688531798249 + }, + "date_of_expiration": { + "type": 6, + "value": 1691210198249 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30361,7 +39070,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688647483933/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02tgt01huoohx28qp4fkz", "revision_nr": 1, "created": 1697467090352, "modified": 1697467090352 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02tgt01huoohx28qp4fkz", + "revision_nr": 1, + "created": 1697467090352, + "modified": 1697467090352 + } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688647483933", @@ -30375,15 +39093,30 @@ "total_amount": 500, "history_id": 1688647483933, "id": 1688647483933, - "date_created": { "type": 6, "value": 1688647483933 }, - "date_last_updated": { "type": 6, "value": 1688767276048 }, - "date_of_expiration": { "type": 6, "value": 1691239483933 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1688767276048 }, - "money_release_date": { "type": 6, "value": 1688767276048 }, + "date_created": { + "type": 6, + "value": 1688647483933 + }, + "date_last_updated": { + "type": 6, + "value": 1688767276048 + }, + "date_of_expiration": { + "type": 6, + "value": 1691239483933 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1688767276048 + }, + "money_release_date": { + "type": 6, + "value": 1688767276048 + }, "money_release_status": "approved", "wasDebited": true }, @@ -30429,9 +39162,18 @@ "original_amount": 823634, "total_amount": 823634, "id": 1688771723408, - "date_created": { "type": 6, "value": 1688771723408 }, - "date_last_updated": { "type": 6, "value": 1688771723408 }, - "date_of_expiration": { "type": 6, "value": 1688771723408 }, + "date_created": { + "type": 6, + "value": 1688771723408 + }, + "date_last_updated": { + "type": 6, + "value": 1688771723408 + }, + "date_of_expiration": { + "type": 6, + "value": 1688771723408 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30459,7 +39201,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689021558105/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02thg01hzoohxabvzgyvr", "revision_nr": 1, "created": 1697467090376, "modified": 1697467090376 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02thg01hzoohxabvzgyvr", + "revision_nr": 1, + "created": 1697467090376, + "modified": 1697467090376 + } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689021558105", @@ -30473,15 +39224,30 @@ "total_amount": 1000, "history_id": 1689021558105, "id": 1689021558105, - "date_created": { "type": 6, "value": 1689021558105 }, - "date_last_updated": { "type": 6, "value": 1689023222567 }, - "date_of_expiration": { "type": 6, "value": 1691613558105 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689023222567 }, - "money_release_date": { "type": 6, "value": 1689023222567 }, + "date_created": { + "type": 6, + "value": 1689021558105 + }, + "date_last_updated": { + "type": 6, + "value": 1689023222567 + }, + "date_of_expiration": { + "type": 6, + "value": 1691613558105 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689023222567 + }, + "money_release_date": { + "type": 6, + "value": 1689023222567 + }, "money_release_status": "approved", "wasDebited": true }, @@ -30527,9 +39293,18 @@ "original_amount": 914949, "total_amount": 914949, "id": 1689023394597, - "date_created": { "type": 6, "value": 1689023394597 }, - "date_last_updated": { "type": 6, "value": 1689023394597 }, - "date_of_expiration": { "type": 6, "value": 1689023394597 }, + "date_created": { + "type": 6, + "value": 1689023394597 + }, + "date_last_updated": { + "type": 6, + "value": 1689023394597 + }, + "date_of_expiration": { + "type": 6, + "value": 1689023394597 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30557,7 +39332,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689248290301/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02ti101i4oohx0bhs051n", "revision_nr": 1, "created": 1697467090398, "modified": 1697467090398 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02ti101i4oohx0bhs051n", + "revision_nr": 1, + "created": 1697467090398, + "modified": 1697467090398 + } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689248290301", @@ -30571,15 +39355,30 @@ "total_amount": 1000, "history_id": 1689248290301, "id": 1689248290301, - "date_created": { "type": 6, "value": 1689248290301 }, - "date_last_updated": { "type": 6, "value": 1689256767203 }, - "date_of_expiration": { "type": 6, "value": 1691840290301 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689256767203 }, - "money_release_date": { "type": 6, "value": 1689256767203 }, + "date_created": { + "type": 6, + "value": 1689248290301 + }, + "date_last_updated": { + "type": 6, + "value": 1689256767203 + }, + "date_of_expiration": { + "type": 6, + "value": 1691840290301 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689256767203 + }, + "money_release_date": { + "type": 6, + "value": 1689256767203 + }, "money_release_status": "approved", "wasDebited": true }, @@ -30625,9 +39424,18 @@ "original_amount": 381522, "total_amount": 381522, "id": 1689260053657, - "date_created": { "type": 6, "value": 1689260053657 }, - "date_last_updated": { "type": 6, "value": 1689260053657 }, - "date_of_expiration": { "type": 6, "value": 1689260053657 }, + "date_created": { + "type": 6, + "value": 1689260053657 + }, + "date_last_updated": { + "type": 6, + "value": 1689260053657 + }, + "date_of_expiration": { + "type": 6, + "value": 1689260053657 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30688,9 +39496,18 @@ "original_amount": 5008550, "total_amount": 5008550, "id": 1689301547038, - "date_created": { "type": 6, "value": 1689301547038 }, - "date_last_updated": { "type": 6, "value": 1689301547038 }, - "date_of_expiration": { "type": 6, "value": 1752459947038 }, + "date_created": { + "type": 6, + "value": 1689301547038 + }, + "date_last_updated": { + "type": 6, + "value": 1689301547038 + }, + "date_of_expiration": { + "type": 6, + "value": 1752459947038 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30717,7 +39534,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689355287691/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02tj201icoohxg3mg6f5f", "revision_nr": 1, "created": 1697467090434, "modified": 1697467090434 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02tj201icoohxg3mg6f5f", + "revision_nr": 1, + "created": 1697467090434, + "modified": 1697467090434 + } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689355287691", @@ -30731,15 +39557,30 @@ "total_amount": 2000, "history_id": 1689355287691, "id": 1689355287691, - "date_created": { "type": 6, "value": 1689355287691 }, - "date_last_updated": { "type": 6, "value": 1689356136387 }, - "date_of_expiration": { "type": 6, "value": 1691947287691 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689356136387 }, - "money_release_date": { "type": 6, "value": 1689356136387 }, + "date_created": { + "type": 6, + "value": 1689355287691 + }, + "date_last_updated": { + "type": 6, + "value": 1689356136387 + }, + "date_of_expiration": { + "type": 6, + "value": 1691947287691 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689356136387 + }, + "money_release_date": { + "type": 6, + "value": 1689356136387 + }, "money_release_status": "approved", "wasDebited": true }, @@ -30785,9 +39626,18 @@ "original_amount": 1235586, "total_amount": 1235586, "id": 1689356922364, - "date_created": { "type": 6, "value": 1689356922364 }, - "date_last_updated": { "type": 6, "value": 1689356922364 }, - "date_of_expiration": { "type": 6, "value": 1689356922364 }, + "date_created": { + "type": 6, + "value": 1689356922364 + }, + "date_last_updated": { + "type": 6, + "value": 1689356922364 + }, + "date_of_expiration": { + "type": 6, + "value": 1689356922364 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30806,7 +39656,13 @@ "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1692459787113 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692459787113 + } + }, "revision": "lnt02tjk01igoohxahkg1pxh", "revision_nr": 1, "created": 1697467090452, @@ -30868,8 +39724,14 @@ "total_amount": 3000, "id": 1689867787119, "history_id": 1689867787119, - "date_created": { "type": 6, "value": 1689867787119 }, - "date_last_updated": { "type": 6, "value": 1689867787119 }, + "date_created": { + "type": 6, + "value": 1689867787119 + }, + "date_last_updated": { + "type": 6, + "value": 1689867787119 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -30887,7 +39749,13 @@ "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1692534311952 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692534311952 + } + }, "revision": "lnt02tk401iloohxf1no2xox", "revision_nr": 1, "created": 1697467090473, @@ -30949,16 +39817,28 @@ "total_amount": 3000, "id": 1689942311952, "history_id": 1689942311952, - "date_created": { "type": 6, "value": 1689942311952 }, - "date_last_updated": { "type": 6, "value": 1689942338759 }, + "date_created": { + "type": 6, + "value": 1689942311952 + }, + "date_last_updated": { + "type": 6, + "value": 1689942338759 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1689942338759 }, - "money_release_date": { "type": 6, "value": 1689942338759 }, + "date_approved": { + "type": 6, + "value": 1689942338759 + }, + "money_release_date": { + "type": 6, + "value": 1689942338759 + }, "money_release_status": "approved", "wasDebited": true }, @@ -31004,9 +39884,18 @@ "original_amount": 1849758, "total_amount": 1849758, "id": 1689942442311, - "date_created": { "type": 6, "value": 1689942442311 }, - "date_last_updated": { "type": 6, "value": 1689942442311 }, - "date_of_expiration": { "type": 6, "value": 1689942442311 }, + "date_created": { + "type": 6, + "value": 1689942442311 + }, + "date_last_updated": { + "type": 6, + "value": 1689942442311 + }, + "date_of_expiration": { + "type": 6, + "value": 1689942442311 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -31025,7 +39914,13 @@ "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693792496983 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693792496983 + } + }, "revision": "lnt02tkz01isoohx4n0cd1fy", "revision_nr": 1, "created": 1697467090504, @@ -31087,8 +39982,14 @@ "total_amount": 2000, "id": 1691200496984, "history_id": 1691200496984, - "date_created": { "type": 6, "value": 1691200496984 }, - "date_last_updated": { "type": 6, "value": 1691200496984 }, + "date_created": { + "type": 6, + "value": 1691200496984 + }, + "date_last_updated": { + "type": 6, + "value": 1691200496984 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -31157,9 +40058,18 @@ "total_amount": 7821732.3, "id": 1691214286883, "history_id": 1691214286883, - "date_created": { "type": 6, "value": 1691214286883 }, - "date_last_updated": { "type": 6, "value": 1691214286883 }, - "date_of_expiration": { "type": 6, "value": 1691214286883 }, + "date_created": { + "type": 6, + "value": 1691214286883 + }, + "date_last_updated": { + "type": 6, + "value": 1691214286883 + }, + "date_of_expiration": { + "type": 6, + "value": 1691214286883 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -31177,7 +40087,13 @@ "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693845025281 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693845025281 + } + }, "revision": "lnt02tm401j1oohx48shccr3", "revision_nr": 1, "created": 1697467090544, @@ -31239,16 +40155,28 @@ "total_amount": 1500, "id": 1691253025281, "history_id": 1691253025281, - "date_created": { "type": 6, "value": 1691253025281 }, - "date_last_updated": { "type": 6, "value": 1691253214508 }, + "date_created": { + "type": 6, + "value": 1691253025281 + }, + "date_last_updated": { + "type": 6, + "value": 1691253214508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691253214508 }, - "money_release_date": { "type": 6, "value": 1691253214508 }, + "date_approved": { + "type": 6, + "value": 1691253214508 + }, + "money_release_date": { + "type": 6, + "value": 1691253214508 + }, "money_release_status": "approved", "wasDebited": true }, @@ -31302,9 +40230,18 @@ "total_amount": 2127119, "id": 1691280221861, "history_id": 1691280221861, - "date_created": { "type": 6, "value": 1691280221861 }, - "date_last_updated": { "type": 6, "value": 1691280221861 }, - "date_of_expiration": { "type": 6, "value": 1691280221861 }, + "date_created": { + "type": 6, + "value": 1691280221861 + }, + "date_last_updated": { + "type": 6, + "value": 1691280221861 + }, + "date_of_expiration": { + "type": 6, + "value": 1691280221861 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -31374,9 +40311,18 @@ "total_amount": 7769562, "id": 1691283205891, "history_id": 1691283205891, - "date_created": { "type": 6, "value": 1691283205891 }, - "date_last_updated": { "type": 6, "value": 1691283205891 }, - "date_of_expiration": { "type": 6, "value": 1693961605891 }, + "date_created": { + "type": 6, + "value": 1691283205891 + }, + "date_last_updated": { + "type": 6, + "value": 1691283205891 + }, + "date_of_expiration": { + "type": 6, + "value": 1693961605891 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -31445,9 +40391,18 @@ "total_amount": 7924953.24, "id": "1693962455688", "history_id": "1693962455688", - "date_created": { "type": 6, "value": 1693962455688 }, - "date_last_updated": { "type": 6, "value": 1693962455688 }, - "date_of_expiration": { "type": 6, "value": 1693962455688 }, + "date_created": { + "type": 6, + "value": 1693962455688 + }, + "date_last_updated": { + "type": 6, + "value": 1693962455688 + }, + "date_of_expiration": { + "type": 6, + "value": 1693962455688 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -31516,16 +40471,28 @@ "total_amount": 7931475, "id": "1693962525967", "history_id": "1693962525967", - "date_created": { "type": 6, "value": 1693962525967 }, - "date_last_updated": { "type": 6, "value": 1696424642602 }, - "date_of_expiration": { "type": 6, "value": 1696554525967 }, + "date_created": { + "type": 6, + "value": 1693962525967 + }, + "date_last_updated": { + "type": 6, + "value": 1696424642602 + }, + "date_of_expiration": { + "type": 6, + "value": 1696554525967 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": { "type": 6, "value": 1696424642602 }, + "money_release_date": { + "type": 6, + "value": 1696424642602 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -31590,16 +40557,28 @@ "total_amount": 19942224, "id": "1695167532103", "history_id": "1695167532103", - "date_created": { "type": 6, "value": 1695167532103 }, - "date_last_updated": { "type": 6, "value": 1695678287175 }, - "date_of_expiration": { "type": 6, "value": 1710892332102 }, + "date_created": { + "type": 6, + "value": 1695167532103 + }, + "date_last_updated": { + "type": 6, + "value": 1695678287175 + }, + "date_of_expiration": { + "type": 6, + "value": 1710892332102 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": { "type": 6, "value": 1695678287175 }, + "money_release_date": { + "type": 6, + "value": 1695678287175 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -31635,7 +40614,11 @@ "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 30 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 30 + }, "revision": "lnt02tpo01jtoohxebf8fdx5", "revision_nr": 1, "created": 1697467090676, @@ -31644,7 +40627,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02tpo01jsoohx2c99ao7o", "revision_nr": 1, "created": 1697467090680, "modified": 1697467090680 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02tpo01jsoohx2c99ao7o", + "revision_nr": 1, + "created": 1697467090680, + "modified": 1697467090680 + } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details", @@ -31679,17 +40669,32 @@ "total_amount": 970, "id": "1695956035041", "history_id": "1695956035041", - "date_created": { "type": 6, "value": 1695956035041 }, - "date_last_updated": { "type": 6, "value": 1696292637561 }, - "date_of_expiration": { "type": 6, "value": 1695956035041 }, + "date_created": { + "type": 6, + "value": 1695956035041 + }, + "date_last_updated": { + "type": 6, + "value": 1696292637561 + }, + "date_of_expiration": { + "type": 6, + "value": 1695956035041 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1696292637561 }, - "money_release_date": { "type": 6, "value": 1696292637561 }, + "date_approved": { + "type": 6, + "value": 1696292637561 + }, + "money_release_date": { + "type": 6, + "value": 1696292637561 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -31725,7 +40730,11 @@ "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 651697.8461999999 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 651697.8461999999 + }, "revision": "lnt02tql01jzoohx999408ge", "revision_nr": 1, "created": 1697467090709, @@ -31734,7 +40743,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02tql01jyoohxee36cv0v", "revision_nr": 1, "created": 1697467090714, "modified": 1697467090714 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02tql01jyoohxee36cv0v", + "revision_nr": 1, + "created": 1697467090714, + "modified": 1697467090714 + } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details", @@ -31769,17 +40785,32 @@ "total_amount": 21071563.6938, "id": "1696003948025", "history_id": "1696003948025", - "date_created": { "type": 6, "value": 1696003948025 }, - "date_last_updated": { "type": 6, "value": 1696292793604 }, - "date_of_expiration": { "type": 6, "value": 1696003948025 }, + "date_created": { + "type": 6, + "value": 1696003948025 + }, + "date_last_updated": { + "type": 6, + "value": 1696292793604 + }, + "date_of_expiration": { + "type": 6, + "value": 1696003948025 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_other_reason", - "date_approved": { "type": 6, "value": 1696292793604 }, - "money_release_date": { "type": 6, "value": 1696292793604 }, + "date_approved": { + "type": 6, + "value": 1696292793604 + }, + "money_release_date": { + "type": 6, + "value": 1696292793604 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -31815,7 +40846,11 @@ "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 304593.12 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 304593.12 + }, "revision": "lnt02trj01k5oohxft2g55n5", "revision_nr": 1, "created": 1697467090743, @@ -31824,7 +40859,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02tri01k4oohx5rx363bw", "revision_nr": 1, "created": 1697467090747, "modified": 1697467090747 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02tri01k4oohx5rx363bw", + "revision_nr": 1, + "created": 1697467090747, + "modified": 1697467090747 + } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details", @@ -31859,16 +40901,28 @@ "total_amount": 9848510.88, "id": "1696207958470", "history_id": "1696207958470", - "date_created": { "type": 6, "value": 1696207958470 }, - "date_last_updated": { "type": 6, "value": 1696293727841 }, - "date_of_expiration": { "type": 6, "value": 1696207958470 }, + "date_created": { + "type": 6, + "value": 1696207958470 + }, + "date_last_updated": { + "type": 6, + "value": 1696293727841 + }, + "date_of_expiration": { + "type": 6, + "value": 1696207958470 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_account_contains_debit_balance", - "money_release_date": { "type": 6, "value": 1696293727841 }, + "money_release_date": { + "type": 6, + "value": 1696293727841 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -31904,7 +40958,11 @@ "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 600892.0499999999 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 600892.0499999999 + }, "revision": "lnt02tsh01kboohx5kcl65lu", "revision_nr": 1, "created": 1697467090777, @@ -31913,7 +40971,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02tsh01kaoohx0qto74o9", "revision_nr": 1, "created": 1697467090781, "modified": 1697467090781 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02tsh01kaoohx0qto74o9", + "revision_nr": 1, + "created": 1697467090781, + "modified": 1697467090781 + } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details", @@ -31948,17 +41013,32 @@ "total_amount": 19428842.95, "id": "1696471625534", "history_id": "1696471625534", - "date_created": { "type": 6, "value": 1696471625534 }, - "date_last_updated": { "type": 6, "value": 1696475012296 }, - "date_of_expiration": { "type": 6, "value": 1696471625534 }, + "date_created": { + "type": 6, + "value": 1696471625534 + }, + "date_last_updated": { + "type": 6, + "value": 1696475012296 + }, + "date_of_expiration": { + "type": 6, + "value": 1696471625534 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1696475012296 }, - "money_release_date": { "type": 6, "value": 1696475012296 }, + "date_approved": { + "type": 6, + "value": 1696475012296 + }, + "money_release_date": { + "type": 6, + "value": 1696475012296 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -32024,9 +41104,18 @@ "total_amount": 7931207, "id": "1696471870838", "history_id": "1696471870838", - "date_created": { "type": 6, "value": 1696471870838 }, - "date_last_updated": { "type": 6, "value": 1696471870838 }, - "date_of_expiration": { "type": 6, "value": 1699150270607 }, + "date_created": { + "type": 6, + "value": 1696471870838 + }, + "date_last_updated": { + "type": 6, + "value": 1696471870838 + }, + "date_of_expiration": { + "type": 6, + "value": 1699150270607 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -32096,9 +41185,18 @@ "total_amount": 1035046, "id": "1696471977293", "history_id": "1696471977293", - "date_created": { "type": 6, "value": 1696471977293 }, - "date_last_updated": { "type": 6, "value": 1696471977293 }, - "date_of_expiration": { "type": 6, "value": 1699150377200 }, + "date_created": { + "type": 6, + "value": 1696471977293 + }, + "date_last_updated": { + "type": 6, + "value": 1696471977293 + }, + "date_of_expiration": { + "type": 6, + "value": 1699150377200 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32114,13 +41212,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history", - "content": { "type": 1, "value": {}, "revision": "lnt02tfr01hjoohx36l77ko8", "revision_nr": 1, "created": 1697467090846, "modified": 1697467090846 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02tfr01hjoohx36l77ko8", + "revision_nr": 1, + "created": 1697467090846, + "modified": 1697467090846 + } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1695957287898 } }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1695957287898 + } + }, "revision": "lnt02tum01kkoohxh0tmbhkd", "revision_nr": 1, "created": 1697467090850, @@ -32131,7 +41244,16 @@ "path": "ivipcoin-db::__movement_wallet__/047925577230662820", "content": { "type": 1, - "value": { "dataModificacao": 1683569670949, "dateValidity": 1683569670949, "totalValue": 48201.8, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697338800000 } }, + "value": { + "dataModificacao": 1683569670949, + "dateValidity": 1683569670949, + "totalValue": 48201.8, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } + }, "revision": "lnt02tfj01hgoohxdhhf9iin", "revision_nr": 1, "created": 1697467090857, @@ -32142,7 +41264,14 @@ "path": "ivipcoin-db::__movement_wallet__/049717311460128590", "content": { "type": 1, - "value": { "dataModificacao": 1678063274590, "dateValidity": 1678170667714, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678063274590, + "dateValidity": 1678170667714, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02tux01kloohxc3nu8ton", "revision_nr": 1, "created": 1697467090862, @@ -32153,7 +41282,11 @@ "path": "ivipcoin-db::__movement_wallet__/050149211466839150/balances/IVIP", "content": { "type": 1, - "value": { "available": "1392927.00000000", "symbol": "IVIP", "value": 149.3 }, + "value": { + "available": "1392927.00000000", + "symbol": "IVIP", + "value": 149.3 + }, "revision": "lnt02tv201kooohx3izodawp", "revision_nr": 1, "created": 1697467090866, @@ -32162,7 +41295,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02tv201knoohxfiwga9zy", "revision_nr": 1, "created": 1697467090873, "modified": 1697467090873 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02tv201knoohxfiwga9zy", + "revision_nr": 1, + "created": 1697467090873, + "modified": 1697467090873 + } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232470571/description", @@ -32177,7 +41317,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232470571/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02tvj01ksoohxbga3atre", "revision_nr": 1, "created": 1697467090883, "modified": 1697467090883 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02tvj01ksoohxbga3atre", + "revision_nr": 1, + "created": 1697467090883, + "modified": 1697467090883 + } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232470571", @@ -32191,15 +41340,30 @@ "total_amount": 300, "history_id": 1679232470571, "id": 1679232470571, - "date_created": { "type": 6, "value": 1679232470571 }, - "date_last_updated": { "type": 6, "value": 1679266576805 }, - "date_of_expiration": { "type": 6, "value": 1681824470571 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679266576805 }, - "money_release_date": { "type": 6, "value": 1679266576805 }, + "date_created": { + "type": 6, + "value": 1679232470571 + }, + "date_last_updated": { + "type": 6, + "value": 1679266576805 + }, + "date_of_expiration": { + "type": 6, + "value": 1681824470571 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679266576805 + }, + "money_release_date": { + "type": 6, + "value": 1679266576805 + }, "money_release_status": "approved", "wasDebited": true }, @@ -32222,7 +41386,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232566671/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02tvx01kvoohx2qjags77", "revision_nr": 1, "created": 1697467090898, "modified": 1697467090898 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02tvx01kvoohx2qjags77", + "revision_nr": 1, + "created": 1697467090898, + "modified": 1697467090898 + } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232566671", @@ -32236,9 +41409,18 @@ "total_amount": 300, "history_id": 1679232566671, "id": 1679232566671, - "date_created": { "type": 6, "value": 1679232566671 }, - "date_last_updated": { "type": 6, "value": 1679232566671 }, - "date_of_expiration": { "type": 6, "value": 1681824566671 }, + "date_created": { + "type": 6, + "value": 1679232566671 + }, + "date_last_updated": { + "type": 6, + "value": 1679232566671 + }, + "date_of_expiration": { + "type": 6, + "value": 1681824566671 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -32286,9 +41468,18 @@ "original_amount": 1597688, "total_amount": 1597688, "id": 1679871668854, - "date_created": { "type": 6, "value": 1679871668854 }, - "date_last_updated": { "type": 6, "value": 1679871668854 }, - "date_of_expiration": { "type": 6, "value": 1679871668854 }, + "date_created": { + "type": 6, + "value": 1679871668854 + }, + "date_last_updated": { + "type": 6, + "value": 1679871668854 + }, + "date_of_expiration": { + "type": 6, + "value": 1679871668854 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32316,7 +41507,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684190255075/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02twr01l0oohx52mj7oev", "revision_nr": 1, "created": 1697467090928, "modified": 1697467090928 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02twr01l0oohx52mj7oev", + "revision_nr": 1, + "created": 1697467090928, + "modified": 1697467090928 + } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684190255075", @@ -32330,15 +41530,30 @@ "total_amount": 300, "history_id": 1684190255075, "id": 1684190255075, - "date_created": { "type": 6, "value": 1684190255075 }, - "date_last_updated": { "type": 6, "value": 1684239076762 }, - "date_of_expiration": { "type": 6, "value": 1686782255075 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684239076762 }, - "money_release_date": { "type": 6, "value": 1684239076762 }, + "date_created": { + "type": 6, + "value": 1684190255075 + }, + "date_last_updated": { + "type": 6, + "value": 1684239076762 + }, + "date_of_expiration": { + "type": 6, + "value": 1686782255075 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684239076762 + }, + "money_release_date": { + "type": 6, + "value": 1684239076762 + }, "money_release_status": "approved", "wasDebited": true }, @@ -32384,9 +41599,18 @@ "original_amount": 1461219, "total_amount": 1461219, "id": 1684624205744, - "date_created": { "type": 6, "value": 1684624205744 }, - "date_last_updated": { "type": 6, "value": 1684624205744 }, - "date_of_expiration": { "type": 6, "value": 1684624205744 }, + "date_created": { + "type": 6, + "value": 1684624205744 + }, + "date_last_updated": { + "type": 6, + "value": 1684624205744 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624205744 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32447,9 +41671,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1686353262267, - "date_created": { "type": 6, "value": 1686353262267 }, - "date_last_updated": { "type": 6, "value": 1686353262267 }, - "date_of_expiration": { "type": 6, "value": 1688945262267 }, + "date_created": { + "type": 6, + "value": 1686353262267 + }, + "date_last_updated": { + "type": 6, + "value": 1686353262267 + }, + "date_of_expiration": { + "type": 6, + "value": 1688945262267 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32510,9 +41743,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1686353693526, - "date_created": { "type": 6, "value": 1686353693526 }, - "date_last_updated": { "type": 6, "value": 1686353693526 }, - "date_of_expiration": { "type": 6, "value": 1702164893526 }, + "date_created": { + "type": 6, + "value": 1686353693526 + }, + "date_last_updated": { + "type": 6, + "value": 1686353693526 + }, + "date_of_expiration": { + "type": 6, + "value": 1702164893526 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32573,9 +41815,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1686657739276, - "date_created": { "type": 6, "value": 1686657739276 }, - "date_last_updated": { "type": 6, "value": 1686657739276 }, - "date_of_expiration": { "type": 6, "value": 1718280139276 }, + "date_created": { + "type": 6, + "value": 1686657739276 + }, + "date_last_updated": { + "type": 6, + "value": 1686657739276 + }, + "date_of_expiration": { + "type": 6, + "value": 1718280139276 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32635,9 +41886,18 @@ "original_amount": 500000, "total_amount": 500000, "id": 1687363201264, - "date_created": { "type": 6, "value": 1687363201264 }, - "date_last_updated": { "type": 6, "value": 1687363201264 }, - "date_of_expiration": { "type": 6, "value": 1718985601264 }, + "date_created": { + "type": 6, + "value": 1687363201264 + }, + "date_last_updated": { + "type": 6, + "value": 1687363201264 + }, + "date_of_expiration": { + "type": 6, + "value": 1718985601264 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32697,9 +41957,18 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1687363301418, - "date_created": { "type": 6, "value": 1687363301418 }, - "date_last_updated": { "type": 6, "value": 1687363301418 }, - "date_of_expiration": { "type": 6, "value": 1750521701418 }, + "date_created": { + "type": 6, + "value": 1687363301418 + }, + "date_last_updated": { + "type": 6, + "value": 1687363301418 + }, + "date_of_expiration": { + "type": 6, + "value": 1750521701418 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32759,9 +42028,18 @@ "original_amount": 1020, "total_amount": 1020, "id": 1689804806407, - "date_created": { "type": 6, "value": 1689804806407 }, - "date_last_updated": { "type": 6, "value": 1689804806407 }, - "date_of_expiration": { "type": 6, "value": 1689804806407 }, + "date_created": { + "type": 6, + "value": 1689804806407 + }, + "date_last_updated": { + "type": 6, + "value": 1689804806407 + }, + "date_of_expiration": { + "type": 6, + "value": 1689804806407 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32831,9 +42109,18 @@ "total_amount": 100000, "id": 1690414261722, "history_id": 1690414261722, - "date_created": { "type": 6, "value": 1690414261722 }, - "date_last_updated": { "type": 6, "value": 1690414261722 }, - "date_of_expiration": { "type": 6, "value": 1693092661717 }, + "date_created": { + "type": 6, + "value": 1690414261722 + }, + "date_last_updated": { + "type": 6, + "value": 1690414261722 + }, + "date_of_expiration": { + "type": 6, + "value": 1693092661717 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32902,9 +42189,18 @@ "total_amount": 100000, "id": "1693093011374", "history_id": "1693093011374", - "date_created": { "type": 6, "value": 1693093011374 }, - "date_last_updated": { "type": 6, "value": 1693093011374 }, - "date_of_expiration": { "type": 6, "value": 1693093011374 }, + "date_created": { + "type": 6, + "value": 1693093011374 + }, + "date_last_updated": { + "type": 6, + "value": 1693093011374 + }, + "date_of_expiration": { + "type": 6, + "value": 1693093011374 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32944,7 +42240,11 @@ "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 3000 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 3000 + }, "revision": "lnt02u1l01lyoohx3vc5hb9l", "revision_nr": 1, "created": 1697467091102, @@ -32953,7 +42253,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02u1l01lxoohx1ildfyza", "revision_nr": 1, "created": 1697467091107, "modified": 1697467091107 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02u1l01lxoohx1ildfyza", + "revision_nr": 1, + "created": 1697467091107, + "modified": 1697467091107 + } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details", @@ -32987,17 +42294,32 @@ "total_amount": 97000, "id": "1693173218030", "history_id": "1693173218030", - "date_created": { "type": 6, "value": 1693173218030 }, - "date_last_updated": { "type": 6, "value": 1693863156578 }, - "date_of_expiration": { "type": 6, "value": 1693173218030 }, + "date_created": { + "type": 6, + "value": 1693173218030 + }, + "date_last_updated": { + "type": 6, + "value": 1693863156578 + }, + "date_of_expiration": { + "type": 6, + "value": 1693173218030 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1693863156578 }, - "money_release_date": { "type": 6, "value": 1693863156578 }, + "date_approved": { + "type": 6, + "value": 1693863156578 + }, + "money_release_date": { + "type": 6, + "value": 1693863156578 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -33062,9 +42384,18 @@ "total_amount": 800000, "id": "1693228740965", "history_id": "1693228740965", - "date_created": { "type": 6, "value": 1693228740965 }, - "date_last_updated": { "type": 6, "value": 1693228740965 }, - "date_of_expiration": { "type": 6, "value": 1695907140964 }, + "date_created": { + "type": 6, + "value": 1693228740965 + }, + "date_last_updated": { + "type": 6, + "value": 1693228740965 + }, + "date_of_expiration": { + "type": 6, + "value": 1695907140964 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33134,9 +42465,18 @@ "total_amount": 816000, "id": "1695907162897", "history_id": "1695907162897", - "date_created": { "type": 6, "value": 1695907162897 }, - "date_last_updated": { "type": 6, "value": 1695907162897 }, - "date_of_expiration": { "type": 6, "value": 1695907162897 }, + "date_created": { + "type": 6, + "value": 1695907162897 + }, + "date_last_updated": { + "type": 6, + "value": 1695907162897 + }, + "date_of_expiration": { + "type": 6, + "value": 1695907162897 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33206,9 +42546,18 @@ "total_amount": 80000, "id": "1695925845472", "history_id": "1695925845472", - "date_created": { "type": 6, "value": 1695925845472 }, - "date_last_updated": { "type": 6, "value": 1695925845472 }, - "date_of_expiration": { "type": 6, "value": 1698517845420 }, + "date_created": { + "type": 6, + "value": 1695925845472 + }, + "date_last_updated": { + "type": 6, + "value": 1695925845472 + }, + "date_of_expiration": { + "type": 6, + "value": 1698517845420 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33224,13 +42573,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history", - "content": { "type": 1, "value": {}, "revision": "lnt02tvd01kpoohxc7rfhlxs", "revision_nr": 1, "created": 1697467091177, "modified": 1697467091177 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02tvd01kpoohxc7rfhlxs", + "revision_nr": 1, + "created": 1697467091177, + "modified": 1697467091177 + } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1695926116598 } }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1695926116598 + } + }, "revision": "lnt02u3t01mboohx88aefweb", "revision_nr": 1, "created": 1697467091181, @@ -33246,7 +42610,10 @@ "dateValidity": 1679096727973, "totalValue": 488.05285041642975, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1697252400000 } + "balancesModificacao": { + "type": 6, + "value": 1697252400000 + } }, "revision": "lnt02tv201kmoohxd4jr3cw2", "revision_nr": 1, @@ -33258,7 +42625,11 @@ "path": "ivipcoin-db::__movement_wallet__/050294855698242330/balances/IVIP", "content": { "type": 1, - "value": { "available": "48500.00000000", "symbol": "IVIP", "value": 7.28 }, + "value": { + "available": "48500.00000000", + "symbol": "IVIP", + "value": 7.28 + }, "revision": "lnt02u4101meoohx16b98o7o", "revision_nr": 1, "created": 1697467091190, @@ -33267,7 +42638,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02u4101mdoohxbyz161mv", "revision_nr": 1, "created": 1697467091195, "modified": 1697467091195 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02u4101mdoohxbyz161mv", + "revision_nr": 1, + "created": 1697467091195, + "modified": 1697467091195 + } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145412146/description", @@ -33282,7 +42660,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145412146/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02u4f01mioohx4o86ahju", "revision_nr": 1, "created": 1697467091203, "modified": 1697467091203 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02u4f01mioohx4o86ahju", + "revision_nr": 1, + "created": 1697467091203, + "modified": 1697467091203 + } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145412146", @@ -33296,15 +42683,30 @@ "total_amount": 1000, "history_id": 1678145412146, "id": 1678145412146, - "date_created": { "type": 6, "value": 1678145412146 }, - "date_last_updated": { "type": 6, "value": 1678220485124 }, - "date_of_expiration": { "type": 6, "value": 1680737412146 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678220485124 }, - "money_release_date": { "type": 6, "value": 1678220485124 }, + "date_created": { + "type": 6, + "value": 1678145412146 + }, + "date_last_updated": { + "type": 6, + "value": 1678220485124 + }, + "date_of_expiration": { + "type": 6, + "value": 1680737412146 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678220485124 + }, + "money_release_date": { + "type": 6, + "value": 1678220485124 + }, "money_release_status": "approved", "wasDebited": true }, @@ -33327,7 +42729,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678043796128/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02u4s01mloohx0elqbca1", "revision_nr": 1, "created": 1697467091216, "modified": 1697467091216 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02u4s01mloohx0elqbca1", + "revision_nr": 1, + "created": 1697467091216, + "modified": 1697467091216 + } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678043796128", @@ -33341,15 +42752,30 @@ "total_amount": 1000, "history_id": 1678043796128, "id": 1678043796128, - "date_created": { "type": 6, "value": 1678043796128 }, - "date_last_updated": { "type": 6, "value": 1678220439067 }, - "date_of_expiration": { "type": 6, "value": 1680635796128 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678220439067 }, - "money_release_date": { "type": 6, "value": 1678220439067 }, + "date_created": { + "type": 6, + "value": 1678043796128 + }, + "date_last_updated": { + "type": 6, + "value": 1678220439067 + }, + "date_of_expiration": { + "type": 6, + "value": 1680635796128 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678220439067 + }, + "money_release_date": { + "type": 6, + "value": 1678220439067 + }, "money_release_status": "approved", "wasDebited": true }, @@ -33372,7 +42798,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1677774543947/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02u5701mooohxcfbogumg", "revision_nr": 1, "created": 1697467091231, "modified": 1697467091231 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02u5701mooohxcfbogumg", + "revision_nr": 1, + "created": 1697467091231, + "modified": 1697467091231 + } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1677774543947", @@ -33386,15 +42821,30 @@ "total_amount": 2000, "history_id": 1677774543947, "id": 1677774543947, - "date_created": { "type": 6, "value": 1677774543947 }, - "date_last_updated": { "type": 6, "value": 1677777947224 }, - "date_of_expiration": { "type": 6, "value": 1680366543947 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677777947224 }, - "money_release_date": { "type": 6, "value": 1677777947224 }, + "date_created": { + "type": 6, + "value": 1677774543947 + }, + "date_last_updated": { + "type": 6, + "value": 1677777947224 + }, + "date_of_expiration": { + "type": 6, + "value": 1680366543947 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677777947224 + }, + "money_release_date": { + "type": 6, + "value": 1677777947224 + }, "money_release_status": "approved", "wasDebited": true }, @@ -33440,9 +42890,18 @@ "original_amount": 14284655, "total_amount": 14284655, "id": 1678145303669, - "date_created": { "type": 6, "value": 1678145303669 }, - "date_last_updated": { "type": 6, "value": 1678145303669 }, - "date_of_expiration": { "type": 6, "value": 1678145303669 }, + "date_created": { + "type": 6, + "value": 1678145303669 + }, + "date_last_updated": { + "type": 6, + "value": 1678145303669 + }, + "date_of_expiration": { + "type": 6, + "value": 1678145303669 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33493,9 +42952,18 @@ "original_amount": 14195700, "total_amount": 14195700, "id": 1678220742550, - "date_created": { "type": 6, "value": 1678220742550 }, - "date_last_updated": { "type": 6, "value": 1678220742550 }, - "date_of_expiration": { "type": 6, "value": 1678220742550 }, + "date_created": { + "type": 6, + "value": 1678220742550 + }, + "date_last_updated": { + "type": 6, + "value": 1678220742550 + }, + "date_of_expiration": { + "type": 6, + "value": 1678220742550 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33523,7 +42991,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128267183/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02u6401mvoohx0q0i46f0", "revision_nr": 1, "created": 1697467091264, "modified": 1697467091264 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02u6401mvoohx0q0i46f0", + "revision_nr": 1, + "created": 1697467091264, + "modified": 1697467091264 + } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128267183", @@ -33537,14 +43014,26 @@ "total_amount": 14038113, "history_id": 1686128267183, "id": 1686128267183, - "date_created": { "type": 6, "value": 1686128267183 }, - "date_last_updated": { "type": 6, "value": 1688771582648 }, - "date_of_expiration": { "type": 6, "value": 1686128267183 }, + "date_created": { + "type": 6, + "value": 1686128267183 + }, + "date_last_updated": { + "type": 6, + "value": 1688771582648 + }, + "date_of_expiration": { + "type": 6, + "value": 1686128267183 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": { "type": 6, "value": 1688771582648 }, + "money_release_date": { + "type": 6, + "value": 1688771582648 + }, "money_release_status": "rejected" }, "revision": "lnt02u5z01mtoohxccu5d60c", @@ -33566,7 +43055,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128970156/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02u6j01myoohx1dop63st", "revision_nr": 1, "created": 1697467091280, "modified": 1697467091280 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02u6j01myoohx1dop63st", + "revision_nr": 1, + "created": 1697467091280, + "modified": 1697467091280 + } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128970156", @@ -33580,14 +43078,26 @@ "total_amount": 28480355, "history_id": 1686128970156, "id": 1686128970156, - "date_created": { "type": 6, "value": 1686128970156 }, - "date_last_updated": { "type": 6, "value": 1688771592581 }, - "date_of_expiration": { "type": 6, "value": 1686128970156 }, + "date_created": { + "type": 6, + "value": 1686128970156 + }, + "date_last_updated": { + "type": 6, + "value": 1688771592581 + }, + "date_of_expiration": { + "type": 6, + "value": 1686128970156 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": { "type": 6, "value": 1688771592581 }, + "money_release_date": { + "type": 6, + "value": 1688771592581 + }, "money_release_status": "rejected" }, "revision": "lnt02u6c01mwoohx67xp8131", @@ -33642,9 +43152,18 @@ "original_amount": 50000, "total_amount": 50000, "id": 1686190557366, - "date_created": { "type": 6, "value": 1686190557366 }, - "date_last_updated": { "type": 6, "value": 1686190557366 }, - "date_of_expiration": { "type": 6, "value": 1749348957366 }, + "date_created": { + "type": 6, + "value": 1686190557366 + }, + "date_last_updated": { + "type": 6, + "value": 1686190557366 + }, + "date_of_expiration": { + "type": 6, + "value": 1749348957366 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33704,9 +43223,18 @@ "original_amount": 30000, "total_amount": 30000, "id": 1686190633022, - "date_created": { "type": 6, "value": 1686190633022 }, - "date_last_updated": { "type": 6, "value": 1686190633022 }, - "date_of_expiration": { "type": 6, "value": 1717813033022 }, + "date_created": { + "type": 6, + "value": 1686190633022 + }, + "date_last_updated": { + "type": 6, + "value": 1686190633022 + }, + "date_of_expiration": { + "type": 6, + "value": 1717813033022 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33766,9 +43294,18 @@ "original_amount": 50000, "total_amount": 50000, "id": 1686190671429, - "date_created": { "type": 6, "value": 1686190671429 }, - "date_last_updated": { "type": 6, "value": 1686190671429 }, - "date_of_expiration": { "type": 6, "value": 1702001871429 }, + "date_created": { + "type": 6, + "value": 1686190671429 + }, + "date_last_updated": { + "type": 6, + "value": 1686190671429 + }, + "date_of_expiration": { + "type": 6, + "value": 1702001871429 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33828,9 +43365,18 @@ "original_amount": 30000, "total_amount": 30000, "id": 1686190710908, - "date_created": { "type": 6, "value": 1686190710908 }, - "date_last_updated": { "type": 6, "value": 1686190710908 }, - "date_of_expiration": { "type": 6, "value": 1688782710908 }, + "date_created": { + "type": 6, + "value": 1686190710908 + }, + "date_last_updated": { + "type": 6, + "value": 1686190710908 + }, + "date_of_expiration": { + "type": 6, + "value": 1688782710908 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33890,9 +43436,18 @@ "original_amount": 14524522, "total_amount": 14524522, "id": 1687472497935, - "date_created": { "type": 6, "value": 1687472497935 }, - "date_last_updated": { "type": 6, "value": 1687472497935 }, - "date_of_expiration": { "type": 6, "value": 1750630897935 }, + "date_created": { + "type": 6, + "value": 1687472497935 + }, + "date_last_updated": { + "type": 6, + "value": 1687472497935 + }, + "date_of_expiration": { + "type": 6, + "value": 1750630897935 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33919,7 +43474,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1688575377865/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02u8w01ngoohxga608gtg", "revision_nr": 1, "created": 1697467091366, "modified": 1697467091366 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02u8w01ngoohxga608gtg", + "revision_nr": 1, + "created": 1697467091366, + "modified": 1697467091366 + } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1688575377865", @@ -33933,15 +43497,30 @@ "total_amount": 13795833, "history_id": 1688575377865, "id": 1688575377865, - "date_created": { "type": 6, "value": 1688575377865 }, - "date_last_updated": { "type": 6, "value": 1688771604088 }, - "date_of_expiration": { "type": 6, "value": 1688575377865 }, + "date_created": { + "type": 6, + "value": 1688575377865 + }, + "date_last_updated": { + "type": 6, + "value": 1688771604088 + }, + "date_of_expiration": { + "type": 6, + "value": 1688575377865 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1688771604088 }, - "money_release_date": { "type": 6, "value": 1688771604088 }, + "date_approved": { + "type": 6, + "value": 1688771604088 + }, + "money_release_date": { + "type": 6, + "value": 1688771604088 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -33997,9 +43576,18 @@ "original_amount": 30600, "total_amount": 30600, "id": 1689804799815, - "date_created": { "type": 6, "value": 1689804799815 }, - "date_last_updated": { "type": 6, "value": 1689804799815 }, - "date_of_expiration": { "type": 6, "value": 1689804799815 }, + "date_created": { + "type": 6, + "value": 1689804799815 + }, + "date_last_updated": { + "type": 6, + "value": 1689804799815 + }, + "date_of_expiration": { + "type": 6, + "value": 1689804799815 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -34069,9 +43657,18 @@ "total_amount": 30600, "id": 1690467644472, "history_id": 1690467644472, - "date_created": { "type": 6, "value": 1690467644472 }, - "date_last_updated": { "type": 6, "value": 1690467644472 }, - "date_of_expiration": { "type": 6, "value": 1693146044468 }, + "date_created": { + "type": 6, + "value": 1690467644472 + }, + "date_last_updated": { + "type": 6, + "value": 1690467644472 + }, + "date_of_expiration": { + "type": 6, + "value": 1693146044468 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -34140,9 +43737,18 @@ "total_amount": 30600, "id": "1693147070930", "history_id": "1693147070930", - "date_created": { "type": 6, "value": 1693147070930 }, - "date_last_updated": { "type": 6, "value": 1693147070930 }, - "date_of_expiration": { "type": 6, "value": 1693147070930 }, + "date_created": { + "type": 6, + "value": 1693147070930 + }, + "date_last_updated": { + "type": 6, + "value": 1693147070930 + }, + "date_of_expiration": { + "type": 6, + "value": 1693147070930 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -34211,9 +43817,18 @@ "total_amount": 2500, "id": "1693780247117", "history_id": "1693780247117", - "date_created": { "type": 6, "value": 1693780247117 }, - "date_last_updated": { "type": 6, "value": 1693780247117 }, - "date_of_expiration": { "type": 6, "value": 1696372247116 }, + "date_created": { + "type": 6, + "value": 1693780247117 + }, + "date_last_updated": { + "type": 6, + "value": 1693780247117 + }, + "date_of_expiration": { + "type": 6, + "value": 1696372247116 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -34283,9 +43898,18 @@ "total_amount": 2550, "id": "1696382633982", "history_id": "1696382633982", - "date_created": { "type": 6, "value": 1696382633982 }, - "date_last_updated": { "type": 6, "value": 1696382633982 }, - "date_of_expiration": { "type": 6, "value": 1696382633982 }, + "date_created": { + "type": 6, + "value": 1696382633982 + }, + "date_last_updated": { + "type": 6, + "value": 1696382633982 + }, + "date_of_expiration": { + "type": 6, + "value": 1696382633982 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -34355,9 +43979,18 @@ "total_amount": 2550, "id": "1696384242905", "history_id": "1696384242905", - "date_created": { "type": 6, "value": 1696384242905 }, - "date_last_updated": { "type": 6, "value": 1696384242905 }, - "date_of_expiration": { "type": 6, "value": 1696384242905 }, + "date_created": { + "type": 6, + "value": 1696384242905 + }, + "date_last_updated": { + "type": 6, + "value": 1696384242905 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384242905 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -34427,9 +44060,18 @@ "total_amount": 2550, "id": "1696384242925", "history_id": "1696384242925", - "date_created": { "type": 6, "value": 1696384242925 }, - "date_last_updated": { "type": 6, "value": 1696384242925 }, - "date_of_expiration": { "type": 6, "value": 1696384242925 }, + "date_created": { + "type": 6, + "value": 1696384242925 + }, + "date_last_updated": { + "type": 6, + "value": 1696384242925 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384242925 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -34499,9 +44141,18 @@ "total_amount": 2550, "id": "1696384242931", "history_id": "1696384242931", - "date_created": { "type": 6, "value": 1696384242931 }, - "date_last_updated": { "type": 6, "value": 1696384242931 }, - "date_of_expiration": { "type": 6, "value": 1696384242931 }, + "date_created": { + "type": 6, + "value": 1696384242931 + }, + "date_last_updated": { + "type": 6, + "value": 1696384242931 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384242931 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -34571,9 +44222,18 @@ "total_amount": 2550, "id": "1696384243125", "history_id": "1696384243125", - "date_created": { "type": 6, "value": 1696384243125 }, - "date_last_updated": { "type": 6, "value": 1696384243125 }, - "date_of_expiration": { "type": 6, "value": 1696384243125 }, + "date_created": { + "type": 6, + "value": 1696384243125 + }, + "date_last_updated": { + "type": 6, + "value": 1696384243125 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384243125 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -34643,9 +44303,18 @@ "total_amount": 2550, "id": "1696384243425", "history_id": "1696384243425", - "date_created": { "type": 6, "value": 1696384243425 }, - "date_last_updated": { "type": 6, "value": 1696384243425 }, - "date_of_expiration": { "type": 6, "value": 1696384243425 }, + "date_created": { + "type": 6, + "value": 1696384243425 + }, + "date_last_updated": { + "type": 6, + "value": 1696384243425 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384243425 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -34715,9 +44384,18 @@ "total_amount": 2550, "id": "1696384244783", "history_id": "1696384244783", - "date_created": { "type": 6, "value": 1696384244783 }, - "date_last_updated": { "type": 6, "value": 1696384244783 }, - "date_of_expiration": { "type": 6, "value": 1696384244783 }, + "date_created": { + "type": 6, + "value": 1696384244783 + }, + "date_last_updated": { + "type": 6, + "value": 1696384244783 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384244783 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -34787,9 +44465,18 @@ "total_amount": 2550, "id": "1696384244885", "history_id": "1696384244885", - "date_created": { "type": 6, "value": 1696384244885 }, - "date_last_updated": { "type": 6, "value": 1696384244885 }, - "date_of_expiration": { "type": 6, "value": 1696384244885 }, + "date_created": { + "type": 6, + "value": 1696384244885 + }, + "date_last_updated": { + "type": 6, + "value": 1696384244885 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384244885 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -34805,13 +44492,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history", - "content": { "type": 1, "value": {}, "revision": "lnt02u4b01mfoohxe3kie0su", "revision_nr": 1, "created": 1697467091678, "modified": 1697467091678 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02u4b01mfoohxe3kie0su", + "revision_nr": 1, + "created": 1697467091678, + "modified": 1697467091678 + } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02uhq01osoohx0cvfhqug", "revision_nr": 1, "created": 1697467091683, @@ -34822,7 +44520,12 @@ "path": "ivipcoin-db::__movement_wallet__/050294855698242330", "content": { "type": 1, - "value": { "dataModificacao": 1677774434896, "dateValidity": 1678238494873, "totalValue": 9.579933648427893, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677774434896, + "dateValidity": 1678238494873, + "totalValue": 9.579933648427893, + "currencyType": "USD" + }, "revision": "lnt02u4101mcoohx9kes928b", "revision_nr": 1, "created": 1697467091689, @@ -34833,7 +44536,13 @@ "path": "ivipcoin-db::__movement_wallet__/050395970230084904", "content": { "type": 1, - "value": { "dataModificacao": 1696468517081, "dateValidity": 1696468517276, "balances": {}, "history": {}, "currencyType": "USD" }, + "value": { + "dataModificacao": 1696468517081, + "dateValidity": 1696468517276, + "balances": {}, + "history": {}, + "currencyType": "USD" + }, "revision": "lnt02ui101otoohx79y3g6bb", "revision_nr": 1, "created": 1697467091694, @@ -34844,7 +44553,11 @@ "path": "ivipcoin-db::__movement_wallet__/053298757978599290/balances/BRL", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, "revision": "lnt02ui701owoohxg7i0hjqp", "revision_nr": 1, "created": 1697467091700, @@ -34855,7 +44568,11 @@ "path": "ivipcoin-db::__movement_wallet__/053298757978599290/balances/IVIP", "content": { "type": 1, - "value": { "available": "812799.00000000", "symbol": "IVIP", "value": 263.24 }, + "value": { + "available": "812799.00000000", + "symbol": "IVIP", + "value": 263.24 + }, "revision": "lnt02uic01oxoohxcn993ohm", "revision_nr": 1, "created": 1697467091705, @@ -34864,7 +44581,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02ui601ovoohx74bo7c6u", "revision_nr": 1, "created": 1697467091711, "modified": 1697467091711 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02ui601ovoohx74bo7c6u", + "revision_nr": 1, + "created": 1697467091711, + "modified": 1697467091711 + } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1678221951810/description", @@ -34879,7 +44603,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1678221951810/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02uis01p1oohx3w0q3av4", "revision_nr": 1, "created": 1697467091721, "modified": 1697467091721 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02uis01p1oohx3w0q3av4", + "revision_nr": 1, + "created": 1697467091721, + "modified": 1697467091721 + } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1678221951810", @@ -34893,15 +44626,30 @@ "total_amount": 50, "history_id": 1678221951810, "id": 1678221951810, - "date_created": { "type": 6, "value": 1678221951810 }, - "date_last_updated": { "type": 6, "value": 1678281719635 }, - "date_of_expiration": { "type": 6, "value": 1680813951810 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678281719635 }, - "money_release_date": { "type": 6, "value": 1678281719635 }, + "date_created": { + "type": 6, + "value": 1678221951810 + }, + "date_last_updated": { + "type": 6, + "value": 1678281719635 + }, + "date_of_expiration": { + "type": 6, + "value": 1680813951810 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678281719635 + }, + "money_release_date": { + "type": 6, + "value": 1678281719635 + }, "money_release_status": "approved", "wasDebited": true }, @@ -34924,7 +44672,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009072784/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02uj801p4oohxd69i5xpd", "revision_nr": 1, "created": 1697467091737, "modified": 1697467091737 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02uj801p4oohxd69i5xpd", + "revision_nr": 1, + "created": 1697467091737, + "modified": 1697467091737 + } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009072784", @@ -34938,15 +44695,30 @@ "total_amount": 100, "history_id": 1679009072784, "id": 1679009072784, - "date_created": { "type": 6, "value": 1679009072784 }, - "date_last_updated": { "type": 6, "value": 1679322587158 }, - "date_of_expiration": { "type": 6, "value": 1681601072784 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679322587158 }, - "money_release_date": { "type": 6, "value": 1679322587158 }, + "date_created": { + "type": 6, + "value": 1679009072784 + }, + "date_last_updated": { + "type": 6, + "value": 1679322587158 + }, + "date_of_expiration": { + "type": 6, + "value": 1681601072784 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679322587158 + }, + "money_release_date": { + "type": 6, + "value": 1679322587158 + }, "money_release_status": "approved", "wasDebited": true }, @@ -34969,7 +44741,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009122145/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02ujo01p7oohx4trl7c59", "revision_nr": 1, "created": 1697467091752, "modified": 1697467091752 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02ujo01p7oohx4trl7c59", + "revision_nr": 1, + "created": 1697467091752, + "modified": 1697467091752 + } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009122145", @@ -34983,14 +44764,26 @@ "total_amount": 100, "history_id": 1679009122145, "id": 1679009122145, - "date_created": { "type": 6, "value": 1679009122145 }, - "date_last_updated": { "type": 6, "value": 1679322754987 }, - "date_of_expiration": { "type": 6, "value": 1681601122145 }, + "date_created": { + "type": 6, + "value": 1679009122145 + }, + "date_last_updated": { + "type": 6, + "value": 1679322754987 + }, + "date_of_expiration": { + "type": 6, + "value": 1681601122145 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1679322754987 }, + "money_release_date": { + "type": 6, + "value": 1679322754987 + }, "money_release_status": "rejected" }, "revision": "lnt02ujj01p5oohxgn247mcd", @@ -35035,9 +44828,18 @@ "original_amount": 812799, "total_amount": 812799, "id": 1680059811857, - "date_created": { "type": 6, "value": 1680059811857 }, - "date_last_updated": { "type": 6, "value": 1680059811857 }, - "date_of_expiration": { "type": 6, "value": 1680059811857 }, + "date_created": { + "type": 6, + "value": 1680059811857 + }, + "date_last_updated": { + "type": 6, + "value": 1680059811857 + }, + "date_of_expiration": { + "type": 6, + "value": 1680059811857 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -35065,7 +44867,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1687793732463/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02ukg01pcoohx2pp370ah", "revision_nr": 1, "created": 1697467091781, "modified": 1697467091781 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02ukg01pcoohx2pp370ah", + "revision_nr": 1, + "created": 1697467091781, + "modified": 1697467091781 + } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1687793732463", @@ -35079,9 +44890,18 @@ "total_amount": 812799, "history_id": 1687793732463, "id": 1687793732463, - "date_created": { "type": 6, "value": 1687793732463 }, - "date_last_updated": { "type": 6, "value": 1687793732463 }, - "date_of_expiration": { "type": 6, "value": 1687793732463 }, + "date_created": { + "type": 6, + "value": 1687793732463 + }, + "date_last_updated": { + "type": 6, + "value": 1687793732463 + }, + "date_of_expiration": { + "type": 6, + "value": 1687793732463 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -35095,13 +44915,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history", - "content": { "type": 1, "value": {}, "revision": "lnt02uin01oyoohx60jy3go8", "revision_nr": 1, "created": 1697467091791, "modified": 1697467091791 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02uin01oyoohx60jy3go8", + "revision_nr": 1, + "created": 1697467091791, + "modified": 1697467091791 + } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02ukv01pdoohxchg97qna", "revision_nr": 1, "created": 1697467091797, @@ -35112,7 +44943,13 @@ "path": "ivipcoin-db::__movement_wallet__/053298757978599290", "content": { "type": 1, - "value": { "dataModificacao": 1678221202102, "dateValidity": 1679026523803, "totalValue": 28.34, "currencyType": "USD", "balancesModificacao": 1689822000000 }, + "value": { + "dataModificacao": 1678221202102, + "dateValidity": 1679026523803, + "totalValue": 28.34, + "currencyType": "USD", + "balancesModificacao": 1689822000000 + }, "revision": "lnt02ui601ouoohx1qmf5pat", "revision_nr": 1, "created": 1697467091802, @@ -35123,7 +44960,11 @@ "path": "ivipcoin-db::__movement_wallet__/054341335642486000/balances/IVIP", "content": { "type": 1, - "value": { "available": "51023.00000000", "symbol": "IVIP", "value": 6.23 }, + "value": { + "available": "51023.00000000", + "symbol": "IVIP", + "value": 6.23 + }, "revision": "lnt02ul601pgoohxh5r3gpyw", "revision_nr": 1, "created": 1697467091809, @@ -35132,7 +44973,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02ul601pfoohx0r0n1u83", "revision_nr": 1, "created": 1697467091813, "modified": 1697467091813 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02ul601pfoohx0r0n1u83", + "revision_nr": 1, + "created": 1697467091813, + "modified": 1697467091813 + } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689173674893/description", @@ -35147,7 +44995,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689173674893/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02ulm01pkoohxasf47lmf", "revision_nr": 1, "created": 1697467091824, "modified": 1697467091824 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02ulm01pkoohxasf47lmf", + "revision_nr": 1, + "created": 1697467091824, + "modified": 1697467091824 + } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689173674893", @@ -35161,15 +45018,30 @@ "total_amount": 120, "history_id": 1689173674893, "id": 1689173674893, - "date_created": { "type": 6, "value": 1689173674893 }, - "date_last_updated": { "type": 6, "value": 1689181059550 }, - "date_of_expiration": { "type": 6, "value": 1691765674893 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689181059550 }, - "money_release_date": { "type": 6, "value": 1689181059550 }, + "date_created": { + "type": 6, + "value": 1689173674893 + }, + "date_last_updated": { + "type": 6, + "value": 1689181059550 + }, + "date_of_expiration": { + "type": 6, + "value": 1691765674893 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689181059550 + }, + "money_release_date": { + "type": 6, + "value": 1689181059550 + }, "money_release_status": "approved", "wasDebited": true }, @@ -35215,9 +45087,18 @@ "original_amount": 51023, "total_amount": 51023, "id": 1689182033050, - "date_created": { "type": 6, "value": 1689182033050 }, - "date_last_updated": { "type": 6, "value": 1689182033050 }, - "date_of_expiration": { "type": 6, "value": 1689182033050 }, + "date_created": { + "type": 6, + "value": 1689182033050 + }, + "date_last_updated": { + "type": 6, + "value": 1689182033050 + }, + "date_of_expiration": { + "type": 6, + "value": 1689182033050 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -35234,13 +45115,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history", - "content": { "type": 1, "value": {}, "revision": "lnt02ulh01phoohx8mn38tm1", "revision_nr": 1, "created": 1697467091844, "modified": 1697467091844 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02ulh01phoohx8mn38tm1", + "revision_nr": 1, + "created": 1697467091844, + "modified": 1697467091844 + } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02umc01pnoohxakjy1abc", "revision_nr": 1, "created": 1697467091849, @@ -35251,7 +45143,16 @@ "path": "ivipcoin-db::__movement_wallet__/054341335642486000", "content": { "type": 1, - "value": { "dataModificacao": 1689173582935, "dateValidity": 1689173582935, "totalValue": 24.77, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696906800000 } }, + "value": { + "dataModificacao": 1689173582935, + "dateValidity": 1689173582935, + "totalValue": 24.77, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696906800000 + } + }, "revision": "lnt02ul601peoohx7ppo41n9", "revision_nr": 1, "created": 1697467091853, @@ -35262,7 +45163,13 @@ "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699670706134 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699670706134 + } + }, "revision": "lnt02umm01proohxddng32pq", "revision_nr": 1, "created": 1697467091860, @@ -35325,16 +45232,28 @@ "total_amount": 99635.8518, "id": "1697078706134", "history_id": "1697078706134", - "date_created": { "type": 6, "value": 1697078706134 }, - "date_last_updated": { "type": 6, "value": 1697118443226 }, + "date_created": { + "type": 6, + "value": 1697078706134 + }, + "date_last_updated": { + "type": 6, + "value": 1697118443226 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1697118443226 }, - "money_release_date": { "type": 6, "value": 1697118443226 }, + "date_approved": { + "type": 6, + "value": 1697118443226 + }, + "money_release_date": { + "type": 6, + "value": 1697118443226 + }, "money_release_status": "approved", "wasDebited": true }, @@ -35348,7 +45267,13 @@ "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699711608666 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699711608666 + } + }, "revision": "lnt02unc01pwoohxadl37lqd", "revision_nr": 1, "created": 1697467091885, @@ -35411,16 +45336,28 @@ "total_amount": 25, "id": "1697119608666", "history_id": "1697119608666", - "date_created": { "type": 6, "value": 1697119608666 }, - "date_last_updated": { "type": 6, "value": 1697121223741 }, + "date_created": { + "type": 6, + "value": 1697119608666 + }, + "date_last_updated": { + "type": 6, + "value": 1697121223741 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1697121223741 }, - "money_release_date": { "type": 6, "value": 1697121223741 }, + "date_approved": { + "type": 6, + "value": 1697121223741 + }, + "money_release_date": { + "type": 6, + "value": 1697121223741 + }, "money_release_status": "approved", "wasDebited": true }, @@ -35475,9 +45412,18 @@ "total_amount": 46978, "id": "1697122378430", "history_id": "1697122378430", - "date_created": { "type": 6, "value": 1697122378430 }, - "date_last_updated": { "type": 6, "value": 1697122378430 }, - "date_of_expiration": { "type": 6, "value": 1697122378430 }, + "date_created": { + "type": 6, + "value": 1697122378430 + }, + "date_last_updated": { + "type": 6, + "value": 1697122378430 + }, + "date_of_expiration": { + "type": 6, + "value": 1697122378430 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -35494,13 +45440,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history", - "content": { "type": 1, "value": {}, "revision": "lnt02umm01ppoohx0anqfwjt", "revision_nr": 1, "created": 1697467091926, "modified": 1697467091926 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02umm01ppoohx0anqfwjt", + "revision_nr": 1, + "created": 1697467091926, + "modified": 1697467091926 + } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02uom01q3oohx39ymbmyr", "revision_nr": 1, "created": 1697467091931, @@ -35511,7 +45468,16 @@ "path": "ivipcoin-db::__movement_wallet__/055644012114111740", "content": { "type": 1, - "value": { "dataModificacao": 1697078617873, "dateValidity": 1697078617917, "balances": {}, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697079600000 } }, + "value": { + "dataModificacao": 1697078617873, + "dateValidity": 1697078617917, + "balances": {}, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697079600000 + } + }, "revision": "lnt02uml01pooohx88dj8s22", "revision_nr": 1, "created": 1697467091936, @@ -35522,7 +45488,11 @@ "path": "ivipcoin-db::__movement_wallet__/056546769240355840/balances/BRL", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, "revision": "lnt02uow01q6oohxfdp8d9dv", "revision_nr": 1, "created": 1697467091942, @@ -35533,7 +45503,11 @@ "path": "ivipcoin-db::__movement_wallet__/056546769240355840/balances/IVIP", "content": { "type": 1, - "value": { "available": "5352934.00000000", "symbol": "IVIP", "value": 720.46 }, + "value": { + "available": "5352934.00000000", + "symbol": "IVIP", + "value": 720.46 + }, "revision": "lnt02up201q7oohxcn0wcmi0", "revision_nr": 1, "created": 1697467091947, @@ -35542,7 +45516,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02uow01q5oohxed8f04cb", "revision_nr": 1, "created": 1697467091952, "modified": 1697467091952 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02uow01q5oohxed8f04cb", + "revision_nr": 1, + "created": 1697467091952, + "modified": 1697467091952 + } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684093509797/description", @@ -35557,7 +45538,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684093509797/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02upj01qboohx5ewe7we6", "revision_nr": 1, "created": 1697467091964, "modified": 1697467091964 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02upj01qboohx5ewe7we6", + "revision_nr": 1, + "created": 1697467091964, + "modified": 1697467091964 + } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684093509797", @@ -35571,15 +45561,30 @@ "total_amount": 800, "history_id": 1684093509797, "id": 1684093509797, - "date_created": { "type": 6, "value": 1684093509797 }, - "date_last_updated": { "type": 6, "value": 1684093833853 }, - "date_of_expiration": { "type": 6, "value": 1686685509797 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684093833853 }, - "money_release_date": { "type": 6, "value": 1684093833853 }, + "date_created": { + "type": 6, + "value": 1684093509797 + }, + "date_last_updated": { + "type": 6, + "value": 1684093833853 + }, + "date_of_expiration": { + "type": 6, + "value": 1686685509797 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684093833853 + }, + "money_release_date": { + "type": 6, + "value": 1684093833853 + }, "money_release_status": "approved", "wasDebited": true }, @@ -35602,7 +45607,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684583054149/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02upy01qeoohxgrzp0dcr", "revision_nr": 1, "created": 1697467091980, "modified": 1697467091980 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02upy01qeoohxgrzp0dcr", + "revision_nr": 1, + "created": 1697467091980, + "modified": 1697467091980 + } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684583054149", @@ -35616,15 +45630,30 @@ "total_amount": 299, "history_id": 1684583054149, "id": 1684583054149, - "date_created": { "type": 6, "value": 1684583054149 }, - "date_last_updated": { "type": 6, "value": 1684595303300 }, - "date_of_expiration": { "type": 6, "value": 1687175054149 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684595303300 }, - "money_release_date": { "type": 6, "value": 1684595303300 }, + "date_created": { + "type": 6, + "value": 1684583054149 + }, + "date_last_updated": { + "type": 6, + "value": 1684595303300 + }, + "date_of_expiration": { + "type": 6, + "value": 1687175054149 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684595303300 + }, + "money_release_date": { + "type": 6, + "value": 1684595303300 + }, "money_release_status": "approved", "wasDebited": true }, @@ -35670,9 +45699,18 @@ "original_amount": 5352934, "total_amount": 5352934, "id": 1684624980630, - "date_created": { "type": 6, "value": 1684624980630 }, - "date_last_updated": { "type": 6, "value": 1684624980630 }, - "date_of_expiration": { "type": 6, "value": 1684624980630 }, + "date_created": { + "type": 6, + "value": 1684624980630 + }, + "date_last_updated": { + "type": 6, + "value": 1684624980630 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624980630 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -35700,7 +45738,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104056845/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02uqo01qjoohxek9i76to", "revision_nr": 1, "created": 1697467092008, "modified": 1697467092008 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02uqo01qjoohxek9i76to", + "revision_nr": 1, + "created": 1697467092008, + "modified": 1697467092008 + } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104056845", @@ -35714,9 +45761,18 @@ "total_amount": 5352934, "history_id": 1689104056845, "id": 1689104056845, - "date_created": { "type": 6, "value": 1689104056845 }, - "date_last_updated": { "type": 6, "value": 1689104056845 }, - "date_of_expiration": { "type": 6, "value": 1689104056845 }, + "date_created": { + "type": 6, + "value": 1689104056845 + }, + "date_last_updated": { + "type": 6, + "value": 1689104056845 + }, + "date_of_expiration": { + "type": 6, + "value": 1689104056845 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -35741,7 +45797,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104143830/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02ur501qmoohx233ybczj", "revision_nr": 1, "created": 1697467092023, "modified": 1697467092023 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02ur501qmoohx233ybczj", + "revision_nr": 1, + "created": 1697467092023, + "modified": 1697467092023 + } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104143830", @@ -35755,9 +45820,18 @@ "total_amount": 5352934, "history_id": 1689104143830, "id": 1689104143830, - "date_created": { "type": 6, "value": 1689104143830 }, - "date_last_updated": { "type": 6, "value": 1689104143830 }, - "date_of_expiration": { "type": 6, "value": 1689104143830 }, + "date_created": { + "type": 6, + "value": 1689104143830 + }, + "date_last_updated": { + "type": 6, + "value": 1689104143830 + }, + "date_of_expiration": { + "type": 6, + "value": 1689104143830 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -35782,7 +45856,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689646587803/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02urm01qpoohx755phem5", "revision_nr": 1, "created": 1697467092040, "modified": 1697467092040 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02urm01qpoohx755phem5", + "revision_nr": 1, + "created": 1697467092040, + "modified": 1697467092040 + } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689646587803", @@ -35796,9 +45879,18 @@ "total_amount": 5352934, "history_id": 1689646587803, "id": 1689646587803, - "date_created": { "type": 6, "value": 1689646587803 }, - "date_last_updated": { "type": 6, "value": 1689646587803 }, - "date_of_expiration": { "type": 6, "value": 1689646587803 }, + "date_created": { + "type": 6, + "value": 1689646587803 + }, + "date_last_updated": { + "type": 6, + "value": 1689646587803 + }, + "date_of_expiration": { + "type": 6, + "value": 1689646587803 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -35836,7 +45928,11 @@ "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 160588.02 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 160588.02 + }, "revision": "lnt02us701qvoohx6sxpgn0x", "revision_nr": 1, "created": 1697467092060, @@ -35845,7 +45941,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02us701quoohx3rdf1ww2", "revision_nr": 1, "created": 1697467092064, "modified": 1697467092064 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02us701quoohx3rdf1ww2", + "revision_nr": 1, + "created": 1697467092064, + "modified": 1697467092064 + } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details", @@ -35879,17 +45982,32 @@ "total_amount": 5192345.98, "id": 1692620472334, "history_id": 1692620472334, - "date_created": { "type": 6, "value": 1692620472334 }, - "date_last_updated": { "type": 6, "value": 1692620515386 }, - "date_of_expiration": { "type": 6, "value": 1692620472334 }, + "date_created": { + "type": 6, + "value": 1692620472334 + }, + "date_last_updated": { + "type": 6, + "value": 1692620515386 + }, + "date_of_expiration": { + "type": 6, + "value": 1692620472334 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1692620515386 }, - "money_release_date": { "type": 6, "value": 1692620515386 }, + "date_approved": { + "type": 6, + "value": 1692620515386 + }, + "money_release_date": { + "type": 6, + "value": 1692620515386 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -35901,13 +46019,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history", - "content": { "type": 1, "value": {}, "revision": "lnt02upc01q8oohx4suoc10e", "revision_nr": 1, "created": 1697467092080, "modified": 1697467092080 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02upc01q8oohx4suoc10e", + "revision_nr": 1, + "created": 1697467092080, + "modified": 1697467092080 + } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1692384424311 } }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1692384424311 + } + }, "revision": "lnt02usw01qwoohxcvx3arkp", "revision_nr": 1, "created": 1697467092085, @@ -35918,7 +46051,16 @@ "path": "ivipcoin-db::__movement_wallet__/056546769240355840", "content": { "type": 1, - "value": { "dataModificacao": 1678095088185, "dateValidity": 1678245807542, "totalValue": 218.81, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1692586800000 } }, + "value": { + "dataModificacao": 1678095088185, + "dateValidity": 1678245807542, + "totalValue": 218.81, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1692586800000 + } + }, "revision": "lnt02uow01q4oohx5och40tk", "revision_nr": 1, "created": 1697467092091, @@ -35929,7 +46071,14 @@ "path": "ivipcoin-db::__movement_wallet__/057251085848447400", "content": { "type": 1, - "value": { "dataModificacao": 1677956784862, "dateValidity": 1678334303407, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677956784862, + "dateValidity": 1678334303407, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02ut801qxoohx2ucqcpl4", "revision_nr": 1, "created": 1697467092097, @@ -35940,7 +46089,11 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/balances/IVIP", "content": { "type": 1, - "value": { "available": "561917.00000000", "symbol": "IVIP", "value": 59.89 }, + "value": { + "available": "561917.00000000", + "symbol": "IVIP", + "value": 59.89 + }, "revision": "lnt02utd01r0oohx0p8d8trm", "revision_nr": 1, "created": 1697467092102, @@ -35949,7 +46102,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02utd01qzoohx7dh1hdr4", "revision_nr": 1, "created": 1697467092108, "modified": 1697467092108 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02utd01qzoohx7dh1hdr4", + "revision_nr": 1, + "created": 1697467092108, + "modified": 1697467092108 + } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679346644168/description", @@ -35964,7 +46124,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679346644168/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02utt01r4oohx6aal73e4", "revision_nr": 1, "created": 1697467092118, "modified": 1697467092118 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02utt01r4oohx6aal73e4", + "revision_nr": 1, + "created": 1697467092118, + "modified": 1697467092118 + } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679346644168", @@ -35978,15 +46147,30 @@ "total_amount": 20, "history_id": 1679346644168, "id": 1679346644168, - "date_created": { "type": 6, "value": 1679346644168 }, - "date_last_updated": { "type": 6, "value": 1679346955591 }, - "date_of_expiration": { "type": 6, "value": 1681938644168 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679346955591 }, - "money_release_date": { "type": 6, "value": 1679346955591 }, + "date_created": { + "type": 6, + "value": 1679346644168 + }, + "date_last_updated": { + "type": 6, + "value": 1679346955591 + }, + "date_of_expiration": { + "type": 6, + "value": 1681938644168 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679346955591 + }, + "money_release_date": { + "type": 6, + "value": 1679346955591 + }, "money_release_status": "approved", "wasDebited": true }, @@ -36009,7 +46193,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679707462559/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02uu901r7oohxh9n8hs9t", "revision_nr": 1, "created": 1697467092134, "modified": 1697467092134 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02uu901r7oohxh9n8hs9t", + "revision_nr": 1, + "created": 1697467092134, + "modified": 1697467092134 + } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679707462559", @@ -36023,15 +46216,30 @@ "total_amount": 20, "history_id": 1679707462559, "id": 1679707462559, - "date_created": { "type": 6, "value": 1679707462559 }, - "date_last_updated": { "type": 6, "value": 1679708737072 }, - "date_of_expiration": { "type": 6, "value": 1682299462559 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679708737072 }, - "money_release_date": { "type": 6, "value": 1679708737072 }, + "date_created": { + "type": 6, + "value": 1679707462559 + }, + "date_last_updated": { + "type": 6, + "value": 1679708737072 + }, + "date_of_expiration": { + "type": 6, + "value": 1682299462559 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679708737072 + }, + "money_release_date": { + "type": 6, + "value": 1679708737072 + }, "money_release_status": "approved", "wasDebited": true }, @@ -36077,9 +46285,18 @@ "original_amount": 213025, "total_amount": 213025, "id": 1679871671858, - "date_created": { "type": 6, "value": 1679871671858 }, - "date_last_updated": { "type": 6, "value": 1679871671858 }, - "date_of_expiration": { "type": 6, "value": 1679871671858 }, + "date_created": { + "type": 6, + "value": 1679871671858 + }, + "date_last_updated": { + "type": 6, + "value": 1679871671858 + }, + "date_of_expiration": { + "type": 6, + "value": 1679871671858 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -36107,7 +46324,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689132225947/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02uuz01rcoohx0kq1emmp", "revision_nr": 1, "created": 1697467092162, "modified": 1697467092162 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02uuz01rcoohx0kq1emmp", + "revision_nr": 1, + "created": 1697467092162, + "modified": 1697467092162 + } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689132225947", @@ -36121,9 +46347,18 @@ "total_amount": 20, "history_id": 1689132225947, "id": 1689132225947, - "date_created": { "type": 6, "value": 1689132225947 }, - "date_last_updated": { "type": 6, "value": 1689132225947 }, - "date_of_expiration": { "type": 6, "value": 1691724225947 }, + "date_created": { + "type": 6, + "value": 1689132225947 + }, + "date_last_updated": { + "type": 6, + "value": 1689132225947 + }, + "date_of_expiration": { + "type": 6, + "value": 1691724225947 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -36148,7 +46383,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689175940633/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02uvg01rfoohxften2y0r", "revision_nr": 1, "created": 1697467092178, "modified": 1697467092178 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02uvg01rfoohxften2y0r", + "revision_nr": 1, + "created": 1697467092178, + "modified": 1697467092178 + } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689175940633", @@ -36162,9 +46406,18 @@ "total_amount": 50, "history_id": 1689175940633, "id": 1689175940633, - "date_created": { "type": 6, "value": 1689175940633 }, - "date_last_updated": { "type": 6, "value": 1689175940633 }, - "date_of_expiration": { "type": 6, "value": 1691767940633 }, + "date_created": { + "type": 6, + "value": 1689175940633 + }, + "date_last_updated": { + "type": 6, + "value": 1689175940633 + }, + "date_of_expiration": { + "type": 6, + "value": 1691767940633 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -36189,7 +46442,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689367674517/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02uvx01rioohx8i3i0oor", "revision_nr": 1, "created": 1697467092194, "modified": 1697467092194 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02uvx01rioohx8i3i0oor", + "revision_nr": 1, + "created": 1697467092194, + "modified": 1697467092194 + } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689367674517", @@ -36203,9 +46465,18 @@ "total_amount": 50, "history_id": 1689367674517, "id": 1689367674517, - "date_created": { "type": 6, "value": 1689367674517 }, - "date_last_updated": { "type": 6, "value": 1689367674517 }, - "date_of_expiration": { "type": 6, "value": 1691959674517 }, + "date_created": { + "type": 6, + "value": 1689367674517 + }, + "date_last_updated": { + "type": 6, + "value": 1689367674517 + }, + "date_of_expiration": { + "type": 6, + "value": 1691959674517 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -36230,7 +46501,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689622072746/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02uwb01rloohxhj6bgwlp", "revision_nr": 1, "created": 1697467092209, "modified": 1697467092209 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02uwb01rloohxhj6bgwlp", + "revision_nr": 1, + "created": 1697467092209, + "modified": 1697467092209 + } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689622072746", @@ -36244,15 +46524,30 @@ "total_amount": 50, "history_id": 1689622072746, "id": 1689622072746, - "date_created": { "type": 6, "value": 1689622072746 }, - "date_last_updated": { "type": 6, "value": 1689622391229 }, - "date_of_expiration": { "type": 6, "value": 1692214072746 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689622391229 }, - "money_release_date": { "type": 6, "value": 1689622391229 }, + "date_created": { + "type": 6, + "value": 1689622072746 + }, + "date_last_updated": { + "type": 6, + "value": 1689622391229 + }, + "date_of_expiration": { + "type": 6, + "value": 1692214072746 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689622391229 + }, + "money_release_date": { + "type": 6, + "value": 1689622391229 + }, "money_release_status": "approved", "wasDebited": true }, @@ -36298,9 +46593,18 @@ "original_amount": 32205, "total_amount": 32205, "id": 1689623842206, - "date_created": { "type": 6, "value": 1689623842206 }, - "date_last_updated": { "type": 6, "value": 1689623842206 }, - "date_of_expiration": { "type": 6, "value": 1689623842206 }, + "date_created": { + "type": 6, + "value": 1689623842206 + }, + "date_last_updated": { + "type": 6, + "value": 1689623842206 + }, + "date_of_expiration": { + "type": 6, + "value": 1689623842206 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -36319,7 +46623,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1692566630901 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692566630901 + } + }, "revision": "lnt02uwy01rpoohx6930f8mw", "revision_nr": 1, "created": 1697467092230, @@ -36381,8 +46691,14 @@ "total_amount": 20, "id": 1689974630901, "history_id": 1689974630901, - "date_created": { "type": 6, "value": 1689974630901 }, - "date_last_updated": { "type": 6, "value": 1689974630901 }, + "date_created": { + "type": 6, + "value": 1689974630901 + }, + "date_last_updated": { + "type": 6, + "value": 1689974630901 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -36400,7 +46716,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1692837872747 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692837872747 + } + }, "revision": "lnt02uxo01ruoohx9vpbfpip", "revision_nr": 1, "created": 1697467092258, @@ -36462,16 +46784,28 @@ "total_amount": 20, "id": 1690245872747, "history_id": 1690245872747, - "date_created": { "type": 6, "value": 1690245872747 }, - "date_last_updated": { "type": 6, "value": 1690309276564 }, + "date_created": { + "type": 6, + "value": 1690245872747 + }, + "date_last_updated": { + "type": 6, + "value": 1690309276564 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1690309276564 }, - "money_release_date": { "type": 6, "value": 1690309276564 }, + "date_approved": { + "type": 6, + "value": 1690309276564 + }, + "money_release_date": { + "type": 6, + "value": 1690309276564 + }, "money_release_status": "approved", "wasDebited": true }, @@ -36517,9 +46851,18 @@ "original_amount": 16406, "total_amount": 16406, "id": 1690318679149, - "date_created": { "type": 6, "value": 1690318679149 }, - "date_last_updated": { "type": 6, "value": 1690318679149 }, - "date_of_expiration": { "type": 6, "value": 1690318679149 }, + "date_created": { + "type": 6, + "value": 1690318679149 + }, + "date_last_updated": { + "type": 6, + "value": 1690318679149 + }, + "date_of_expiration": { + "type": 6, + "value": 1690318679149 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -36538,7 +46881,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1695065586359 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695065586359 + } + }, "revision": "lnt02uyp01s1oohxepfgcgrt", "revision_nr": 1, "created": 1697467092295, @@ -36600,16 +46949,28 @@ "total_amount": 20, "id": 1692473586359, "history_id": 1692473586359, - "date_created": { "type": 6, "value": 1692473586359 }, - "date_last_updated": { "type": 6, "value": 1692476570838 }, + "date_created": { + "type": 6, + "value": 1692473586359 + }, + "date_last_updated": { + "type": 6, + "value": 1692476570838 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1692476570838 }, - "money_release_date": { "type": 6, "value": 1692476570838 }, + "date_approved": { + "type": 6, + "value": 1692476570838 + }, + "money_release_date": { + "type": 6, + "value": 1692476570838 + }, "money_release_status": "approved", "wasDebited": true }, @@ -36663,9 +47024,18 @@ "total_amount": 32045, "id": 1692476742525, "history_id": 1692476742525, - "date_created": { "type": 6, "value": 1692476742525 }, - "date_last_updated": { "type": 6, "value": 1692476742525 }, - "date_of_expiration": { "type": 6, "value": 1692476742525 }, + "date_created": { + "type": 6, + "value": 1692476742525 + }, + "date_last_updated": { + "type": 6, + "value": 1692476742525 + }, + "date_of_expiration": { + "type": 6, + "value": 1692476742525 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -36684,7 +47054,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1695588810545 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695588810545 + } + }, "revision": "lnt02uzu01s9oohxgk7o1mep", "revision_nr": 1, "created": 1697467092337, @@ -36746,8 +47122,14 @@ "total_amount": 20, "id": "1692996810545", "history_id": "1692996810545", - "date_created": { "type": 6, "value": 1692996810545 }, - "date_last_updated": { "type": 6, "value": 1692996810545 }, + "date_created": { + "type": 6, + "value": 1692996810545 + }, + "date_last_updated": { + "type": 6, + "value": 1692996810545 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -36765,7 +47147,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1695588844899 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695588844899 + } + }, "revision": "lnt02v0l01seoohxb1enht29", "revision_nr": 1, "created": 1697467092362, @@ -36827,16 +47215,28 @@ "total_amount": 20, "id": "1692996844899", "history_id": "1692996844899", - "date_created": { "type": 6, "value": 1692996844899 }, - "date_last_updated": { "type": 6, "value": 1692999921567 }, + "date_created": { + "type": 6, + "value": 1692996844899 + }, + "date_last_updated": { + "type": 6, + "value": 1692999921567 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1692999921567 }, - "money_release_date": { "type": 6, "value": 1692999921567 }, + "date_approved": { + "type": 6, + "value": 1692999921567 + }, + "money_release_date": { + "type": 6, + "value": 1692999921567 + }, "money_release_status": "approved", "wasDebited": true }, @@ -36890,9 +47290,18 @@ "total_amount": 40254, "id": "1693000377717", "history_id": "1693000377717", - "date_created": { "type": 6, "value": 1693000377717 }, - "date_last_updated": { "type": 6, "value": 1693000377717 }, - "date_of_expiration": { "type": 6, "value": 1693000377717 }, + "date_created": { + "type": 6, + "value": 1693000377717 + }, + "date_last_updated": { + "type": 6, + "value": 1693000377717 + }, + "date_of_expiration": { + "type": 6, + "value": 1693000377717 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -36911,7 +47320,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1696197427916 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1696197427916 + } + }, "revision": "lnt02v1p01smoohx8ax76ukk", "revision_nr": 1, "created": 1697467092402, @@ -36973,8 +47388,14 @@ "total_amount": 20, "id": "1693605427916", "history_id": "1693605427916", - "date_created": { "type": 6, "value": 1693605427916 }, - "date_last_updated": { "type": 6, "value": 1693605427916 }, + "date_created": { + "type": 6, + "value": 1693605427916 + }, + "date_last_updated": { + "type": 6, + "value": 1693605427916 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -36992,7 +47413,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1696197762263 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1696197762263 + } + }, "revision": "lnt02v2h01sroohx02is2bnt", "revision_nr": 1, "created": 1697467092430, @@ -37054,16 +47481,28 @@ "total_amount": 20, "id": "1693605762263", "history_id": "1693605762263", - "date_created": { "type": 6, "value": 1693605762263 }, - "date_last_updated": { "type": 6, "value": 1693606033196 }, + "date_created": { + "type": 6, + "value": 1693605762263 + }, + "date_last_updated": { + "type": 6, + "value": 1693606033196 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1693606033196 }, - "money_release_date": { "type": 6, "value": 1693606033196 }, + "date_approved": { + "type": 6, + "value": 1693606033196 + }, + "money_release_date": { + "type": 6, + "value": 1693606033196 + }, "money_release_status": "approved", "wasDebited": true }, @@ -37117,9 +47556,18 @@ "total_amount": 33429, "id": "1693606719867", "history_id": "1693606719867", - "date_created": { "type": 6, "value": 1693606719867 }, - "date_last_updated": { "type": 6, "value": 1693606719867 }, - "date_of_expiration": { "type": 6, "value": 1693606719867 }, + "date_created": { + "type": 6, + "value": 1693606719867 + }, + "date_last_updated": { + "type": 6, + "value": 1693606719867 + }, + "date_of_expiration": { + "type": 6, + "value": 1693606719867 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -37138,7 +47586,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697246922996 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697246922996 + } + }, "revision": "lnt02v3m01szoohxa0i9blk1", "revision_nr": 1, "created": 1697467092470, @@ -37200,16 +47654,28 @@ "total_amount": 20, "id": "1694654922996", "history_id": "1694654922996", - "date_created": { "type": 6, "value": 1694654922996 }, - "date_last_updated": { "type": 6, "value": 1694655660738 }, + "date_created": { + "type": 6, + "value": 1694654922996 + }, + "date_last_updated": { + "type": 6, + "value": 1694655660738 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694655660738 }, - "money_release_date": { "type": 6, "value": 1694655660738 }, + "date_approved": { + "type": 6, + "value": 1694655660738 + }, + "money_release_date": { + "type": 6, + "value": 1694655660738 + }, "money_release_status": "approved", "wasDebited": true }, @@ -37223,7 +47689,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697320326075 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697320326075 + } + }, "revision": "lnt02v4d01t4oohxh1s22sdd", "revision_nr": 1, "created": 1697467092498, @@ -37285,16 +47757,28 @@ "total_amount": 100, "id": "1694728326075", "history_id": "1694728326075", - "date_created": { "type": 6, "value": 1694728326075 }, - "date_last_updated": { "type": 6, "value": 1694731342567 }, + "date_created": { + "type": 6, + "value": 1694728326075 + }, + "date_last_updated": { + "type": 6, + "value": 1694731342567 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694731342567 }, - "money_release_date": { "type": 6, "value": 1694731342567 }, + "date_approved": { + "type": 6, + "value": 1694731342567 + }, + "money_release_date": { + "type": 6, + "value": 1694731342567 + }, "money_release_status": "approved", "wasDebited": true }, @@ -37308,7 +47792,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697320859603 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697320859603 + } + }, "revision": "lnt02v5201t9oohx5d7jhpew", "revision_nr": 1, "created": 1697467092525, @@ -37370,8 +47860,14 @@ "total_amount": 100, "id": "1694728859604", "history_id": "1694728859604", - "date_created": { "type": 6, "value": 1694728859604 }, - "date_last_updated": { "type": 6, "value": 1694728859604 }, + "date_created": { + "type": 6, + "value": 1694728859604 + }, + "date_last_updated": { + "type": 6, + "value": 1694728859604 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -37429,9 +47925,18 @@ "total_amount": 121808, "id": "1694731526035", "history_id": "1694731526035", - "date_created": { "type": 6, "value": 1694731526035 }, - "date_last_updated": { "type": 6, "value": 1694731526035 }, - "date_of_expiration": { "type": 6, "value": 1694731526035 }, + "date_created": { + "type": 6, + "value": 1694731526035 + }, + "date_last_updated": { + "type": 6, + "value": 1694731526035 + }, + "date_of_expiration": { + "type": 6, + "value": 1694731526035 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -37490,9 +47995,18 @@ "total_amount": 25384, "id": "1694793493188", "history_id": "1694793493188", - "date_created": { "type": 6, "value": 1694793493188 }, - "date_last_updated": { "type": 6, "value": 1694793493188 }, - "date_of_expiration": { "type": 6, "value": 1694793493188 }, + "date_created": { + "type": 6, + "value": 1694793493188 + }, + "date_last_updated": { + "type": 6, + "value": 1694793493188 + }, + "date_of_expiration": { + "type": 6, + "value": 1694793493188 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -37511,7 +48025,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697558109290 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697558109290 + } + }, "revision": "lnt02v6o01tkoohxekafgj2q", "revision_nr": 1, "created": 1697467092581, @@ -37573,16 +48093,28 @@ "total_amount": 20, "id": "1694966109291", "history_id": "1694966109291", - "date_created": { "type": 6, "value": 1694966109291 }, - "date_last_updated": { "type": 6, "value": 1694973497859 }, + "date_created": { + "type": 6, + "value": 1694966109291 + }, + "date_last_updated": { + "type": 6, + "value": 1694973497859 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694973497859 }, - "money_release_date": { "type": 6, "value": 1694973497859 }, + "date_approved": { + "type": 6, + "value": 1694973497859 + }, + "money_release_date": { + "type": 6, + "value": 1694973497859 + }, "money_release_status": "approved", "wasDebited": true }, @@ -37636,9 +48168,18 @@ "total_amount": 25302, "id": "1694988703973", "history_id": "1694988703973", - "date_created": { "type": 6, "value": 1694988703973 }, - "date_last_updated": { "type": 6, "value": 1694988703973 }, - "date_of_expiration": { "type": 6, "value": 1694988703973 }, + "date_created": { + "type": 6, + "value": 1694988703973 + }, + "date_last_updated": { + "type": 6, + "value": 1694988703973 + }, + "date_of_expiration": { + "type": 6, + "value": 1694988703973 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -37657,7 +48198,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699112028284 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699112028284 + } + }, "revision": "lnt02v7u01tsoohx4dmgaijv", "revision_nr": 1, "created": 1697467092624, @@ -37720,16 +48267,28 @@ "total_amount": 20, "id": "1696520028285", "history_id": "1696520028285", - "date_created": { "type": 6, "value": 1696520028285 }, - "date_last_updated": { "type": 6, "value": 1696520650654 }, + "date_created": { + "type": 6, + "value": 1696520028285 + }, + "date_last_updated": { + "type": 6, + "value": 1696520650654 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1696520650654 }, - "money_release_date": { "type": 6, "value": 1696520650654 }, + "date_approved": { + "type": 6, + "value": 1696520650654 + }, + "money_release_date": { + "type": 6, + "value": 1696520650654 + }, "money_release_status": "approved", "wasDebited": true }, @@ -37784,9 +48343,18 @@ "total_amount": 22059, "id": "1696520773436", "history_id": "1696520773436", - "date_created": { "type": 6, "value": 1696520773436 }, - "date_last_updated": { "type": 6, "value": 1696520773436 }, - "date_of_expiration": { "type": 6, "value": 1696520773436 }, + "date_created": { + "type": 6, + "value": 1696520773436 + }, + "date_last_updated": { + "type": 6, + "value": 1696520773436 + }, + "date_of_expiration": { + "type": 6, + "value": 1696520773436 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -37803,13 +48371,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history", - "content": { "type": 1, "value": {}, "revision": "lnt02uto01r1oohxgnki5s6u", "revision_nr": 1, "created": 1697467092664, "modified": 1697467092664 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02uto01r1oohxgnki5s6u", + "revision_nr": 1, + "created": 1697467092664, + "modified": 1697467092664 + } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1696173793593 } }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1696173793593 + } + }, "revision": "lnt02v9401tzoohxfjh8hso3", "revision_nr": 1, "created": 1697467092669, @@ -37820,7 +48403,16 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620", "content": { "type": 1, - "value": { "dataModificacao": 1679345183302, "dateValidity": 1679345183302, "totalValue": 17.88, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697338800000 } }, + "value": { + "dataModificacao": 1679345183302, + "dateValidity": 1679345183302, + "totalValue": 17.88, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } + }, "revision": "lnt02utd01qyoohxg1052kbl", "revision_nr": 1, "created": 1697467092675, @@ -37831,7 +48423,11 @@ "path": "ivipcoin-db::__movement_wallet__/058359081725899656/balances/IVIP", "content": { "type": 1, - "value": { "available": "-14612195.00000000", "symbol": "IVIP", "value": -15912.37 }, + "value": { + "available": "-14612195.00000000", + "symbol": "IVIP", + "value": -15912.37 + }, "revision": "lnt02v9f01u2oohxfw3cacsy", "revision_nr": 1, "created": 1697467092680, @@ -37840,7 +48436,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02v9f01u1oohx18ng409o", "revision_nr": 1, "created": 1697467092685, "modified": 1697467092685 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02v9f01u1oohx18ng409o", + "revision_nr": 1, + "created": 1697467092685, + "modified": 1697467092685 + } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1683732218933/description", @@ -37855,7 +48458,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1683732218933/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02v9u01u6oohxf9ii5tjq", "revision_nr": 1, "created": 1697467092695, "modified": 1697467092695 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02v9u01u6oohxf9ii5tjq", + "revision_nr": 1, + "created": 1697467092695, + "modified": 1697467092695 + } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1683732218933", @@ -37869,15 +48481,30 @@ "total_amount": 3000, "history_id": 1683732218933, "id": 1683732218933, - "date_created": { "type": 6, "value": 1683732218933 }, - "date_last_updated": { "type": 6, "value": 1683733093240 }, - "date_of_expiration": { "type": 6, "value": 1686324218933 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1683733093240 }, - "money_release_date": { "type": 6, "value": 1683733093240 }, + "date_created": { + "type": 6, + "value": 1683732218933 + }, + "date_last_updated": { + "type": 6, + "value": 1683733093240 + }, + "date_of_expiration": { + "type": 6, + "value": 1686324218933 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683733093240 + }, + "money_release_date": { + "type": 6, + "value": 1683733093240 + }, "money_release_status": "approved", "wasDebited": true }, @@ -37923,9 +48550,18 @@ "original_amount": 14612195, "total_amount": 14612195, "id": 1684627186163, - "date_created": { "type": 6, "value": 1684627186163 }, - "date_last_updated": { "type": 6, "value": 1684627186163 }, - "date_of_expiration": { "type": 6, "value": 1684627186163 }, + "date_created": { + "type": 6, + "value": 1684627186163 + }, + "date_last_updated": { + "type": 6, + "value": 1684627186163 + }, + "date_of_expiration": { + "type": 6, + "value": 1684627186163 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -37966,7 +48602,11 @@ "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 438365.85 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 438365.85 + }, "revision": "lnt02vap01ueoohxd16m5bdh", "revision_nr": 1, "created": 1697467092727, @@ -37975,7 +48615,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02vap01udoohx440k5wc6", "revision_nr": 1, "created": 1697467092732, "modified": 1697467092732 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02vap01udoohx440k5wc6", + "revision_nr": 1, + "created": 1697467092732, + "modified": 1697467092732 + } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details", @@ -38009,17 +48656,32 @@ "total_amount": 14173829.15, "id": 1692302387863, "history_id": 1692302387863, - "date_created": { "type": 6, "value": 1692302387863 }, - "date_last_updated": { "type": 6, "value": 1692973252038 }, - "date_of_expiration": { "type": 6, "value": 1692302387863 }, + "date_created": { + "type": 6, + "value": 1692302387863 + }, + "date_last_updated": { + "type": 6, + "value": 1692973252038 + }, + "date_of_expiration": { + "type": 6, + "value": 1692302387863 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1692973252038 }, - "money_release_date": { "type": 6, "value": 1692973252038 }, + "date_approved": { + "type": 6, + "value": 1692973252038 + }, + "money_release_date": { + "type": 6, + "value": 1692973252038 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -38055,7 +48717,11 @@ "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 438365.85 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 438365.85 + }, "revision": "lnt02vbm01ukoohx7oeshnmk", "revision_nr": 1, "created": 1697467092759, @@ -38064,7 +48730,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02vbm01ujoohx31oscnic", "revision_nr": 1, "created": 1697467092764, "modified": 1697467092764 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02vbm01ujoohx31oscnic", + "revision_nr": 1, + "created": 1697467092764, + "modified": 1697467092764 + } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details", @@ -38098,17 +48771,32 @@ "total_amount": 14173829.15, "id": 1692441112310, "history_id": 1692441112310, - "date_created": { "type": 6, "value": 1692441112310 }, - "date_last_updated": { "type": 6, "value": 1692972725453 }, - "date_of_expiration": { "type": 6, "value": 1692441112310 }, + "date_created": { + "type": 6, + "value": 1692441112310 + }, + "date_last_updated": { + "type": 6, + "value": 1692972725453 + }, + "date_of_expiration": { + "type": 6, + "value": 1692441112310 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1692972725453 }, - "money_release_date": { "type": 6, "value": 1692972725453 }, + "date_approved": { + "type": 6, + "value": 1692972725453 + }, + "money_release_date": { + "type": 6, + "value": 1692972725453 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -38120,13 +48808,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history", - "content": { "type": 1, "value": {}, "revision": "lnt02v9p01u3oohxbsbbato4", "revision_nr": 1, "created": 1697467092781, "modified": 1697467092781 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02v9p01u3oohxbsbbato4", + "revision_nr": 1, + "created": 1697467092781, + "modified": 1697467092781 + } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02vcd01uloohx1wwnfgrp", "revision_nr": 1, "created": 1697467092786, @@ -38137,7 +48836,16 @@ "path": "ivipcoin-db::__movement_wallet__/058359081725899656", "content": { "type": 1, - "value": { "dataModificacao": 1683669489240, "dateValidity": 1683669489240, "totalValue": 600.6, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696129200000 } }, + "value": { + "dataModificacao": 1683669489240, + "dateValidity": 1683669489240, + "totalValue": 600.6, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696129200000 + } + }, "revision": "lnt02v9f01u0oohxbjbz9rst", "revision_nr": 1, "created": 1697467092792, @@ -38148,7 +48856,11 @@ "path": "ivipcoin-db::__movement_wallet__/059914438431437400/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02vco01unoohxc8iv1h8c", "revision_nr": 1, "created": 1697467092797, @@ -38159,7 +48871,14 @@ "path": "ivipcoin-db::__movement_wallet__/059914438431437400", "content": { "type": 1, - "value": { "dataModificacao": 1684637987083, "dateValidity": 1684637987083, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684637987083, + "dateValidity": 1684637987083, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02vco01umoohx7uq8fcwn", "revision_nr": 1, "created": 1697467092802, @@ -38170,7 +48889,11 @@ "path": "ivipcoin-db::__movement_wallet__/060044476007192536/balances/BRL", "content": { "type": 1, - "value": { "symbol": "BRL", "available": "30.00000000", "value": 6.027 }, + "value": { + "symbol": "BRL", + "available": "30.00000000", + "value": 6.027 + }, "revision": "lnt02vcz01uqoohx28mzc4d0", "revision_nr": 1, "created": 1697467092807, @@ -38179,7 +48902,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02vcz01upoohx345i9bi2", "revision_nr": 1, "created": 1697467092812, "modified": 1697467092812 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02vcz01upoohx345i9bi2", + "revision_nr": 1, + "created": 1697467092812, + "modified": 1697467092812 + } }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history/1684092073649/description", @@ -38194,7 +48924,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history/1684092073649/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02vdd01uuoohxblnwdrdb", "revision_nr": 1, "created": 1697467092823, "modified": 1697467092823 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02vdd01uuoohxblnwdrdb", + "revision_nr": 1, + "created": 1697467092823, + "modified": 1697467092823 + } }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history/1684092073649", @@ -38208,15 +48947,30 @@ "total_amount": 30, "history_id": 1684092073649, "id": 1684092073649, - "date_created": { "type": 6, "value": 1684092073649 }, - "date_last_updated": { "type": 6, "value": 1684092282901 }, - "date_of_expiration": { "type": 6, "value": 1686684073649 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684092282901 }, - "money_release_date": { "type": 6, "value": 1684092282901 }, + "date_created": { + "type": 6, + "value": 1684092073649 + }, + "date_last_updated": { + "type": 6, + "value": 1684092282901 + }, + "date_of_expiration": { + "type": 6, + "value": 1686684073649 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684092282901 + }, + "money_release_date": { + "type": 6, + "value": 1684092282901 + }, "money_release_status": "approved", "wasDebited": true }, @@ -38228,13 +48982,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history", - "content": { "type": 1, "value": {}, "revision": "lnt02vd801uroohxgqc6dp8a", "revision_nr": 1, "created": 1697467092833, "modified": 1697467092833 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02vd801uroohxgqc6dp8a", + "revision_nr": 1, + "created": 1697467092833, + "modified": 1697467092833 + } }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02vdt01uvoohxd8pl79k1", "revision_nr": 1, "created": 1697467092838, @@ -38245,7 +49010,12 @@ "path": "ivipcoin-db::__movement_wallet__/060044476007192536", "content": { "type": 1, - "value": { "dataModificacao": 1684091907959, "dateValidity": 1684091907959, "totalValue": 6.03, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684091907959, + "dateValidity": 1684091907959, + "totalValue": 6.03, + "currencyType": "USD" + }, "revision": "lnt02vcy01uooohx38hl3wg8", "revision_nr": 1, "created": 1697467092844, @@ -38256,7 +49026,11 @@ "path": "ivipcoin-db::__movement_wallet__/060281793071125250/balances/BRL", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, "revision": "lnt02ve401uyoohx03n55h86", "revision_nr": 1, "created": 1697467092850, @@ -38267,7 +49041,11 @@ "path": "ivipcoin-db::__movement_wallet__/060281793071125250/balances/IVIP", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "IVIP", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "IVIP", + "value": 0 + }, "revision": "lnt02vea01uzoohx0cueao1e", "revision_nr": 1, "created": 1697467092855, @@ -38276,7 +49054,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02ve401uxoohxfurn499r", "revision_nr": 1, "created": 1697467092861, "modified": 1697467092861 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02ve401uxoohxfurn499r", + "revision_nr": 1, + "created": 1697467092861, + "modified": 1697467092861 + } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684104224358/description", @@ -38291,7 +49076,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684104224358/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02veq01v3oohxb97e9327", "revision_nr": 1, "created": 1697467092871, "modified": 1697467092871 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02veq01v3oohxb97e9327", + "revision_nr": 1, + "created": 1697467092871, + "modified": 1697467092871 + } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684104224358", @@ -38305,15 +49099,30 @@ "total_amount": 30, "history_id": 1684104224358, "id": 1684104224358, - "date_created": { "type": 6, "value": 1684104224358 }, - "date_last_updated": { "type": 6, "value": 1684104710880 }, - "date_of_expiration": { "type": 6, "value": 1686696224358 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684104710880 }, - "money_release_date": { "type": 6, "value": 1684104710880 }, + "date_created": { + "type": 6, + "value": 1684104224358 + }, + "date_last_updated": { + "type": 6, + "value": 1684104710880 + }, + "date_of_expiration": { + "type": 6, + "value": 1686696224358 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684104710880 + }, + "money_release_date": { + "type": 6, + "value": 1684104710880 + }, "money_release_status": "approved", "wasDebited": true }, @@ -38359,9 +49168,18 @@ "original_amount": 145829, "total_amount": 145829, "id": 1684702707589, - "date_created": { "type": 6, "value": 1684702707589 }, - "date_last_updated": { "type": 6, "value": 1684702707589 }, - "date_of_expiration": { "type": 6, "value": 1684702707589 }, + "date_created": { + "type": 6, + "value": 1684702707589 + }, + "date_last_updated": { + "type": 6, + "value": 1684702707589 + }, + "date_of_expiration": { + "type": 6, + "value": 1684702707589 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38389,7 +49207,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685061340656/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02vff01v8oohx82hmdjgl", "revision_nr": 1, "created": 1697467092897, "modified": 1697467092897 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02vff01v8oohx82hmdjgl", + "revision_nr": 1, + "created": 1697467092897, + "modified": 1697467092897 + } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685061340656", @@ -38403,9 +49230,18 @@ "total_amount": 20, "history_id": 1685061340656, "id": 1685061340656, - "date_created": { "type": 6, "value": 1685061340656 }, - "date_last_updated": { "type": 6, "value": 1685061340656 }, - "date_of_expiration": { "type": 6, "value": 1687653340656 }, + "date_created": { + "type": 6, + "value": 1685061340656 + }, + "date_last_updated": { + "type": 6, + "value": 1685061340656 + }, + "date_of_expiration": { + "type": 6, + "value": 1687653340656 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -38430,7 +49266,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685664745809/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02vfy01vboohxdpmyetn4", "revision_nr": 1, "created": 1697467092915, "modified": 1697467092915 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02vfy01vboohxdpmyetn4", + "revision_nr": 1, + "created": 1697467092915, + "modified": 1697467092915 + } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685664745809", @@ -38444,14 +49289,26 @@ "total_amount": 1055, "history_id": 1685664745809, "id": 1685664745809, - "date_created": { "type": 6, "value": 1685664745809 }, - "date_last_updated": { "type": 6, "value": 1685727284727 }, - "date_of_expiration": { "type": 6, "value": 1688256745809 }, + "date_created": { + "type": 6, + "value": 1685664745809 + }, + "date_last_updated": { + "type": 6, + "value": 1685727284727 + }, + "date_of_expiration": { + "type": 6, + "value": 1688256745809 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1685727284727 }, + "money_release_date": { + "type": 6, + "value": 1685727284727 + }, "money_release_status": "rejected" }, "revision": "lnt02vfq01v9oohx304b355p", @@ -38515,9 +49372,18 @@ "total_amount": 145829, "id": 1690250551090, "history_id": 1690250551090, - "date_created": { "type": 6, "value": 1690250551090 }, - "date_last_updated": { "type": 6, "value": 1690250551090 }, - "date_of_expiration": { "type": 6, "value": 1690250551090 }, + "date_created": { + "type": 6, + "value": 1690250551090 + }, + "date_last_updated": { + "type": 6, + "value": 1690250551090 + }, + "date_of_expiration": { + "type": 6, + "value": 1690250551090 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -38586,17 +49452,32 @@ "total_amount": 145829, "id": 1690380108963, "history_id": 1690380108963, - "date_created": { "type": 6, "value": 1690380108963 }, - "date_last_updated": { "type": 6, "value": 1690392697340 }, - "date_of_expiration": { "type": 6, "value": 1690380108963 }, + "date_created": { + "type": 6, + "value": 1690380108963 + }, + "date_last_updated": { + "type": 6, + "value": 1690392697340 + }, + "date_of_expiration": { + "type": 6, + "value": 1690380108963 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1690392697340 }, - "money_release_date": { "type": 6, "value": 1690392697340 }, + "date_approved": { + "type": 6, + "value": 1690392697340 + }, + "money_release_date": { + "type": 6, + "value": 1690392697340 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -38608,13 +49489,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history", - "content": { "type": 1, "value": {}, "revision": "lnt02vel01v0oohxfar49dm5", "revision_nr": 1, "created": 1697467092969, "modified": 1697467092969 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02vel01v0oohxfar49dm5", + "revision_nr": 1, + "created": 1697467092969, + "modified": 1697467092969 + } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02vhl01vkoohxgmxp0vj2", "revision_nr": 1, "created": 1697467092976, @@ -38625,7 +49517,16 @@ "path": "ivipcoin-db::__movement_wallet__/060281793071125250", "content": { "type": 1, - "value": { "dataModificacao": 1684104139226, "dateValidity": 1684104139226, "totalValue": 6.02, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1693018800000 } }, + "value": { + "dataModificacao": 1684104139226, + "dateValidity": 1684104139226, + "totalValue": 6.02, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1693018800000 + } + }, "revision": "lnt02ve401uwoohx4lzk92vv", "revision_nr": 1, "created": 1697467092980, @@ -38636,7 +49537,11 @@ "path": "ivipcoin-db::__movement_wallet__/060606366606758000/balances/IVIP", "content": { "type": 1, - "value": { "available": "2596003.86000000", "symbol": "IVIP", "value": 270.012 }, + "value": { + "available": "2596003.86000000", + "symbol": "IVIP", + "value": 270.012 + }, "revision": "lnt02vhx01vnoohxfmaw6lh1", "revision_nr": 1, "created": 1697467092986, @@ -38645,7 +49550,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02vhx01vmoohx4kaucorx", "revision_nr": 1, "created": 1697467092992, "modified": 1697467092992 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02vhx01vmoohx4kaucorx", + "revision_nr": 1, + "created": 1697467092992, + "modified": 1697467092992 + } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679009450729/description", @@ -38660,7 +49572,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679009450729/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02vie01vroohxc1r80d3h", "revision_nr": 1, "created": 1697467093003, "modified": 1697467093003 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02vie01vroohxc1r80d3h", + "revision_nr": 1, + "created": 1697467093003, + "modified": 1697467093003 + } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679009450729", @@ -38674,15 +49595,30 @@ "total_amount": 1800, "history_id": 1679009450729, "id": 1679009450729, - "date_created": { "type": 6, "value": 1679009450729 }, - "date_last_updated": { "type": 6, "value": 1679009578413 }, - "date_of_expiration": { "type": 6, "value": 1681601450729 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679009578413 }, - "money_release_date": { "type": 6, "value": 1679009578413 }, + "date_created": { + "type": 6, + "value": 1679009450729 + }, + "date_last_updated": { + "type": 6, + "value": 1679009578413 + }, + "date_of_expiration": { + "type": 6, + "value": 1681601450729 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679009578413 + }, + "money_release_date": { + "type": 6, + "value": 1679009578413 + }, "money_release_status": "approved", "wasDebited": true }, @@ -38728,9 +49664,18 @@ "original_amount": 10484307, "total_amount": 10484307, "id": 1679267499015, - "date_created": { "type": 6, "value": 1679267499015 }, - "date_last_updated": { "type": 6, "value": 1679267499015 }, - "date_of_expiration": { "type": 6, "value": 1679267499015 }, + "date_created": { + "type": 6, + "value": 1679267499015 + }, + "date_last_updated": { + "type": 6, + "value": 1679267499015 + }, + "date_of_expiration": { + "type": 6, + "value": 1679267499015 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38791,9 +49736,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1688476464326, - "date_created": { "type": 6, "value": 1688476464326 }, - "date_last_updated": { "type": 6, "value": 1688476464326 }, - "date_of_expiration": { "type": 6, "value": 1720098864326 }, + "date_created": { + "type": 6, + "value": 1688476464326 + }, + "date_last_updated": { + "type": 6, + "value": 1688476464326 + }, + "date_of_expiration": { + "type": 6, + "value": 1720098864326 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38853,9 +49807,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1688476478538, - "date_created": { "type": 6, "value": 1688476478538 }, - "date_last_updated": { "type": 6, "value": 1688476478538 }, - "date_of_expiration": { "type": 6, "value": 1751634878538 }, + "date_created": { + "type": 6, + "value": 1688476478538 + }, + "date_last_updated": { + "type": 6, + "value": 1688476478538 + }, + "date_of_expiration": { + "type": 6, + "value": 1751634878538 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38924,9 +49887,18 @@ "total_amount": 5684843, "id": "1693784335259", "history_id": "1693784335259", - "date_created": { "type": 6, "value": 1693784335259 }, - "date_last_updated": { "type": 6, "value": 1693784335259 }, - "date_of_expiration": { "type": 6, "value": 1696376335258 }, + "date_created": { + "type": 6, + "value": 1693784335259 + }, + "date_last_updated": { + "type": 6, + "value": 1693784335259 + }, + "date_of_expiration": { + "type": 6, + "value": 1696376335258 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38996,9 +49968,18 @@ "total_amount": 5798539.86, "id": "1696384249715", "history_id": "1696384249715", - "date_created": { "type": 6, "value": 1696384249715 }, - "date_last_updated": { "type": 6, "value": 1696384249715 }, - "date_of_expiration": { "type": 6, "value": 1696384249715 }, + "date_created": { + "type": 6, + "value": 1696384249715 + }, + "date_last_updated": { + "type": 6, + "value": 1696384249715 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384249715 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -39068,9 +50049,18 @@ "total_amount": 5798539.86, "id": "1696384254400", "history_id": "1696384254400", - "date_created": { "type": 6, "value": 1696384254400 }, - "date_last_updated": { "type": 6, "value": 1696384254400 }, - "date_of_expiration": { "type": 6, "value": 1696384254400 }, + "date_created": { + "type": 6, + "value": 1696384254400 + }, + "date_last_updated": { + "type": 6, + "value": 1696384254400 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384254400 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -39140,9 +50130,18 @@ "total_amount": 5798539.86, "id": "1696384253628", "history_id": "1696384253628", - "date_created": { "type": 6, "value": 1696384253628 }, - "date_last_updated": { "type": 6, "value": 1696384253628 }, - "date_of_expiration": { "type": 6, "value": 1696384253628 }, + "date_created": { + "type": 6, + "value": 1696384253628 + }, + "date_last_updated": { + "type": 6, + "value": 1696384253628 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384253628 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -39212,9 +50211,18 @@ "total_amount": 8000000, "id": "1696457810654", "history_id": "1696457810654", - "date_created": { "type": 6, "value": 1696457810654 }, - "date_last_updated": { "type": 6, "value": 1696457810654 }, - "date_of_expiration": { "type": 6, "value": 1699136210615 }, + "date_created": { + "type": 6, + "value": 1696457810654 + }, + "date_last_updated": { + "type": 6, + "value": 1696457810654 + }, + "date_of_expiration": { + "type": 6, + "value": 1699136210615 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -39230,13 +50238,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history", - "content": { "type": 1, "value": {}, "revision": "lnt02vi801vooohxc8ju63ry", "revision_nr": 1, "created": 1697467093165, "modified": 1697467093165 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02vi801vooohxc8ju63ry", + "revision_nr": 1, + "created": 1697467093165, + "modified": 1697467093165 + } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02vn101wkoohx8eymdc20", "revision_nr": 1, "created": 1697467093171, @@ -39252,7 +50271,10 @@ "dateValidity": 1679023260971, "totalValue": 563.3215233209353, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1697338800000 } + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } }, "revision": "lnt02vhx01vloohx3p349gu6", "revision_nr": 1, @@ -39264,7 +50286,11 @@ "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BTC", "content": { "type": 1, - "value": { "symbol": "BTC", "value": 0.12708406600000002, "available": "0.00000509" }, + "value": { + "symbol": "BTC", + "value": 0.12708406600000002, + "available": "0.00000509" + }, "revision": "lnt02vne01wnoohxbqdv3pch", "revision_nr": 1, "created": 1697467093183, @@ -39275,7 +50301,11 @@ "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BNB", "content": { "type": 1, - "value": { "symbol": "BNB", "value": 0.0088529947, "available": "0.00002689" }, + "value": { + "symbol": "BNB", + "value": 0.0088529947, + "available": "0.00002689" + }, "revision": "lnt02vnj01wooohxg7m0dpbd", "revision_nr": 1, "created": 1697467093188, @@ -39286,7 +50316,11 @@ "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BUSD", "content": { "type": 1, - "value": { "symbol": "BUSD", "value": 0.032112, "available": "0.03211200" }, + "value": { + "symbol": "BUSD", + "value": 0.032112, + "available": "0.03211200" + }, "revision": "lnt02vno01wpoohx2l4l1jh5", "revision_nr": 1, "created": 1697467093193, @@ -39297,7 +50331,11 @@ "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/KAVA", "content": { "type": 1, - "value": { "symbol": "KAVA", "value": 1.4510568362399998, "available": "1.41843288" }, + "value": { + "symbol": "KAVA", + "value": 1.4510568362399998, + "available": "1.41843288" + }, "revision": "lnt02vnt01wqoohx6esy3kop", "revision_nr": 1, "created": 1697467093199, @@ -39308,7 +50346,11 @@ "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BRL", "content": { "type": 1, - "value": { "symbol": "BRL", "value": 0.145340815, "available": "0.76697000" }, + "value": { + "symbol": "BRL", + "value": 0.145340815, + "available": "0.76697000" + }, "revision": "lnt02vnz01wroohx3mlwgegu", "revision_nr": 1, "created": 1697467093205, @@ -39319,7 +50361,11 @@ "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/IDEX", "content": { "type": 1, - "value": { "symbol": "IDEX", "value": 0.0002743, "available": "0.00500000" }, + "value": { + "symbol": "IDEX", + "value": 0.0002743, + "available": "0.00500000" + }, "revision": "lnt02vo501wsoohx0gybf9vi", "revision_nr": 1, "created": 1697467093210, @@ -39330,7 +50376,11 @@ "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/NFT", "content": { "type": 1, - "value": { "symbol": "NFT", "value": 0.15272504798763, "available": "372500.117043" }, + "value": { + "symbol": "NFT", + "value": 0.15272504798763, + "available": "372500.117043" + }, "revision": "lnt02voa01wtoohxffumbxmr", "revision_nr": 1, "created": 1697467093215, @@ -39341,7 +50391,11 @@ "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/LUNC", "content": { "type": 1, - "value": { "symbol": "LUNC", "value": 7.524e-8, "available": "0.00060000" }, + "value": { + "symbol": "LUNC", + "value": 7.524e-8, + "available": "0.00060000" + }, "revision": "lnt02vof01wuoohxdmbmdq17", "revision_nr": 1, "created": 1697467093220, @@ -39352,7 +50406,11 @@ "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/GFT", "content": { "type": 1, - "value": { "symbol": "GFT", "value": 0.001235, "available": "0.10000000" }, + "value": { + "symbol": "GFT", + "value": 0.001235, + "available": "0.10000000" + }, "revision": "lnt02vok01wvoohx4lpfg22h", "revision_nr": 1, "created": 1697467093227, @@ -39361,13 +50419,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02vne01wmoohx0ve066fw", "revision_nr": 1, "created": 1697467093232, "modified": 1697467093232 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02vne01wmoohx0ve066fw", + "revision_nr": 1, + "created": 1697467093232, + "modified": 1697467093232 + } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650", "content": { "type": 1, - "value": { "dataModificacao": 1678997573060, "dateValidity": 1679015562550, "history": {}, "totalValue": 1.919, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678997573060, + "dateValidity": 1679015562550, + "history": {}, + "totalValue": 1.919, + "currencyType": "USD" + }, "revision": "lnt02vne01wloohx271keby1", "revision_nr": 1, "created": 1697467093238, @@ -39378,7 +50449,11 @@ "path": "ivipcoin-db::__movement_wallet__/062575214502477384/balances/IVIP", "content": { "type": 1, - "value": { "available": "1808506.00000000", "symbol": "IVIP", "value": 279.32 }, + "value": { + "available": "1808506.00000000", + "symbol": "IVIP", + "value": 279.32 + }, "revision": "lnt02vp201wyoohxhis92zwj", "revision_nr": 1, "created": 1697467093244, @@ -39387,13 +50462,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02vp201wxoohxfi5lgfn2", "revision_nr": 1, "created": 1697467093249, "modified": 1697467093249 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02vp201wxoohxfi5lgfn2", + "revision_nr": 1, + "created": 1697467093249, + "modified": 1697467093249 + } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693586433996 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693586433996 + } + }, "revision": "lnt02vpd01x1oohxdwcw6d1k", "revision_nr": 1, "created": 1697467093255, @@ -39455,16 +50543,28 @@ "total_amount": 1000, "id": 1690994433997, "history_id": 1690994433997, - "date_created": { "type": 6, "value": 1690994433997 }, - "date_last_updated": { "type": 6, "value": 1691009312957 }, + "date_created": { + "type": 6, + "value": 1690994433997 + }, + "date_last_updated": { + "type": 6, + "value": 1691009312957 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691009312957 }, - "money_release_date": { "type": 6, "value": 1691009312957 }, + "date_approved": { + "type": 6, + "value": 1691009312957 + }, + "money_release_date": { + "type": 6, + "value": 1691009312957 + }, "money_release_status": "approved", "wasDebited": true }, @@ -39518,9 +50618,18 @@ "total_amount": 207673, "id": 1691064347943, "history_id": 1691064347943, - "date_created": { "type": 6, "value": 1691064347943 }, - "date_last_updated": { "type": 6, "value": 1691064347943 }, - "date_of_expiration": { "type": 6, "value": 1691064347943 }, + "date_created": { + "type": 6, + "value": 1691064347943 + }, + "date_last_updated": { + "type": 6, + "value": 1691064347943 + }, + "date_of_expiration": { + "type": 6, + "value": 1691064347943 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -39579,9 +50688,18 @@ "total_amount": 292108, "id": 1691234903050, "history_id": 1691234903050, - "date_created": { "type": 6, "value": 1691234903050 }, - "date_last_updated": { "type": 6, "value": 1691234903050 }, - "date_of_expiration": { "type": 6, "value": 1691234903050 }, + "date_created": { + "type": 6, + "value": 1691234903050 + }, + "date_last_updated": { + "type": 6, + "value": 1691234903050 + }, + "date_of_expiration": { + "type": 6, + "value": 1691234903050 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -39640,9 +50758,18 @@ "total_amount": 293284, "id": 1691237670718, "history_id": 1691237670718, - "date_created": { "type": 6, "value": 1691237670718 }, - "date_last_updated": { "type": 6, "value": 1691237670718 }, - "date_of_expiration": { "type": 6, "value": 1691237670718 }, + "date_created": { + "type": 6, + "value": 1691237670718 + }, + "date_last_updated": { + "type": 6, + "value": 1691237670718 + }, + "date_of_expiration": { + "type": 6, + "value": 1691237670718 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -39701,9 +50828,18 @@ "total_amount": 327037, "id": 1691454318499, "history_id": 1691454318499, - "date_created": { "type": 6, "value": 1691454318499 }, - "date_last_updated": { "type": 6, "value": 1691454318499 }, - "date_of_expiration": { "type": 6, "value": 1691454318499 }, + "date_created": { + "type": 6, + "value": 1691454318499 + }, + "date_last_updated": { + "type": 6, + "value": 1691454318499 + }, + "date_of_expiration": { + "type": 6, + "value": 1691454318499 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -39722,7 +50858,13 @@ "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694087110176 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694087110176 + } + }, "revision": "lnt02vs101xioohx4kh0gkqd", "revision_nr": 1, "created": 1697467093350, @@ -39784,16 +50926,28 @@ "total_amount": 1000, "id": 1691495110179, "history_id": 1691495110179, - "date_created": { "type": 6, "value": 1691495110179 }, - "date_last_updated": { "type": 6, "value": 1691499951775 }, + "date_created": { + "type": 6, + "value": 1691495110179 + }, + "date_last_updated": { + "type": 6, + "value": 1691499951775 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691499951775 }, - "money_release_date": { "type": 6, "value": 1691499951775 }, + "date_approved": { + "type": 6, + "value": 1691499951775 + }, + "money_release_date": { + "type": 6, + "value": 1691499951775 + }, "money_release_status": "approved", "wasDebited": true }, @@ -39847,9 +51001,18 @@ "total_amount": 332596, "id": 1691500327136, "history_id": 1691500327136, - "date_created": { "type": 6, "value": 1691500327136 }, - "date_last_updated": { "type": 6, "value": 1691500327136 }, - "date_of_expiration": { "type": 6, "value": 1691500327136 }, + "date_created": { + "type": 6, + "value": 1691500327136 + }, + "date_last_updated": { + "type": 6, + "value": 1691500327136 + }, + "date_of_expiration": { + "type": 6, + "value": 1691500327136 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -39908,9 +51071,18 @@ "total_amount": 372254, "id": 1691711802306, "history_id": 1691711802306, - "date_created": { "type": 6, "value": 1691711802306 }, - "date_last_updated": { "type": 6, "value": 1691711802306 }, - "date_of_expiration": { "type": 6, "value": 1691711802306 }, + "date_created": { + "type": 6, + "value": 1691711802306 + }, + "date_last_updated": { + "type": 6, + "value": 1691711802306 + }, + "date_of_expiration": { + "type": 6, + "value": 1691711802306 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -39969,9 +51141,18 @@ "total_amount": 378088, "id": 1691848017758, "history_id": 1691848017758, - "date_created": { "type": 6, "value": 1691848017758 }, - "date_last_updated": { "type": 6, "value": 1691848017758 }, - "date_of_expiration": { "type": 6, "value": 1691848017758 }, + "date_created": { + "type": 6, + "value": 1691848017758 + }, + "date_last_updated": { + "type": 6, + "value": 1691848017758 + }, + "date_of_expiration": { + "type": 6, + "value": 1691848017758 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -40030,9 +51211,18 @@ "total_amount": 456006, "id": 1692027842104, "history_id": 1692027842104, - "date_created": { "type": 6, "value": 1692027842104 }, - "date_last_updated": { "type": 6, "value": 1692027842104 }, - "date_of_expiration": { "type": 6, "value": 1692027842104 }, + "date_created": { + "type": 6, + "value": 1692027842104 + }, + "date_last_updated": { + "type": 6, + "value": 1692027842104 + }, + "date_of_expiration": { + "type": 6, + "value": 1692027842104 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -40091,9 +51281,18 @@ "total_amount": 475181, "id": 1692250715020, "history_id": 1692250715020, - "date_created": { "type": 6, "value": 1692250715020 }, - "date_last_updated": { "type": 6, "value": 1692250715020 }, - "date_of_expiration": { "type": 6, "value": 1692250715020 }, + "date_created": { + "type": 6, + "value": 1692250715020 + }, + "date_last_updated": { + "type": 6, + "value": 1692250715020 + }, + "date_of_expiration": { + "type": 6, + "value": 1692250715020 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -40112,7 +51311,13 @@ "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1695079270157 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695079270157 + } + }, "revision": "lnt02vv301y2oohx3sbt9wfo", "revision_nr": 1, "created": 1697467093460, @@ -40174,8 +51379,14 @@ "total_amount": 1500, "id": 1692487270158, "history_id": 1692487270158, - "date_created": { "type": 6, "value": 1692487270158 }, - "date_last_updated": { "type": 6, "value": 1692487270158 }, + "date_created": { + "type": 6, + "value": 1692487270158 + }, + "date_last_updated": { + "type": 6, + "value": 1692487270158 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -40193,7 +51404,13 @@ "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1695079578184 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695079578184 + } + }, "revision": "lnt02vvv01y7oohxfyeoft9u", "revision_nr": 1, "created": 1697467093489, @@ -40255,8 +51472,14 @@ "total_amount": 1500, "id": 1692487578184, "history_id": 1692487578184, - "date_created": { "type": 6, "value": 1692487578184 }, - "date_last_updated": { "type": 6, "value": 1692487578184 }, + "date_created": { + "type": 6, + "value": 1692487578184 + }, + "date_last_updated": { + "type": 6, + "value": 1692487578184 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -40314,9 +51537,18 @@ "total_amount": 328542, "id": 1692488711638, "history_id": 1692488711638, - "date_created": { "type": 6, "value": 1692488711638 }, - "date_last_updated": { "type": 6, "value": 1692488711638 }, - "date_of_expiration": { "type": 6, "value": 1692488711638 }, + "date_created": { + "type": 6, + "value": 1692488711638 + }, + "date_last_updated": { + "type": 6, + "value": 1692488711638 + }, + "date_of_expiration": { + "type": 6, + "value": 1692488711638 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -40335,7 +51567,13 @@ "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1695240164836 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695240164836 + } + }, "revision": "lnt02vx601yfoohxe97k256i", "revision_nr": 1, "created": 1697467093536, @@ -40397,16 +51635,28 @@ "total_amount": 1500, "id": 1692648164836, "history_id": 1692648164836, - "date_created": { "type": 6, "value": 1692648164836 }, - "date_last_updated": { "type": 6, "value": 1692666231441 }, + "date_created": { + "type": 6, + "value": 1692648164836 + }, + "date_last_updated": { + "type": 6, + "value": 1692666231441 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1692666231441 }, - "money_release_date": { "type": 6, "value": 1692666231441 }, + "date_approved": { + "type": 6, + "value": 1692666231441 + }, + "money_release_date": { + "type": 6, + "value": 1692666231441 + }, "money_release_status": "approved", "wasDebited": true }, @@ -40460,9 +51710,18 @@ "total_amount": 285329, "id": "1692666772551", "history_id": "1692666772551", - "date_created": { "type": 6, "value": 1692666772551 }, - "date_last_updated": { "type": 6, "value": 1692666772551 }, - "date_of_expiration": { "type": 6, "value": 1692666772551 }, + "date_created": { + "type": 6, + "value": 1692666772551 + }, + "date_last_updated": { + "type": 6, + "value": 1692666772551 + }, + "date_of_expiration": { + "type": 6, + "value": 1692666772551 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -40521,9 +51780,18 @@ "total_amount": 285329, "id": "1692666803752", "history_id": "1692666803752", - "date_created": { "type": 6, "value": 1692666803752 }, - "date_last_updated": { "type": 6, "value": 1692666803752 }, - "date_of_expiration": { "type": 6, "value": 1692666803752 }, + "date_created": { + "type": 6, + "value": 1692666803752 + }, + "date_last_updated": { + "type": 6, + "value": 1692666803752 + }, + "date_of_expiration": { + "type": 6, + "value": 1692666803752 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -40582,9 +51850,18 @@ "total_amount": 282682, "id": "1692730130844", "history_id": "1692730130844", - "date_created": { "type": 6, "value": 1692730130844 }, - "date_last_updated": { "type": 6, "value": 1692730130844 }, - "date_of_expiration": { "type": 6, "value": 1692730130844 }, + "date_created": { + "type": 6, + "value": 1692730130844 + }, + "date_last_updated": { + "type": 6, + "value": 1692730130844 + }, + "date_of_expiration": { + "type": 6, + "value": 1692730130844 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -40643,9 +51920,18 @@ "total_amount": 526629, "id": "1692751123570", "history_id": "1692751123570", - "date_created": { "type": 6, "value": 1692751123570 }, - "date_last_updated": { "type": 6, "value": 1692751123570 }, - "date_of_expiration": { "type": 6, "value": 1692751123570 }, + "date_created": { + "type": 6, + "value": 1692751123570 + }, + "date_last_updated": { + "type": 6, + "value": 1692751123570 + }, + "date_of_expiration": { + "type": 6, + "value": 1692751123570 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -40704,9 +51990,18 @@ "total_amount": 614430, "id": "1692814492618", "history_id": "1692814492618", - "date_created": { "type": 6, "value": 1692814492618 }, - "date_last_updated": { "type": 6, "value": 1692814492618 }, - "date_of_expiration": { "type": 6, "value": 1692814492618 }, + "date_created": { + "type": 6, + "value": 1692814492618 + }, + "date_last_updated": { + "type": 6, + "value": 1692814492618 + }, + "date_of_expiration": { + "type": 6, + "value": 1692814492618 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -40725,7 +52020,13 @@ "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697297622264 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697297622264 + } + }, "revision": "lnt02w0901yzoohx8jrveqer", "revision_nr": 1, "created": 1697467093646, @@ -40787,16 +52088,28 @@ "total_amount": 2000, "id": "1694705622264", "history_id": "1694705622264", - "date_created": { "type": 6, "value": 1694705622264 }, - "date_last_updated": { "type": 6, "value": 1694716697493 }, + "date_created": { + "type": 6, + "value": 1694705622264 + }, + "date_last_updated": { + "type": 6, + "value": 1694716697493 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694716697493 }, - "money_release_date": { "type": 6, "value": 1694716697493 }, + "date_approved": { + "type": 6, + "value": 1694716697493 + }, + "money_release_date": { + "type": 6, + "value": 1694716697493 + }, "money_release_status": "approved", "wasDebited": true }, @@ -40850,9 +52163,18 @@ "total_amount": 2446285, "id": "1694719090426", "history_id": "1694719090426", - "date_created": { "type": 6, "value": 1694719090426 }, - "date_last_updated": { "type": 6, "value": 1694719090426 }, - "date_of_expiration": { "type": 6, "value": 1694719090426 }, + "date_created": { + "type": 6, + "value": 1694719090426 + }, + "date_last_updated": { + "type": 6, + "value": 1694719090426 + }, + "date_of_expiration": { + "type": 6, + "value": 1694719090426 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -40922,9 +52244,18 @@ "total_amount": 1136670, "id": "1695328321082", "history_id": "1695328321082", - "date_created": { "type": 6, "value": 1695328321082 }, - "date_last_updated": { "type": 6, "value": 1695328321082 }, - "date_of_expiration": { "type": 6, "value": 1758486721058 }, + "date_created": { + "type": 6, + "value": 1695328321082 + }, + "date_last_updated": { + "type": 6, + "value": 1695328321082 + }, + "date_of_expiration": { + "type": 6, + "value": 1758486721058 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -40994,9 +52325,18 @@ "total_amount": 4958277, "id": "1696508927650", "history_id": "1696508927650", - "date_created": { "type": 6, "value": 1696508927650 }, - "date_last_updated": { "type": 6, "value": 1696508927650 }, - "date_of_expiration": { "type": 6, "value": 1699187327619 }, + "date_created": { + "type": 6, + "value": 1696508927650 + }, + "date_last_updated": { + "type": 6, + "value": 1696508927650 + }, + "date_of_expiration": { + "type": 6, + "value": 1699187327619 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -41012,13 +52352,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history", - "content": { "type": 1, "value": {}, "revision": "lnt02vpd01wzoohxgtbocgwp", "revision_nr": 1, "created": 1697467093737, "modified": 1697467093737 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02vpd01wzoohxgtbocgwp", + "revision_nr": 1, + "created": 1697467093737, + "modified": 1697467093737 + } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1691240400848 } }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1691240400848 + } + }, "revision": "lnt02w2x01zeoohx8rifgf3e", "revision_nr": 1, "created": 1697467093744, @@ -41029,7 +52384,15 @@ "path": "ivipcoin-db::__movement_wallet__/062575214502477384", "content": { "type": 1, - "value": { "dataModificacao": 1690559154331, "dateValidity": 1690559154379, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696561200000 } }, + "value": { + "dataModificacao": 1690559154331, + "dateValidity": 1690559154379, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } + }, "revision": "lnt02vp201wwoohxdqor0kib", "revision_nr": 1, "created": 1697467093749, @@ -41040,7 +52403,11 @@ "path": "ivipcoin-db::__movement_wallet__/065013731763701400/balances/BRL", "content": { "type": 1, - "value": { "available": "150.00000000", "symbol": "BRL", "value": 30.33 }, + "value": { + "available": "150.00000000", + "symbol": "BRL", + "value": 30.33 + }, "revision": "lnt02w3901zhoohxcmwb9r5c", "revision_nr": 1, "created": 1697467093755, @@ -41049,7 +52416,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02w3901zgoohxewf6ewc4", "revision_nr": 1, "created": 1697467093760, "modified": 1697467093760 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02w3901zgoohxewf6ewc4", + "revision_nr": 1, + "created": 1697467093760, + "modified": 1697467093760 + } }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history/1689114820357/description", @@ -41064,7 +52438,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history/1689114820357/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02w3p01zloohx31xyd2uq", "revision_nr": 1, "created": 1697467093773, "modified": 1697467093773 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02w3p01zloohx31xyd2uq", + "revision_nr": 1, + "created": 1697467093773, + "modified": 1697467093773 + } }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history/1689114820357", @@ -41078,15 +52461,30 @@ "total_amount": 150, "history_id": 1689114820357, "id": 1689114820357, - "date_created": { "type": 6, "value": 1689114820357 }, - "date_last_updated": { "type": 6, "value": 1689691551563 }, - "date_of_expiration": { "type": 6, "value": 1691706820357 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689691551563 }, - "money_release_date": { "type": 6, "value": 1689691551563 }, + "date_created": { + "type": 6, + "value": 1689114820357 + }, + "date_last_updated": { + "type": 6, + "value": 1689691551563 + }, + "date_of_expiration": { + "type": 6, + "value": 1691706820357 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689691551563 + }, + "money_release_date": { + "type": 6, + "value": 1689691551563 + }, "money_release_status": "approved", "wasDebited": true }, @@ -41098,13 +52496,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history", - "content": { "type": 1, "value": {}, "revision": "lnt02w3k01zioohx29r35s3o", "revision_nr": 1, "created": 1697467093784, "modified": 1697467093784 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02w3k01zioohx29r35s3o", + "revision_nr": 1, + "created": 1697467093784, + "modified": 1697467093784 + } }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02w4801zmoohx0cqt2kvp", "revision_nr": 1, "created": 1697467093790, @@ -41115,7 +52524,16 @@ "path": "ivipcoin-db::__movement_wallet__/065013731763701400", "content": { "type": 1, - "value": { "dataModificacao": 1689114736496, "dateValidity": 1689114736496, "totalValue": 30.93, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1691895600000 } }, + "value": { + "dataModificacao": 1689114736496, + "dateValidity": 1689114736496, + "totalValue": 30.93, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1691895600000 + } + }, "revision": "lnt02w3901zfoohx5wcpgmol", "revision_nr": 1, "created": 1697467093795, @@ -41170,7 +52588,11 @@ "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.198 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, "revision": "lnt02w5501zwoohxgmbl6twv", "revision_nr": 1, "created": 1697467093822, @@ -41179,21 +52601,52 @@ }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02w5501zvoohxd6qahewy", "revision_nr": 1, "created": 1697467093828, "modified": 1697467093828 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02w5501zvoohxd6qahewy", + "revision_nr": 1, + "created": 1697467093828, + "modified": 1697467093828 + } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/bank_info/collector", - "content": { "type": 1, "value": { "account_holder_name": "IVIPCOIN LTDA" }, "revision": "lnt02w5g01zyoohxc593cbnf", "revision_nr": 1, "created": 1697467093833, "modified": 1697467093833 } + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "lnt02w5g01zyoohxc593cbnf", + "revision_nr": 1, + "created": 1697467093833, + "modified": 1697467093833 + } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02w5g01zxoohxg14w33m0", "revision_nr": 1, "created": 1697467093840, "modified": 1697467093840 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02w5g01zxoohxg14w33m0", + "revision_nr": 1, + "created": 1697467093840, + "modified": 1697467093840 + } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02w4p01zroohxa6e46rsp", "revision_nr": 1, "created": 1697467093845, @@ -41212,9 +52665,18 @@ "total_amount": 20.2, "history_id": 1679067982009, "id": 55838238501, - "date_created": { "type": 6, "value": 1679067982887 }, - "date_last_updated": { "type": 6, "value": 1679154643000 }, - "date_of_expiration": { "type": 6, "value": 1679154382597 }, + "date_created": { + "type": 6, + "value": 1679067982887 + }, + "date_last_updated": { + "type": 6, + "value": 1679154643000 + }, + "date_of_expiration": { + "type": 6, + "value": 1679154382597 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "cancelled", @@ -41229,13 +52691,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history", - "content": { "type": 1, "value": {}, "revision": "lnt02w4j01zooohx4cga6s01", "revision_nr": 1, "created": 1697467093860, "modified": 1697467093860 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02w4j01zooohx4cga6s01", + "revision_nr": 1, + "created": 1697467093860, + "modified": 1697467093860 + } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02w6c01zzoohxgdsqd5bl", "revision_nr": 1, "created": 1697467093865, @@ -41246,7 +52719,13 @@ "path": "ivipcoin-db::__movement_wallet__/066749403784981840", "content": { "type": 1, - "value": { "dataModificacao": 1679067783161, "dateValidity": 1679067783161, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1679067783161, + "dateValidity": 1679067783161, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02w4j01znoohx9b2yghyv", "revision_nr": 1, "created": 1697467093870, @@ -41257,7 +52736,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/balances/BRL", "content": { "type": 1, - "value": { "available": "20.00000000", "symbol": "BRL", "value": 3.86 }, + "value": { + "available": "20.00000000", + "symbol": "BRL", + "value": 3.86 + }, "revision": "lnt02w6n0202oohxbw6lc2tz", "revision_nr": 1, "created": 1697467093876, @@ -41268,7 +52751,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/balances/IVIP", "content": { "type": 1, - "value": { "available": "12224831.00000000", "symbol": "IVIP", "value": 1888.088 }, + "value": { + "available": "12224831.00000000", + "symbol": "IVIP", + "value": 1888.088 + }, "revision": "lnt02w6s0203oohx4qztg68h", "revision_nr": 1, "created": 1697467093881, @@ -41277,7 +52764,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02w6n0201oohx69k7dt67", "revision_nr": 1, "created": 1697467093887, "modified": 1697467093887 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02w6n0201oohx69k7dt67", + "revision_nr": 1, + "created": 1697467093887, + "modified": 1697467093887 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684181007832/description", @@ -41292,7 +52786,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684181007832/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02w790207oohxatol22jp", "revision_nr": 1, "created": 1697467093898, "modified": 1697467093898 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02w790207oohxatol22jp", + "revision_nr": 1, + "created": 1697467093898, + "modified": 1697467093898 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684181007832", @@ -41306,15 +52809,30 @@ "total_amount": 1600, "history_id": 1684181007832, "id": 1684181007832, - "date_created": { "type": 6, "value": 1684181007832 }, - "date_last_updated": { "type": 6, "value": 1684185342475 }, - "date_of_expiration": { "type": 6, "value": 1686773007832 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684185342475 }, - "money_release_date": { "type": 6, "value": 1684185342475 }, + "date_created": { + "type": 6, + "value": 1684181007832 + }, + "date_last_updated": { + "type": 6, + "value": 1684185342475 + }, + "date_of_expiration": { + "type": 6, + "value": 1686773007832 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684185342475 + }, + "money_release_date": { + "type": 6, + "value": 1684185342475 + }, "money_release_status": "approved", "wasDebited": true }, @@ -41339,7 +52857,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 134.08 + }, "revision": "lnt02w7q020coohx3y435o1v", "revision_nr": 1, "created": 1697467093916, @@ -41348,11 +52870,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02w7q020boohx3divdgi3", "revision_nr": 1, "created": 1697467093922, "modified": 1697467093922 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02w7q020boohx3divdgi3", + "revision_nr": 1, + "created": 1697467093922, + "modified": 1697467093922 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168/details", - "content": { "type": 1, "value": {}, "revision": "lnt02w7q020aoohxchov4931", "revision_nr": 1, "created": 1697467093928, "modified": 1697467093928 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02w7q020aoohxchov4931", + "revision_nr": 1, + "created": 1697467093928, + "modified": 1697467093928 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168", @@ -41366,9 +52902,18 @@ "total_amount": 1810.08, "history_id": 1684623306168, "id": 1684623306168, - "date_created": { "type": 6, "value": 1684623306168 }, - "date_last_updated": { "type": 6, "value": 1684623306168 }, - "date_of_expiration": { "type": 6, "value": 1687215306168 }, + "date_created": { + "type": 6, + "value": 1684623306168 + }, + "date_last_updated": { + "type": 6, + "value": 1684623306168 + }, + "date_of_expiration": { + "type": 6, + "value": 1687215306168 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -41417,9 +52962,18 @@ "original_amount": 15956517, "total_amount": 15956517, "id": 1684624428265, - "date_created": { "type": 6, "value": 1684624428265 }, - "date_last_updated": { "type": 6, "value": 1684624428265 }, - "date_of_expiration": { "type": 6, "value": 1684624428265 }, + "date_created": { + "type": 6, + "value": 1684624428265 + }, + "date_last_updated": { + "type": 6, + "value": 1684624428265 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624428265 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -41449,7 +53003,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 105.92 + }, "revision": "lnt02w8w020joohxcman8jhb", "revision_nr": 1, "created": 1697467093958, @@ -41458,11 +53016,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02w8w020ioohx79fb72p4", "revision_nr": 1, "created": 1697467093963, "modified": 1697467093963 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02w8w020ioohx79fb72p4", + "revision_nr": 1, + "created": 1697467093963, + "modified": 1697467093963 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509/details", - "content": { "type": 1, "value": {}, "revision": "lnt02w8w020hoohx5kf4gvr0", "revision_nr": 1, "created": 1697467093968, "modified": 1697467093968 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02w8w020hoohx5kf4gvr0", + "revision_nr": 1, + "created": 1697467093968, + "modified": 1697467093968 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509", @@ -41476,9 +53048,18 @@ "total_amount": 1429.92, "history_id": 1684624857509, "id": 1684624857509, - "date_created": { "type": 6, "value": 1684624857509 }, - "date_last_updated": { "type": 6, "value": 1684624857509 }, - "date_of_expiration": { "type": 6, "value": 1687216857509 }, + "date_created": { + "type": 6, + "value": 1684624857509 + }, + "date_last_updated": { + "type": 6, + "value": 1684624857509 + }, + "date_of_expiration": { + "type": 6, + "value": 1687216857509 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -41527,9 +53108,18 @@ "original_amount": 6448848, "total_amount": 6448848, "id": 1684624906138, - "date_created": { "type": 6, "value": 1684624906138 }, - "date_last_updated": { "type": 6, "value": 1684624906138 }, - "date_of_expiration": { "type": 6, "value": 1684624906138 }, + "date_created": { + "type": 6, + "value": 1684624906138 + }, + "date_last_updated": { + "type": 6, + "value": 1684624906138 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624906138 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -41557,7 +53147,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687293918217/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02wa1020ooohx06n3fr19", "revision_nr": 1, "created": 1697467093998, "modified": 1697467093998 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02wa1020ooohx06n3fr19", + "revision_nr": 1, + "created": 1697467093998, + "modified": 1697467093998 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687293918217", @@ -41571,15 +53170,30 @@ "total_amount": 1000, "history_id": 1687293918217, "id": 1687293918217, - "date_created": { "type": 6, "value": 1687293918217 }, - "date_last_updated": { "type": 6, "value": 1687293955023 }, - "date_of_expiration": { "type": 6, "value": 1689885918217 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1687293955023 }, - "money_release_date": { "type": 6, "value": 1687293955023 }, + "date_created": { + "type": 6, + "value": 1687293918217 + }, + "date_last_updated": { + "type": 6, + "value": 1687293955023 + }, + "date_of_expiration": { + "type": 6, + "value": 1689885918217 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1687293955023 + }, + "money_release_date": { + "type": 6, + "value": 1687293955023 + }, "money_release_status": "approved", "wasDebited": true }, @@ -41639,9 +53253,18 @@ "total_amount": 452.52, "id": 1687294024615, "contract_id": "1684623306168", - "date_created": { "type": 6, "value": 1687294024615 }, - "date_last_updated": { "type": 6, "value": 1687294024615 }, - "date_of_expiration": { "type": 6, "value": 1687294024615 }, + "date_created": { + "type": 6, + "value": 1687294024615 + }, + "date_last_updated": { + "type": 6, + "value": 1687294024615 + }, + "date_of_expiration": { + "type": 6, + "value": 1687294024615 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -41705,9 +53328,18 @@ "total_amount": 357.48, "id": 1687294024774, "contract_id": "1684624857509", - "date_created": { "type": 6, "value": 1687294024774 }, - "date_last_updated": { "type": 6, "value": 1687294024774 }, - "date_of_expiration": { "type": 6, "value": 1687294024774 }, + "date_created": { + "type": 6, + "value": 1687294024774 + }, + "date_last_updated": { + "type": 6, + "value": 1687294024774 + }, + "date_of_expiration": { + "type": 6, + "value": 1687294024774 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -41767,9 +53399,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1688524692305, - "date_created": { "type": 6, "value": 1688524692305 }, - "date_last_updated": { "type": 6, "value": 1688524692305 }, - "date_of_expiration": { "type": 6, "value": 1691203092305 }, + "date_created": { + "type": 6, + "value": 1688524692305 + }, + "date_last_updated": { + "type": 6, + "value": 1688524692305 + }, + "date_of_expiration": { + "type": 6, + "value": 1691203092305 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -41819,9 +53460,18 @@ "original_amount": 155466, "total_amount": 155466, "id": 1688525524308, - "date_created": { "type": 6, "value": 1688525524308 }, - "date_last_updated": { "type": 6, "value": 1688525524308 }, - "date_of_expiration": { "type": 6, "value": 1688525524308 }, + "date_created": { + "type": 6, + "value": 1688525524308 + }, + "date_last_updated": { + "type": 6, + "value": 1688525524308 + }, + "date_of_expiration": { + "type": 6, + "value": 1688525524308 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -41849,7 +53499,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689182003298/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02wca0212oohx01v4g7sg", "revision_nr": 1, "created": 1697467094079, "modified": 1697467094079 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02wca0212oohx01v4g7sg", + "revision_nr": 1, + "created": 1697467094079, + "modified": 1697467094079 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689182003298", @@ -41863,15 +53522,30 @@ "total_amount": 2500000, "history_id": 1689182003298, "id": 1689182003298, - "date_created": { "type": 6, "value": 1689182003298 }, - "date_last_updated": { "type": 6, "value": 1689256552452 }, - "date_of_expiration": { "type": 6, "value": 1689182003298 }, + "date_created": { + "type": 6, + "value": 1689182003298 + }, + "date_last_updated": { + "type": 6, + "value": 1689256552452 + }, + "date_of_expiration": { + "type": 6, + "value": 1689182003298 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1689256552452 }, - "money_release_date": { "type": 6, "value": 1689256552452 }, + "date_approved": { + "type": 6, + "value": 1689256552452 + }, + "money_release_date": { + "type": 6, + "value": 1689256552452 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -41894,7 +53568,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689689388308/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02wcs0215oohx34txho7d", "revision_nr": 1, "created": 1697467094098, "modified": 1697467094098 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02wcs0215oohx34txho7d", + "revision_nr": 1, + "created": 1697467094098, + "modified": 1697467094098 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689689388308", @@ -41908,15 +53591,30 @@ "total_amount": 800, "history_id": 1689689388308, "id": 1689689388308, - "date_created": { "type": 6, "value": 1689689388308 }, - "date_last_updated": { "type": 6, "value": 1689690587708 }, - "date_of_expiration": { "type": 6, "value": 1692281388308 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689690587708 }, - "money_release_date": { "type": 6, "value": 1689690587708 }, + "date_created": { + "type": 6, + "value": 1689689388308 + }, + "date_last_updated": { + "type": 6, + "value": 1689690587708 + }, + "date_of_expiration": { + "type": 6, + "value": 1692281388308 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689690587708 + }, + "money_release_date": { + "type": 6, + "value": 1689690587708 + }, "money_release_status": "approved", "wasDebited": true }, @@ -41976,9 +53674,18 @@ "total_amount": 452.52, "id": 1689690928096, "contract_id": "1684623306168", - "date_created": { "type": 6, "value": 1689690928096 }, - "date_last_updated": { "type": 6, "value": 1689690928096 }, - "date_of_expiration": { "type": 6, "value": 1689690928096 }, + "date_created": { + "type": 6, + "value": 1689690928096 + }, + "date_last_updated": { + "type": 6, + "value": 1689690928096 + }, + "date_of_expiration": { + "type": 6, + "value": 1689690928096 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -42042,9 +53749,18 @@ "total_amount": 357.48, "id": 1689690928337, "contract_id": "1684624857509", - "date_created": { "type": 6, "value": 1689690928337 }, - "date_last_updated": { "type": 6, "value": 1689690928337 }, - "date_of_expiration": { "type": 6, "value": 1689690928337 }, + "date_created": { + "type": 6, + "value": 1689690928337 + }, + "date_last_updated": { + "type": 6, + "value": 1689690928337 + }, + "date_of_expiration": { + "type": 6, + "value": 1689690928337 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -42113,9 +53829,18 @@ "total_amount": 8160000, "id": 1691203130486, "history_id": 1691203130486, - "date_created": { "type": 6, "value": 1691203130486 }, - "date_last_updated": { "type": 6, "value": 1691203130486 }, - "date_of_expiration": { "type": 6, "value": 1691203130486 }, + "date_created": { + "type": 6, + "value": 1691203130486 + }, + "date_last_updated": { + "type": 6, + "value": 1691203130486 + }, + "date_of_expiration": { + "type": 6, + "value": 1691203130486 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -42184,9 +53909,18 @@ "total_amount": 200000, "id": 1691556958476, "history_id": 1691556958476, - "date_created": { "type": 6, "value": 1691556958476 }, - "date_last_updated": { "type": 6, "value": 1691556958476 }, - "date_of_expiration": { "type": 6, "value": 1694235358473 }, + "date_created": { + "type": 6, + "value": 1691556958476 + }, + "date_last_updated": { + "type": 6, + "value": 1691556958476 + }, + "date_of_expiration": { + "type": 6, + "value": 1694235358473 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -42255,9 +53989,18 @@ "total_amount": 30, "id": 1691557017053, "history_id": 1691557017053, - "date_created": { "type": 6, "value": 1691557017053 }, - "date_last_updated": { "type": 6, "value": 1691557017053 }, - "date_of_expiration": { "type": 6, "value": 1717909017027 }, + "date_created": { + "type": 6, + "value": 1691557017053 + }, + "date_last_updated": { + "type": 6, + "value": 1691557017053 + }, + "date_of_expiration": { + "type": 6, + "value": 1717909017027 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -42275,7 +54018,13 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694808463023 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694808463023 + } + }, "revision": "lnt02wg4021poohxb2c83n4c", "revision_nr": 1, "created": 1697467094217, @@ -42337,16 +54086,28 @@ "total_amount": 720, "id": 1692216463023, "history_id": 1692216463023, - "date_created": { "type": 6, "value": 1692216463023 }, - "date_last_updated": { "type": 6, "value": 1692217576651 }, + "date_created": { + "type": 6, + "value": 1692216463023 + }, + "date_last_updated": { + "type": 6, + "value": 1692217576651 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1692217576651 }, - "money_release_date": { "type": 6, "value": 1692217576651 }, + "date_approved": { + "type": 6, + "value": 1692217576651 + }, + "money_release_date": { + "type": 6, + "value": 1692217576651 + }, "money_release_status": "approved", "wasDebited": true }, @@ -42406,9 +54167,18 @@ "total_amount": 452.52, "id": 1692296799894, "contract_id": "1684623306168", - "date_created": { "type": 6, "value": 1692296799894 }, - "date_last_updated": { "type": 6, "value": 1692296799894 }, - "date_of_expiration": { "type": 6, "value": 1692296799894 }, + "date_created": { + "type": 6, + "value": 1692296799894 + }, + "date_last_updated": { + "type": 6, + "value": 1692296799894 + }, + "date_of_expiration": { + "type": 6, + "value": 1692296799894 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -42472,9 +54242,18 @@ "total_amount": 357.48, "id": 1692296800012, "contract_id": "1684624857509", - "date_created": { "type": 6, "value": 1692296800012 }, - "date_last_updated": { "type": 6, "value": 1692296800012 }, - "date_of_expiration": { "type": 6, "value": 1692296800012 }, + "date_created": { + "type": 6, + "value": 1692296800012 + }, + "date_last_updated": { + "type": 6, + "value": 1692296800012 + }, + "date_of_expiration": { + "type": 6, + "value": 1692296800012 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -42543,9 +54322,18 @@ "total_amount": 204000, "id": "1694237371329", "history_id": "1694237371329", - "date_created": { "type": 6, "value": 1694237371329 }, - "date_last_updated": { "type": 6, "value": 1694237371329 }, - "date_of_expiration": { "type": 6, "value": 1694237371329 }, + "date_created": { + "type": 6, + "value": 1694237371329 + }, + "date_last_updated": { + "type": 6, + "value": 1694237371329 + }, + "date_of_expiration": { + "type": 6, + "value": 1694237371329 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -42614,16 +54402,28 @@ "total_amount": 1030591, "id": "1694237443497", "history_id": "1694237443497", - "date_created": { "type": 6, "value": 1694237443497 }, - "date_last_updated": { "type": 6, "value": 1696462319577 }, - "date_of_expiration": { "type": 6, "value": 1696829443496 }, + "date_created": { + "type": 6, + "value": 1694237443497 + }, + "date_last_updated": { + "type": 6, + "value": 1696462319577 + }, + "date_of_expiration": { + "type": 6, + "value": 1696829443496 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": { "type": 6, "value": 1696462319577 }, + "money_release_date": { + "type": 6, + "value": 1696462319577 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -42637,7 +54437,13 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697304530286 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697304530286 + } + }, "revision": "lnt02wj90228oohx4nf877y3", "revision_nr": 1, "created": 1697467094331, @@ -42699,16 +54505,28 @@ "total_amount": 820, "id": "1694712530286", "history_id": "1694712530286", - "date_created": { "type": 6, "value": 1694712530286 }, - "date_last_updated": { "type": 6, "value": 1694717255639 }, + "date_created": { + "type": 6, + "value": 1694712530286 + }, + "date_last_updated": { + "type": 6, + "value": 1694717255639 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694717255639 }, - "money_release_date": { "type": 6, "value": 1694717255639 }, + "date_approved": { + "type": 6, + "value": 1694717255639 + }, + "money_release_date": { + "type": 6, + "value": 1694717255639 + }, "money_release_status": "approved", "wasDebited": true }, @@ -42775,9 +54593,18 @@ "total_amount": 452.52, "id": "1694723447405", "history_id": "1694723447405", - "date_created": { "type": 6, "value": 1694723447405 }, - "date_last_updated": { "type": 6, "value": 1694723447405 }, - "date_of_expiration": { "type": 6, "value": 1694723447405 }, + "date_created": { + "type": 6, + "value": 1694723447405 + }, + "date_last_updated": { + "type": 6, + "value": 1694723447405 + }, + "date_of_expiration": { + "type": 6, + "value": 1694723447405 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -42848,9 +54675,18 @@ "total_amount": 357.48, "id": "1694723447463", "history_id": "1694723447463", - "date_created": { "type": 6, "value": 1694723447463 }, - "date_last_updated": { "type": 6, "value": 1694723447463 }, - "date_of_expiration": { "type": 6, "value": 1694723447463 }, + "date_created": { + "type": 6, + "value": 1694723447463 + }, + "date_last_updated": { + "type": 6, + "value": 1694723447463 + }, + "date_of_expiration": { + "type": 6, + "value": 1694723447463 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -42920,9 +54756,18 @@ "total_amount": 8000000, "id": "1696464489805", "history_id": "1696464489805", - "date_created": { "type": 6, "value": 1696464489805 }, - "date_last_updated": { "type": 6, "value": 1696464489805 }, - "date_of_expiration": { "type": 6, "value": 1699142889771 }, + "date_created": { + "type": 6, + "value": 1696464489805 + }, + "date_last_updated": { + "type": 6, + "value": 1696464489805 + }, + "date_of_expiration": { + "type": 6, + "value": 1699142889771 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -42938,7 +54783,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history", - "content": { "type": 1, "value": {}, "revision": "lnt02w730204oohx35gcfx51", "revision_nr": 1, "created": 1697467094431, "modified": 1697467094431 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02w730204oohx35gcfx51", + "revision_nr": 1, + "created": 1697467094431, + "modified": 1697467094431 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168/description", @@ -42955,7 +54807,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 134.08 + }, "revision": "lnt02wme022uoohxhevm8ixx", "revision_nr": 1, "created": 1697467094444, @@ -42964,7 +54820,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02wme022toohx4tlt9s3m", "revision_nr": 1, "created": 1697467094449, "modified": 1697467094449 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02wme022toohx4tlt9s3m", + "revision_nr": 1, + "created": 1697467094449, + "modified": 1697467094449 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168", @@ -42977,7 +54840,10 @@ "total_amount": 1810.08, "installments": 4, "installment_amount": 452.52, - "date_created": { "type": 6, "value": 1684623306168 }, + "date_created": { + "type": 6, + "value": 1684623306168 + }, "history_id": 1684623306168, "currency_id": "BRL", "status": "paid" @@ -43003,7 +54869,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 105.92 + }, "revision": "lnt02wn0022yoohxgqbgaiur", "revision_nr": 1, "created": 1697467094466, @@ -43012,7 +54882,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02wn0022xoohxcjlj26hz", "revision_nr": 1, "created": 1697467094471, "modified": 1697467094471 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02wn0022xoohxcjlj26hz", + "revision_nr": 1, + "created": 1697467094471, + "modified": 1697467094471 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509", @@ -43025,7 +54902,10 @@ "total_amount": 1429.92, "installments": 4, "installment_amount": 357.48, - "date_created": { "type": 6, "value": 1684624857509 }, + "date_created": { + "type": 6, + "value": 1684624857509 + }, "history_id": 1684624857509, "currency_id": "BRL", "status": "paid" @@ -43038,7 +54918,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt02wm8022qoohxc3vva1vb", "revision_nr": 1, "created": 1697467094483, "modified": 1697467094483 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02wm8022qoohxc3vva1vb", + "revision_nr": 1, + "created": 1697467094483, + "modified": 1697467094483 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168/description", @@ -43055,7 +54942,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 134.08 + }, "revision": "lnt02wnu0233oohx8ujcfa0s", "revision_nr": 1, "created": 1697467094496, @@ -43064,7 +54955,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02wnu0232oohx7gy7e29t", "revision_nr": 1, "created": 1697467094502, "modified": 1697467094502 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02wnu0232oohx7gy7e29t", + "revision_nr": 1, + "created": 1697467094502, + "modified": 1697467094502 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168", @@ -43077,7 +54975,10 @@ "total_amount": 1810.08, "installments": 4, "installment_amount": 452.52, - "date_created": { "type": 6, "value": 1684623306168 }, + "date_created": { + "type": 6, + "value": 1684623306168 + }, "history_id": 1684623306168, "currency_id": "BRL", "status": "paid" @@ -43103,7 +55004,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 105.92 + }, "revision": "lnt02woh0237oohx02y95yjj", "revision_nr": 1, "created": 1697467094519, @@ -43112,7 +55017,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02woh0236oohx6pq59wdw", "revision_nr": 1, "created": 1697467094526, "modified": 1697467094526 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02woh0236oohx6pq59wdw", + "revision_nr": 1, + "created": 1697467094526, + "modified": 1697467094526 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509", @@ -43125,7 +55037,10 @@ "total_amount": 1429.92, "installments": 4, "installment_amount": 357.48, - "date_created": { "type": 6, "value": 1684624857509 }, + "date_created": { + "type": 6, + "value": 1684624857509 + }, "history_id": 1684624857509, "currency_id": "BRL", "status": "paid" @@ -43138,7 +55053,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt02wnn022zoohxdba5herq", "revision_nr": 1, "created": 1697467094538, "modified": 1697467094538 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02wnn022zoohxdba5herq", + "revision_nr": 1, + "created": 1697467094538, + "modified": 1697467094538 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168/description", @@ -43155,7 +55077,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 134.08 + }, "revision": "lnt02wpc023coohxd6z65sc0", "revision_nr": 1, "created": 1697467094549, @@ -43164,7 +55090,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02wpc023boohx5i757pyd", "revision_nr": 1, "created": 1697467094556, "modified": 1697467094556 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02wpc023boohx5i757pyd", + "revision_nr": 1, + "created": 1697467094556, + "modified": 1697467094556 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168", @@ -43177,7 +55110,10 @@ "total_amount": 1810.08, "installments": 4, "installment_amount": 452.52, - "date_created": { "type": 6, "value": 1684623306168 }, + "date_created": { + "type": 6, + "value": 1684623306168 + }, "history_id": 1684623306168, "currency_id": "BRL", "status": "paid" @@ -43203,7 +55139,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 105.92 + }, "revision": "lnt02wpz023goohx37jw6c94", "revision_nr": 1, "created": 1697467094572, @@ -43212,7 +55152,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02wpz023foohx5dsudunv", "revision_nr": 1, "created": 1697467094578, "modified": 1697467094578 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02wpz023foohx5dsudunv", + "revision_nr": 1, + "created": 1697467094578, + "modified": 1697467094578 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509", @@ -43225,7 +55172,10 @@ "total_amount": 1429.92, "installments": 4, "installment_amount": 357.48, - "date_created": { "type": 6, "value": 1684624857509 }, + "date_created": { + "type": 6, + "value": 1684624857509 + }, "history_id": 1684624857509, "currency_id": "BRL", "status": "paid" @@ -43238,7 +55188,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308", - "content": { "type": 1, "value": {}, "revision": "lnt02wp60238oohx8h517kvp", "revision_nr": 1, "created": 1697467094591, "modified": 1697467094591 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02wp60238oohx8h517kvp", + "revision_nr": 1, + "created": 1697467094591, + "modified": 1697467094591 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168/description", @@ -43255,7 +55212,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 134.08 + }, "revision": "lnt02wqt023loohx7hhwfaaw", "revision_nr": 1, "created": 1697467094603, @@ -43264,7 +55225,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02wqt023koohxcia28fb0", "revision_nr": 1, "created": 1697467094610, "modified": 1697467094610 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02wqt023koohxcia28fb0", + "revision_nr": 1, + "created": 1697467094610, + "modified": 1697467094610 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168", @@ -43277,11 +55245,17 @@ "total_amount": 1810.08, "installments": 4, "installment_amount": 452.52, - "date_created": { "type": 6, "value": 1684623306168 }, + "date_created": { + "type": 6, + "value": 1684623306168 + }, "history_id": 1684623306168, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1694723447423 } + "date_last_updated": { + "type": 6, + "value": 1694723447423 + } }, "revision": "lnt02wqn023ioohx44j7di3w", "revision_nr": 1, @@ -43304,7 +55278,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 105.92 + }, "revision": "lnt02wri023poohx7m3a9bkv", "revision_nr": 1, "created": 1697467094627, @@ -43313,7 +55291,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02wri023ooohxdz416n0d", "revision_nr": 1, "created": 1697467094633, "modified": 1697467094633 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02wri023ooohxdz416n0d", + "revision_nr": 1, + "created": 1697467094633, + "modified": 1697467094633 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509", @@ -43326,11 +55311,17 @@ "total_amount": 1429.92, "installments": 4, "installment_amount": 357.48, - "date_created": { "type": 6, "value": 1684624857509 }, + "date_created": { + "type": 6, + "value": 1684624857509 + }, "history_id": 1684624857509, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1694723447480 } + "date_last_updated": { + "type": 6, + "value": 1694723447480 + } }, "revision": "lnt02wrc023moohx5awbci3j", "revision_nr": 1, @@ -43340,17 +55331,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309", - "content": { "type": 1, "value": {}, "revision": "lnt02wqn023hoohxd6jvcjaj", "revision_nr": 1, "created": 1697467094644, "modified": 1697467094644 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02wqn023hoohxd6jvcjaj", + "revision_nr": 1, + "created": 1697467094644, + "modified": 1697467094644 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt02wm8022poohxg1y623mu", "revision_nr": 1, "created": 1697467094650, "modified": 1697467094650 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02wm8022poohxg1y623mu", + "revision_nr": 1, + "created": 1697467094650, + "modified": 1697467094650 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit", "content": { "type": 1, - "value": { "approvedLimit": 3000, "limitUsed": 750, "analysisRequested": { "type": 6, "value": 1684185845062 }, "lastReview": { "type": 6, "value": 1684186352172 } }, + "value": { + "approvedLimit": 3000, + "limitUsed": 750, + "analysisRequested": { + "type": 6, + "value": 1684185845062 + }, + "lastReview": { + "type": 6, + "value": 1684186352172 + } + }, "revision": "lnt02wm7022ooohx4km2cy2x", "revision_nr": 1, "created": 1697467094656, @@ -43361,7 +55377,16 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910", "content": { "type": 1, - "value": { "dataModificacao": 1684180740501, "dateValidity": 1684180740501, "totalValue": 6472.835, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696561200000 } }, + "value": { + "dataModificacao": 1684180740501, + "dateValidity": 1684180740501, + "totalValue": 6472.835, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } + }, "revision": "lnt02w6n0200oohx0u975e6s", "revision_nr": 1, "created": 1697467094662, @@ -43372,7 +55397,14 @@ "path": "ivipcoin-db::__movement_wallet__/072270616449276800", "content": { "type": 1, - "value": { "dataModificacao": 1683670601575, "dateValidity": 1683670601575, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1683670601575, + "dateValidity": 1683670601575, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02wsm023qoohx3uw46syo", "revision_nr": 1, "created": 1697467094669, @@ -43383,7 +55415,11 @@ "path": "ivipcoin-db::__movement_wallet__/072316538247009010/balances/BRL", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, "revision": "lnt02wst023toohxdqosddfu", "revision_nr": 1, "created": 1697467094676, @@ -43394,7 +55430,11 @@ "path": "ivipcoin-db::__movement_wallet__/072316538247009010/balances/IVIP", "content": { "type": 1, - "value": { "available": "44999.00000000", "symbol": "IVIP", "value": 15.26 }, + "value": { + "available": "44999.00000000", + "symbol": "IVIP", + "value": 15.26 + }, "revision": "lnt02wt0023uoohxb1v8dlsp", "revision_nr": 1, "created": 1697467094681, @@ -43403,7 +55443,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02wst023soohx8ruk3dkq", "revision_nr": 1, "created": 1697467094687, "modified": 1697467094687 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02wst023soohx8ruk3dkq", + "revision_nr": 1, + "created": 1697467094687, + "modified": 1697467094687 + } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689017003664/description", @@ -43418,7 +55465,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689017003664/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02wth023yoohx04d3bekc", "revision_nr": 1, "created": 1697467094700, "modified": 1697467094700 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02wth023yoohx04d3bekc", + "revision_nr": 1, + "created": 1697467094700, + "modified": 1697467094700 + } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689017003664", @@ -43432,15 +55488,30 @@ "total_amount": 50, "history_id": 1689017003664, "id": 1689017003664, - "date_created": { "type": 6, "value": 1689017003664 }, - "date_last_updated": { "type": 6, "value": 1689025727768 }, - "date_of_expiration": { "type": 6, "value": 1691609003664 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689025727768 }, - "money_release_date": { "type": 6, "value": 1689025727768 }, + "date_created": { + "type": 6, + "value": 1689017003664 + }, + "date_last_updated": { + "type": 6, + "value": 1689025727768 + }, + "date_of_expiration": { + "type": 6, + "value": 1691609003664 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689025727768 + }, + "money_release_date": { + "type": 6, + "value": 1689025727768 + }, "money_release_status": "approved", "wasDebited": true }, @@ -43486,9 +55557,18 @@ "original_amount": 44999, "total_amount": 44999, "id": 1689029121257, - "date_created": { "type": 6, "value": 1689029121257 }, - "date_last_updated": { "type": 6, "value": 1689029121257 }, - "date_of_expiration": { "type": 6, "value": 1689029121257 }, + "date_created": { + "type": 6, + "value": 1689029121257 + }, + "date_last_updated": { + "type": 6, + "value": 1689029121257 + }, + "date_of_expiration": { + "type": 6, + "value": 1689029121257 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -43505,13 +55585,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history", - "content": { "type": 1, "value": {}, "revision": "lnt02wtb023voohxdmzyhik3", "revision_nr": 1, "created": 1697467094726, "modified": 1697467094726 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02wtb023voohxdmzyhik3", + "revision_nr": 1, + "created": 1697467094726, + "modified": 1697467094726 + } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02wue0241oohx2g5ifhut", "revision_nr": 1, "created": 1697467094732, @@ -43522,7 +55613,13 @@ "path": "ivipcoin-db::__movement_wallet__/072316538247009010", "content": { "type": 1, - "value": { "dataModificacao": 1689016980183, "dateValidity": 1689016980183, "totalValue": 10.2, "currencyType": "USD", "balancesModificacao": 1689822000000 }, + "value": { + "dataModificacao": 1689016980183, + "dateValidity": 1689016980183, + "totalValue": 10.2, + "currencyType": "USD", + "balancesModificacao": 1689822000000 + }, "revision": "lnt02wst023roohx0wm73nyn", "revision_nr": 1, "created": 1697467094738, @@ -43533,7 +55630,11 @@ "path": "ivipcoin-db::__movement_wallet__/072402089290148910/balances/BRL", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, "revision": "lnt02wuq0244oohx2ksz14gn", "revision_nr": 1, "created": 1697467094744, @@ -43544,7 +55645,11 @@ "path": "ivipcoin-db::__movement_wallet__/072402089290148910/balances/IVIP", "content": { "type": 1, - "value": { "available": "88319.00000000", "symbol": "IVIP", "value": 24.34 }, + "value": { + "available": "88319.00000000", + "symbol": "IVIP", + "value": 24.34 + }, "revision": "lnt02wuw0245oohx3v3lga6r", "revision_nr": 1, "created": 1697467094750, @@ -43553,7 +55658,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02wuq0243oohxclj4h6wb", "revision_nr": 1, "created": 1697467094757, "modified": 1697467094757 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02wuq0243oohxclj4h6wb", + "revision_nr": 1, + "created": 1697467094757, + "modified": 1697467094757 + } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684153197656/description", @@ -43568,7 +55680,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684153197656/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02wvg0249oohx9bw28rqu", "revision_nr": 1, "created": 1697467094771, "modified": 1697467094771 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02wvg0249oohx9bw28rqu", + "revision_nr": 1, + "created": 1697467094771, + "modified": 1697467094771 + } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684153197656", @@ -43582,15 +55703,30 @@ "total_amount": 100, "history_id": 1684153197656, "id": 1684153197656, - "date_created": { "type": 6, "value": 1684153197656 }, - "date_last_updated": { "type": 6, "value": 1684153475791 }, - "date_of_expiration": { "type": 6, "value": 1686745197656 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684153475791 }, - "money_release_date": { "type": 6, "value": 1684153475791 }, + "date_created": { + "type": 6, + "value": 1684153197656 + }, + "date_last_updated": { + "type": 6, + "value": 1684153475791 + }, + "date_of_expiration": { + "type": 6, + "value": 1686745197656 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684153475791 + }, + "money_release_date": { + "type": 6, + "value": 1684153475791 + }, "money_release_status": "approved", "wasDebited": true }, @@ -43636,9 +55772,18 @@ "original_amount": 488292, "total_amount": 488292, "id": 1684634671417, - "date_created": { "type": 6, "value": 1684634671417 }, - "date_last_updated": { "type": 6, "value": 1684634671417 }, - "date_of_expiration": { "type": 6, "value": 1684634671417 }, + "date_created": { + "type": 6, + "value": 1684634671417 + }, + "date_last_updated": { + "type": 6, + "value": 1684634671417 + }, + "date_of_expiration": { + "type": 6, + "value": 1684634671417 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -43666,7 +55811,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685124719970/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02wwe024eoohxbmeu4gz8", "revision_nr": 1, "created": 1697467094806, "modified": 1697467094806 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02wwe024eoohxbmeu4gz8", + "revision_nr": 1, + "created": 1697467094806, + "modified": 1697467094806 + } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685124719970", @@ -43680,15 +55834,30 @@ "total_amount": 120, "history_id": 1685124719970, "id": 1685124719970, - "date_created": { "type": 6, "value": 1685124719970 }, - "date_last_updated": { "type": 6, "value": 1685364677545 }, - "date_of_expiration": { "type": 6, "value": 1687716719970 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685364677545 }, - "money_release_date": { "type": 6, "value": 1685364677545 }, + "date_created": { + "type": 6, + "value": 1685124719970 + }, + "date_last_updated": { + "type": 6, + "value": 1685364677545 + }, + "date_of_expiration": { + "type": 6, + "value": 1687716719970 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685364677545 + }, + "money_release_date": { + "type": 6, + "value": 1685364677545 + }, "money_release_status": "approved", "wasDebited": true }, @@ -43711,7 +55880,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685203508718/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02wx1024hoohxev5mgend", "revision_nr": 1, "created": 1697467094828, "modified": 1697467094828 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02wx1024hoohxev5mgend", + "revision_nr": 1, + "created": 1697467094828, + "modified": 1697467094828 + } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685203508718", @@ -43725,15 +55903,30 @@ "total_amount": 1510, "history_id": 1685203508718, "id": 1685203508718, - "date_created": { "type": 6, "value": 1685203508718 }, - "date_last_updated": { "type": 6, "value": 1685211121604 }, - "date_of_expiration": { "type": 6, "value": 1687795508718 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685211121604 }, - "money_release_date": { "type": 6, "value": 1685211121604 }, + "date_created": { + "type": 6, + "value": 1685203508718 + }, + "date_last_updated": { + "type": 6, + "value": 1685211121604 + }, + "date_of_expiration": { + "type": 6, + "value": 1687795508718 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685211121604 + }, + "money_release_date": { + "type": 6, + "value": 1685211121604 + }, "money_release_status": "approved", "wasDebited": true }, @@ -43779,9 +55972,18 @@ "original_amount": 5725017, "total_amount": 5725017, "id": 1685744132878, - "date_created": { "type": 6, "value": 1685744132878 }, - "date_last_updated": { "type": 6, "value": 1685744132878 }, - "date_of_expiration": { "type": 6, "value": 1685744132878 }, + "date_created": { + "type": 6, + "value": 1685744132878 + }, + "date_last_updated": { + "type": 6, + "value": 1685744132878 + }, + "date_of_expiration": { + "type": 6, + "value": 1685744132878 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -43809,7 +56011,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1687787978807/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02wy3024moohxhteg8npx", "revision_nr": 1, "created": 1697467094865, "modified": 1697467094865 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02wy3024moohxhteg8npx", + "revision_nr": 1, + "created": 1697467094865, + "modified": 1697467094865 + } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1687787978807", @@ -43823,15 +56034,30 @@ "total_amount": 5122916, "history_id": 1687787978807, "id": 1687787978807, - "date_created": { "type": 6, "value": 1687787978807 }, - "date_last_updated": { "type": 6, "value": 1687975273708 }, - "date_of_expiration": { "type": 6, "value": 1687787978807 }, + "date_created": { + "type": 6, + "value": 1687787978807 + }, + "date_last_updated": { + "type": 6, + "value": 1687975273708 + }, + "date_of_expiration": { + "type": 6, + "value": 1687787978807 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1687975273708 }, - "money_release_date": { "type": 6, "value": 1687975273708 }, + "date_approved": { + "type": 6, + "value": 1687975273708 + }, + "money_release_date": { + "type": 6, + "value": 1687975273708 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -43854,7 +56080,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1688549736848/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02wyl024poohxeybn1p62", "revision_nr": 1, "created": 1697467094883, "modified": 1697467094883 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02wyl024poohxeybn1p62", + "revision_nr": 1, + "created": 1697467094883, + "modified": 1697467094883 + } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1688549736848", @@ -43868,15 +56103,30 @@ "total_amount": 1002074, "history_id": 1688549736848, "id": 1688549736848, - "date_created": { "type": 6, "value": 1688549736848 }, - "date_last_updated": { "type": 6, "value": 1688562736770 }, - "date_of_expiration": { "type": 6, "value": 1688549736848 }, + "date_created": { + "type": 6, + "value": 1688549736848 + }, + "date_last_updated": { + "type": 6, + "value": 1688562736770 + }, + "date_of_expiration": { + "type": 6, + "value": 1688549736848 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1688562736770 }, - "money_release_date": { "type": 6, "value": 1688562736770 }, + "date_approved": { + "type": 6, + "value": 1688562736770 + }, + "money_release_date": { + "type": 6, + "value": 1688562736770 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -43941,17 +56191,32 @@ "total_amount": 88319, "id": 1690225683361, "history_id": 1690225683361, - "date_created": { "type": 6, "value": 1690225683361 }, - "date_last_updated": { "type": 6, "value": 1690398452462 }, - "date_of_expiration": { "type": 6, "value": 1690225683361 }, + "date_created": { + "type": 6, + "value": 1690225683361 + }, + "date_last_updated": { + "type": 6, + "value": 1690398452462 + }, + "date_of_expiration": { + "type": 6, + "value": 1690225683361 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1690398452462 }, - "money_release_date": { "type": 6, "value": 1690398452462 }, + "date_approved": { + "type": 6, + "value": 1690398452462 + }, + "money_release_date": { + "type": 6, + "value": 1690398452462 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -43963,13 +56228,32 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history", - "content": { "type": 1, "value": {}, "revision": "lnt02wv90246oohx5tajb4n1", "revision_nr": 1, "created": 1697467094920, "modified": 1697467094920 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02wv90246oohx5tajb4n1", + "revision_nr": 1, + "created": 1697467094920, + "modified": 1697467094920 + } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/credit", "content": { "type": 1, - "value": { "approvedLimit": 3000, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1687788045586 }, "lastReview": { "type": 6, "value": 1687975284723 } }, + "value": { + "approvedLimit": 3000, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1687788045586 + }, + "lastReview": { + "type": 6, + "value": 1687975284723 + } + }, "revision": "lnt02wzt024uoohxhn3145ai", "revision_nr": 1, "created": 1697467094926, @@ -43980,7 +56264,13 @@ "path": "ivipcoin-db::__movement_wallet__/072402089290148910", "content": { "type": 1, - "value": { "dataModificacao": 1684153171860, "dateValidity": 1684153171860, "totalValue": 6.86, "currencyType": "USD", "balancesModificacao": 1690398452515 }, + "value": { + "dataModificacao": 1684153171860, + "dateValidity": 1684153171860, + "totalValue": 6.86, + "currencyType": "USD", + "balancesModificacao": 1690398452515 + }, "revision": "lnt02wuq0242oohxa7wg2fna", "revision_nr": 1, "created": 1697467094932, @@ -43991,7 +56281,13 @@ "path": "ivipcoin-db::__movement_wallet__/073789164441763200", "content": { "type": 1, - "value": { "dataModificacao": 1696199966019, "dateValidity": 1696199966060, "balances": {}, "history": {}, "currencyType": "USD" }, + "value": { + "dataModificacao": 1696199966019, + "dateValidity": 1696199966060, + "balances": {}, + "history": {}, + "currencyType": "USD" + }, "revision": "lnt02x04024voohxc05hab8g", "revision_nr": 1, "created": 1697467094938, @@ -44011,7 +56307,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/074981242324574820/history/1678088421430/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02x0h0250oohx0iqr2a7z", "revision_nr": 1, "created": 1697467094950, "modified": 1697467094950 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02x0h0250oohx0iqr2a7z", + "revision_nr": 1, + "created": 1697467094950, + "modified": 1697467094950 + } }, { "path": "ivipcoin-db::__movement_wallet__/074981242324574820/history/1678088421430", @@ -44025,14 +56330,26 @@ "total_amount": 20, "history_id": 1678088421430, "id": 1678088421430, - "date_created": { "type": 6, "value": 1678088421430 }, - "date_last_updated": { "type": 6, "value": 1678715837019 }, - "date_of_expiration": { "type": 6, "value": 1680680421430 }, + "date_created": { + "type": 6, + "value": 1678088421430 + }, + "date_last_updated": { + "type": 6, + "value": 1678715837019 + }, + "date_of_expiration": { + "type": 6, + "value": 1680680421430 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678715837019 }, + "money_release_date": { + "type": 6, + "value": 1678715837019 + }, "money_release_status": "rejected" }, "revision": "lnt02x0a024yoohxgh18c9pe", @@ -44043,13 +56360,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/074981242324574820/history", - "content": { "type": 1, "value": {}, "revision": "lnt02x0a024xoohxgfde0qxl", "revision_nr": 1, "created": 1697467094964, "modified": 1697467094964 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02x0a024xoohxgfde0qxl", + "revision_nr": 1, + "created": 1697467094964, + "modified": 1697467094964 + } }, { "path": "ivipcoin-db::__movement_wallet__/074981242324574820", "content": { "type": 1, - "value": { "dataModificacao": 1677902662156, "dateValidity": 1678146242488, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677902662156, + "dateValidity": 1678146242488, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02x0a024woohx00io1btr", "revision_nr": 1, "created": 1697467094969, @@ -44060,7 +56390,11 @@ "path": "ivipcoin-db::__movement_wallet__/075270012379589070/balances/BRL", "content": { "type": 1, - "value": { "available": "30.00000000", "symbol": "BRL", "value": 6.28 }, + "value": { + "available": "30.00000000", + "symbol": "BRL", + "value": 6.28 + }, "revision": "lnt02x150253oohxgaq741qg", "revision_nr": 1, "created": 1697467094977, @@ -44069,7 +56403,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02x150252oohx123w6upf", "revision_nr": 1, "created": 1697467094982, "modified": 1697467094982 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02x150252oohx123w6upf", + "revision_nr": 1, + "created": 1697467094982, + "modified": 1697467094982 + } }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history/1689767358341/description", @@ -44084,7 +56425,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history/1689767358341/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02x1o0257oohx7xza9e0r", "revision_nr": 1, "created": 1697467094994, "modified": 1697467094994 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02x1o0257oohx7xza9e0r", + "revision_nr": 1, + "created": 1697467094994, + "modified": 1697467094994 + } }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history/1689767358341", @@ -44098,15 +56448,30 @@ "total_amount": 30, "history_id": 1689767358341, "id": 1689767358341, - "date_created": { "type": 6, "value": 1689767358341 }, - "date_last_updated": { "type": 6, "value": 1690408278554 }, - "date_of_expiration": { "type": 6, "value": 1692359358341 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1690408278554 }, - "money_release_date": { "type": 6, "value": 1690408278554 }, + "date_created": { + "type": 6, + "value": 1689767358341 + }, + "date_last_updated": { + "type": 6, + "value": 1690408278554 + }, + "date_of_expiration": { + "type": 6, + "value": 1692359358341 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1690408278554 + }, + "money_release_date": { + "type": 6, + "value": 1690408278554 + }, "money_release_status": "approved", "wasDebited": true }, @@ -44118,13 +56483,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history", - "content": { "type": 1, "value": {}, "revision": "lnt02x1i0254oohx7au4gokq", "revision_nr": 1, "created": 1697467095006, "modified": 1697467095006 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02x1i0254oohx7au4gokq", + "revision_nr": 1, + "created": 1697467095006, + "modified": 1697467095006 + } }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02x260258oohxgovk92du", "revision_nr": 1, "created": 1697467095011, @@ -44135,7 +56511,13 @@ "path": "ivipcoin-db::__movement_wallet__/075270012379589070", "content": { "type": 1, - "value": { "dataModificacao": 1689767257899, "dateValidity": 1689767257899, "totalValue": 0, "currencyType": "USD", "balancesModificacao": 1690416536434 }, + "value": { + "dataModificacao": 1689767257899, + "dateValidity": 1689767257899, + "totalValue": 0, + "currencyType": "USD", + "balancesModificacao": 1690416536434 + }, "revision": "lnt02x150251oohx85sm08si", "revision_nr": 1, "created": 1697467095017, @@ -44146,7 +56528,11 @@ "path": "ivipcoin-db::__movement_wallet__/075429520947661650/balances/BRL", "content": { "type": 1, - "value": { "available": "186.00000000", "symbol": "BRL", "value": 36.47 }, + "value": { + "available": "186.00000000", + "symbol": "BRL", + "value": 36.47 + }, "revision": "lnt02x2h025boohx8xk0c7ni", "revision_nr": 1, "created": 1697467095025, @@ -44155,7 +56541,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02x2h025aoohxf6obgypi", "revision_nr": 1, "created": 1697467095031, "modified": 1697467095031 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02x2h025aoohxf6obgypi", + "revision_nr": 1, + "created": 1697467095031, + "modified": 1697467095031 + } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1684093506914/description", @@ -44170,7 +56563,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1684093506914/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02x31025foohx5c3ibwed", "revision_nr": 1, "created": 1697467095044, "modified": 1697467095044 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02x31025foohx5c3ibwed", + "revision_nr": 1, + "created": 1697467095044, + "modified": 1697467095044 + } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1684093506914", @@ -44184,15 +56586,30 @@ "total_amount": 240, "history_id": 1684093506914, "id": 1684093506914, - "date_created": { "type": 6, "value": 1684093506914 }, - "date_last_updated": { "type": 6, "value": 1684096086351 }, - "date_of_expiration": { "type": 6, "value": 1686685506914 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684096086351 }, - "money_release_date": { "type": 6, "value": 1684096086351 }, + "date_created": { + "type": 6, + "value": 1684093506914 + }, + "date_last_updated": { + "type": 6, + "value": 1684096086351 + }, + "date_of_expiration": { + "type": 6, + "value": 1686685506914 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684096086351 + }, + "money_release_date": { + "type": 6, + "value": 1684096086351 + }, "money_release_status": "approved", "wasDebited": true }, @@ -44248,9 +56665,18 @@ "original_amount": 54, "total_amount": 54, "id": 1689771495719, - "date_created": { "type": 6, "value": 1689771495719 }, - "date_last_updated": { "type": 6, "value": 1689771495719 }, - "date_of_expiration": { "type": 6, "value": 1716123495719 }, + "date_created": { + "type": 6, + "value": 1689771495719 + }, + "date_last_updated": { + "type": 6, + "value": 1689771495719 + }, + "date_of_expiration": { + "type": 6, + "value": 1716123495719 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -44266,13 +56692,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history", - "content": { "type": 1, "value": {}, "revision": "lnt02x2v025coohxa23d7h8c", "revision_nr": 1, "created": 1697467095073, "modified": 1697467095073 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02x2v025coohxa23d7h8c", + "revision_nr": 1, + "created": 1697467095073, + "modified": 1697467095073 + } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02x41025joohxdkq637ha", "revision_nr": 1, "created": 1697467095079, @@ -44288,7 +56725,10 @@ "dateValidity": 1684093342801, "totalValue": 38.464800000000004, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1697425200000 } + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } }, "revision": "lnt02x2h0259oohxaj0e20hm", "revision_nr": 1, @@ -44300,7 +56740,11 @@ "path": "ivipcoin-db::__movement_wallet__/076012264992064480/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02x4d025loohxgg9odpuc", "revision_nr": 1, "created": 1697467095092, @@ -44318,7 +56762,10 @@ "history": {}, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1697079600000 } + "balancesModificacao": { + "type": 6, + "value": 1697079600000 + } }, "revision": "lnt02x4d025koohxdtxce1s6", "revision_nr": 1, @@ -44330,7 +56777,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/balances/IVIP", "content": { "type": 1, - "value": { "available": "932705.00000000", "symbol": "IVIP", "value": 508.13 }, + "value": { + "available": "932705.00000000", + "symbol": "IVIP", + "value": 508.13 + }, "revision": "lnt02x4q025ooohx3v8khwfo", "revision_nr": 1, "created": 1697467095104, @@ -44339,7 +56790,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02x4q025noohx8grkb1ww", "revision_nr": 1, "created": 1697467095111, "modified": 1697467095111 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02x4q025noohx8grkb1ww", + "revision_nr": 1, + "created": 1697467095111, + "modified": 1697467095111 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1683069444271/description", @@ -44354,7 +56812,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1683069444271/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02x59025soohxbkyn6tf5", "revision_nr": 1, "created": 1697467095123, "modified": 1697467095123 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02x59025soohxbkyn6tf5", + "revision_nr": 1, + "created": 1697467095123, + "modified": 1697467095123 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1683069444271", @@ -44368,15 +56835,30 @@ "total_amount": 100, "history_id": 1683069444271, "id": 1683069444271, - "date_created": { "type": 6, "value": 1683069444271 }, - "date_last_updated": { "type": 6, "value": 1684153250305 }, - "date_of_expiration": { "type": 6, "value": 1685661444271 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684153250305 }, - "money_release_date": { "type": 6, "value": 1684153250305 }, + "date_created": { + "type": 6, + "value": 1683069444271 + }, + "date_last_updated": { + "type": 6, + "value": 1684153250305 + }, + "date_of_expiration": { + "type": 6, + "value": 1685661444271 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684153250305 + }, + "money_release_date": { + "type": 6, + "value": 1684153250305 + }, "money_release_status": "approved", "wasDebited": true }, @@ -44399,7 +56881,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684135234297/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02x5q025voohx70f212jj", "revision_nr": 1, "created": 1697467095140, "modified": 1697467095140 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02x5q025voohx70f212jj", + "revision_nr": 1, + "created": 1697467095140, + "modified": 1697467095140 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684135234297", @@ -44413,15 +56904,30 @@ "total_amount": 100, "history_id": 1684135234297, "id": 1684135234297, - "date_created": { "type": 6, "value": 1684135234297 }, - "date_last_updated": { "type": 6, "value": 1684190546714 }, - "date_of_expiration": { "type": 6, "value": 1686727234297 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684190546714 }, - "money_release_date": { "type": 6, "value": 1684190546714 }, + "date_created": { + "type": 6, + "value": 1684135234297 + }, + "date_last_updated": { + "type": 6, + "value": 1684190546714 + }, + "date_of_expiration": { + "type": 6, + "value": 1686727234297 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684190546714 + }, + "money_release_date": { + "type": 6, + "value": 1684190546714 + }, "money_release_status": "approved", "wasDebited": true }, @@ -44444,7 +56950,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684178465791/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02x69025yoohx31rm0hrc", "revision_nr": 1, "created": 1697467095160, "modified": 1697467095160 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02x69025yoohx31rm0hrc", + "revision_nr": 1, + "created": 1697467095160, + "modified": 1697467095160 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684178465791", @@ -44458,15 +56973,30 @@ "total_amount": 100, "history_id": 1684178465791, "id": 1684178465791, - "date_created": { "type": 6, "value": 1684178465791 }, - "date_last_updated": { "type": 6, "value": 1684181715990 }, - "date_of_expiration": { "type": 6, "value": 1686770465791 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684181715990 }, - "money_release_date": { "type": 6, "value": 1684181715990 }, + "date_created": { + "type": 6, + "value": 1684178465791 + }, + "date_last_updated": { + "type": 6, + "value": 1684181715990 + }, + "date_of_expiration": { + "type": 6, + "value": 1686770465791 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684181715990 + }, + "money_release_date": { + "type": 6, + "value": 1684181715990 + }, "money_release_status": "approved", "wasDebited": true }, @@ -44491,7 +57021,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, "revision": "lnt02x6u0263oohx0kntbe29", "revision_nr": 1, "created": 1697467095180, @@ -44500,11 +57034,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02x6u0262oohx7eekb2db", "revision_nr": 1, "created": 1697467095186, "modified": 1697467095186 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02x6u0262oohx7eekb2db", + "revision_nr": 1, + "created": 1697467095186, + "modified": 1697467095186 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499/details", - "content": { "type": 1, "value": {}, "revision": "lnt02x6u0261oohx62xcf2at", "revision_nr": 1, "created": 1697467095191, "modified": 1697467095191 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02x6u0261oohx62xcf2at", + "revision_nr": 1, + "created": 1697467095191, + "modified": 1697467095191 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499", @@ -44518,9 +57066,18 @@ "total_amount": 1300, "history_id": 1684353970499, "id": 1684353970499, - "date_created": { "type": 6, "value": 1684353970499 }, - "date_last_updated": { "type": 6, "value": 1684353970499 }, - "date_of_expiration": { "type": 6, "value": 1686945970499 }, + "date_created": { + "type": 6, + "value": 1684353970499 + }, + "date_last_updated": { + "type": 6, + "value": 1684353970499 + }, + "date_of_expiration": { + "type": 6, + "value": 1686945970499 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -44569,9 +57126,18 @@ "original_amount": 6331951, "total_amount": 6331951, "id": 1684627580539, - "date_created": { "type": 6, "value": 1684627580539 }, - "date_last_updated": { "type": 6, "value": 1684627580539 }, - "date_of_expiration": { "type": 6, "value": 1684627580539 }, + "date_created": { + "type": 6, + "value": 1684627580539 + }, + "date_last_updated": { + "type": 6, + "value": 1684627580539 + }, + "date_of_expiration": { + "type": 6, + "value": 1684627580539 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -44633,9 +57199,18 @@ "original_amount": 320, "total_amount": 320, "id": 1684628335504, - "date_created": { "type": 6, "value": 1684628335504 }, - "date_last_updated": { "type": 6, "value": 1684628335504 }, - "date_of_expiration": { "type": 6, "value": 1684628335504 }, + "date_created": { + "type": 6, + "value": 1684628335504 + }, + "date_last_updated": { + "type": 6, + "value": 1684628335504 + }, + "date_of_expiration": { + "type": 6, + "value": 1684628335504 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -44685,9 +57260,18 @@ "original_amount": 1561756, "total_amount": 1561756, "id": 1684633146254, - "date_created": { "type": 6, "value": 1684633146254 }, - "date_last_updated": { "type": 6, "value": 1684633146254 }, - "date_of_expiration": { "type": 6, "value": 1684633146254 }, + "date_created": { + "type": 6, + "value": 1684633146254 + }, + "date_last_updated": { + "type": 6, + "value": 1684633146254 + }, + "date_of_expiration": { + "type": 6, + "value": 1684633146254 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -44715,7 +57299,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1687191698878/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02x8v026doohx4m0b0j5h", "revision_nr": 1, "created": 1697467095253, "modified": 1697467095253 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02x8v026doohx4m0b0j5h", + "revision_nr": 1, + "created": 1697467095253, + "modified": 1697467095253 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1687191698878", @@ -44729,15 +57322,30 @@ "total_amount": 130, "history_id": 1687191698878, "id": 1687191698878, - "date_created": { "type": 6, "value": 1687191698878 }, - "date_last_updated": { "type": 6, "value": 1687543965861 }, - "date_of_expiration": { "type": 6, "value": 1689783698878 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1687543965861 }, - "money_release_date": { "type": 6, "value": 1687543965861 }, + "date_created": { + "type": 6, + "value": 1687191698878 + }, + "date_last_updated": { + "type": 6, + "value": 1687543965861 + }, + "date_of_expiration": { + "type": 6, + "value": 1689783698878 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1687543965861 + }, + "money_release_date": { + "type": 6, + "value": 1687543965861 + }, "money_release_status": "approved", "wasDebited": true }, @@ -44760,7 +57368,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689106982837/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02x9d026goohxbpye1gfi", "revision_nr": 1, "created": 1697467095272, "modified": 1697467095272 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02x9d026goohxbpye1gfi", + "revision_nr": 1, + "created": 1697467095272, + "modified": 1697467095272 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689106982837", @@ -44774,9 +57391,18 @@ "total_amount": 1000, "history_id": 1689106982837, "id": 1689106982837, - "date_created": { "type": 6, "value": 1689106982837 }, - "date_last_updated": { "type": 6, "value": 1689106982837 }, - "date_of_expiration": { "type": 6, "value": 1689106982837 }, + "date_created": { + "type": 6, + "value": 1689106982837 + }, + "date_last_updated": { + "type": 6, + "value": 1689106982837 + }, + "date_of_expiration": { + "type": 6, + "value": 1689106982837 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -44801,7 +57427,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689107140445/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02x9x026joohx8ddaazff", "revision_nr": 1, "created": 1697467095293, "modified": 1697467095293 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02x9x026joohx8ddaazff", + "revision_nr": 1, + "created": 1697467095293, + "modified": 1697467095293 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689107140445", @@ -44815,9 +57450,18 @@ "total_amount": 100000, "history_id": 1689107140445, "id": 1689107140445, - "date_created": { "type": 6, "value": 1689107140445 }, - "date_last_updated": { "type": 6, "value": 1689107140445 }, - "date_of_expiration": { "type": 6, "value": 1689107140445 }, + "date_created": { + "type": 6, + "value": 1689107140445 + }, + "date_last_updated": { + "type": 6, + "value": 1689107140445 + }, + "date_of_expiration": { + "type": 6, + "value": 1689107140445 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -44879,9 +57523,18 @@ "total_amount": 130, "id": 1689751872577, "contract_id": "1684353970499", - "date_created": { "type": 6, "value": 1689751872577 }, - "date_last_updated": { "type": 6, "value": 1689751872577 }, - "date_of_expiration": { "type": 6, "value": 1689751872577 }, + "date_created": { + "type": 6, + "value": 1689751872577 + }, + "date_last_updated": { + "type": 6, + "value": 1689751872577 + }, + "date_of_expiration": { + "type": 6, + "value": 1689751872577 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -44908,7 +57561,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689787472412/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02xaz026poohx7q989ndd", "revision_nr": 1, "created": 1697467095329, "modified": 1697467095329 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02xaz026poohx7q989ndd", + "revision_nr": 1, + "created": 1697467095329, + "modified": 1697467095329 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689787472412", @@ -44922,15 +57584,30 @@ "total_amount": 130, "history_id": 1689787472412, "id": 1689787472412, - "date_created": { "type": 6, "value": 1689787472412 }, - "date_last_updated": { "type": 6, "value": 1690469763902 }, - "date_of_expiration": { "type": 6, "value": 1692379472412 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1690469763902 }, - "money_release_date": { "type": 6, "value": 1690469763902 }, + "date_created": { + "type": 6, + "value": 1689787472412 + }, + "date_last_updated": { + "type": 6, + "value": 1690469763902 + }, + "date_of_expiration": { + "type": 6, + "value": 1692379472412 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1690469763902 + }, + "money_release_date": { + "type": 6, + "value": 1690469763902 + }, "money_release_status": "approved", "wasDebited": true }, @@ -44990,9 +57667,18 @@ "total_amount": 130, "id": 1690471265404, "contract_id": "1684353970499", - "date_created": { "type": 6, "value": 1690471265404 }, - "date_last_updated": { "type": 6, "value": 1690471265404 }, - "date_of_expiration": { "type": 6, "value": 1690471265404 }, + "date_created": { + "type": 6, + "value": 1690471265404 + }, + "date_last_updated": { + "type": 6, + "value": 1690471265404 + }, + "date_of_expiration": { + "type": 6, + "value": 1690471265404 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -45010,7 +57696,13 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1695216566475 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695216566475 + } + }, "revision": "lnt02xbx026uoohx7zd21yh1", "revision_nr": 1, "created": 1697467095363, @@ -45072,16 +57764,28 @@ "total_amount": 130, "id": 1692624566475, "history_id": 1692624566475, - "date_created": { "type": 6, "value": 1692624566475 }, - "date_last_updated": { "type": 6, "value": 1692625291282 }, + "date_created": { + "type": 6, + "value": 1692624566475 + }, + "date_last_updated": { + "type": 6, + "value": 1692625291282 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1692625291282 }, - "money_release_date": { "type": 6, "value": 1692625291282 }, + "date_approved": { + "type": 6, + "value": 1692625291282 + }, + "money_release_date": { + "type": 6, + "value": 1692625291282 + }, "money_release_status": "approved", "wasDebited": true }, @@ -45148,9 +57852,18 @@ "total_amount": 130, "id": "1692660761580", "history_id": "1692660761580", - "date_created": { "type": 6, "value": 1692660761580 }, - "date_last_updated": { "type": 6, "value": 1692660761580 }, - "date_of_expiration": { "type": 6, "value": 1692660761580 }, + "date_created": { + "type": 6, + "value": 1692660761580 + }, + "date_last_updated": { + "type": 6, + "value": 1692660761580 + }, + "date_of_expiration": { + "type": 6, + "value": 1692660761580 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -45190,7 +57903,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 208830.06 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 208830.06 + }, "revision": "lnt02xdt0277oohxax652k0f", "revision_nr": 1, "created": 1697467095431, @@ -45199,7 +57916,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02xdt0276oohxbyio7cnu", "revision_nr": 1, "created": 1697467095437, "modified": 1697467095437 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02xdt0276oohxbyio7cnu", + "revision_nr": 1, + "created": 1697467095437, + "modified": 1697467095437 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details", @@ -45233,17 +57957,32 @@ "total_amount": 6752171.94, "id": "1692785689941", "history_id": "1692785689941", - "date_created": { "type": 6, "value": 1692785689941 }, - "date_last_updated": { "type": 6, "value": 1692972204887 }, - "date_of_expiration": { "type": 6, "value": 1692785689941 }, + "date_created": { + "type": 6, + "value": 1692785689941 + }, + "date_last_updated": { + "type": 6, + "value": 1692972204887 + }, + "date_of_expiration": { + "type": 6, + "value": 1692785689941 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1692972204887 }, - "money_release_date": { "type": 6, "value": 1692972204887 }, + "date_approved": { + "type": 6, + "value": 1692972204887 + }, + "money_release_date": { + "type": 6, + "value": 1692972204887 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -45257,7 +57996,13 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699203881018 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699203881018 + } + }, "revision": "lnt02xeh0279oohx4nnmdxb3", "revision_nr": 1, "created": 1697467095458, @@ -45320,16 +58065,28 @@ "total_amount": 130, "id": "1696611881018", "history_id": "1696611881018", - "date_created": { "type": 6, "value": 1696611881018 }, - "date_last_updated": { "type": 6, "value": 1696612563868 }, + "date_created": { + "type": 6, + "value": 1696611881018 + }, + "date_last_updated": { + "type": 6, + "value": 1696612563868 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1696612563868 }, - "money_release_date": { "type": 6, "value": 1696612563868 }, + "date_approved": { + "type": 6, + "value": 1696612563868 + }, + "money_release_date": { + "type": 6, + "value": 1696612563868 + }, "money_release_status": "approved", "wasDebited": true }, @@ -45397,9 +58154,18 @@ "total_amount": 130, "id": "1696613460272", "history_id": "1696613460272", - "date_created": { "type": 6, "value": 1696613460272 }, - "date_last_updated": { "type": 6, "value": 1696613460272 }, - "date_of_expiration": { "type": 6, "value": 1696613460272 }, + "date_created": { + "type": 6, + "value": 1696613460272 + }, + "date_last_updated": { + "type": 6, + "value": 1696613460272 + }, + "date_of_expiration": { + "type": 6, + "value": 1696613460272 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -45415,7 +58181,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history", - "content": { "type": 1, "value": {}, "revision": "lnt02x53025poohx76i3d8lj", "revision_nr": 1, "created": 1697467095513, "modified": 1697467095513 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02x53025poohx76i3d8lj", + "revision_nr": 1, + "created": 1697467095513, + "modified": 1697467095513 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499/description", @@ -45432,7 +58205,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, "revision": "lnt02xgg027noohx54b33u6s", "revision_nr": 1, "created": 1697467095527, @@ -45441,7 +58218,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02xgg027moohx3i7h4dn3", "revision_nr": 1, "created": 1697467095532, "modified": 1697467095532 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02xgg027moohx3i7h4dn3", + "revision_nr": 1, + "created": 1697467095532, + "modified": 1697467095532 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499", @@ -45454,7 +58238,10 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { "type": 6, "value": 1684353970499 }, + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL", "status": "paid" @@ -45467,7 +58254,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt02xg9027joohxe8x73k7c", "revision_nr": 1, "created": 1697467095545, "modified": 1697467095545 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xg9027joohxe8x73k7c", + "revision_nr": 1, + "created": 1697467095545, + "modified": 1697467095545 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499/description", @@ -45484,7 +58278,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, "revision": "lnt02xhb027soohx5wit3i5x", "revision_nr": 1, "created": 1697467095558, @@ -45493,7 +58291,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02xhb027roohx2yhn0byr", "revision_nr": 1, "created": 1697467095563, "modified": 1697467095563 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02xhb027roohx2yhn0byr", + "revision_nr": 1, + "created": 1697467095563, + "modified": 1697467095563 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499", @@ -45506,7 +58311,10 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { "type": 6, "value": 1684353970499 }, + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL", "status": "paid" @@ -45519,7 +58327,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt02xh5027ooohx7yzkahxu", "revision_nr": 1, "created": 1697467095576, "modified": 1697467095576 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xh5027ooohx7yzkahxu", + "revision_nr": 1, + "created": 1697467095576, + "modified": 1697467095576 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499/description", @@ -45536,7 +58351,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, "revision": "lnt02xi6027xoohx6zsab6y3", "revision_nr": 1, "created": 1697467095588, @@ -45545,7 +58364,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02xi6027woohxanr47f79", "revision_nr": 1, "created": 1697467095595, "modified": 1697467095595 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02xi6027woohxanr47f79", + "revision_nr": 1, + "created": 1697467095595, + "modified": 1697467095595 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499", @@ -45558,7 +58384,10 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { "type": 6, "value": 1684353970499 }, + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL", "status": "paid" @@ -45571,7 +58400,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308", - "content": { "type": 1, "value": {}, "revision": "lnt02xi0027toohx3d9r9h0a", "revision_nr": 1, "created": 1697467095608, "modified": 1697467095608 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xi0027toohx3d9r9h0a", + "revision_nr": 1, + "created": 1697467095608, + "modified": 1697467095608 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499/description", @@ -45588,7 +58424,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, "revision": "lnt02xj20282oohx4r5f7enb", "revision_nr": 1, "created": 1697467095620, @@ -45597,7 +58437,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02xj20281oohxe91ybiqu", "revision_nr": 1, "created": 1697467095626, "modified": 1697467095626 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02xj20281oohxe91ybiqu", + "revision_nr": 1, + "created": 1697467095626, + "modified": 1697467095626 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499", @@ -45610,11 +58457,17 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { "type": 6, "value": 1684353970499 }, + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1696613460287 } + "date_last_updated": { + "type": 6, + "value": 1696613460287 + } }, "revision": "lnt02xiw027zoohxdpy0biiv", "revision_nr": 1, @@ -45624,7 +58477,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309", - "content": { "type": 1, "value": {}, "revision": "lnt02xiw027yoohx2ax123fh", "revision_nr": 1, "created": 1697467095640, "modified": 1697467095640 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xiw027yoohx2ax123fh", + "revision_nr": 1, + "created": 1697467095640, + "modified": 1697467095640 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499/description", @@ -45641,7 +58501,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, "revision": "lnt02xjy0287oohx5iz51wqi", "revision_nr": 1, "created": 1697467095652, @@ -45650,7 +58514,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02xjy0286oohx6djg80dy", "revision_nr": 1, "created": 1697467095659, "modified": 1697467095659 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02xjy0286oohx6djg80dy", + "revision_nr": 1, + "created": 1697467095659, + "modified": 1697467095659 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499", @@ -45663,7 +58534,10 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { "type": 6, "value": 1684353970499 }, + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL" }, @@ -45675,7 +58549,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310", - "content": { "type": 1, "value": {}, "revision": "lnt02xjs0283oohx33kdea1s", "revision_nr": 1, "created": 1697467095671, "modified": 1697467095671 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xjs0283oohx33kdea1s", + "revision_nr": 1, + "created": 1697467095671, + "modified": 1697467095671 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499/description", @@ -45692,7 +58573,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, "revision": "lnt02xkt028coohxf966eeni", "revision_nr": 1, "created": 1697467095683, @@ -45701,7 +58586,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02xkt028boohxeoyt1wgy", "revision_nr": 1, "created": 1697467095690, "modified": 1697467095690 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02xkt028boohxeoyt1wgy", + "revision_nr": 1, + "created": 1697467095690, + "modified": 1697467095690 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499", @@ -45714,7 +58606,10 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { "type": 6, "value": 1684353970499 }, + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL" }, @@ -45726,7 +58621,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311", - "content": { "type": 1, "value": {}, "revision": "lnt02xkn0288oohxci3t6xru", "revision_nr": 1, "created": 1697467095702, "modified": 1697467095702 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xkn0288oohxci3t6xru", + "revision_nr": 1, + "created": 1697467095702, + "modified": 1697467095702 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499/description", @@ -45743,7 +58645,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, "revision": "lnt02xlq028hoohxhaai5l37", "revision_nr": 1, "created": 1697467095716, @@ -45752,7 +58658,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02xlp028goohx135fgsaj", "revision_nr": 1, "created": 1697467095723, "modified": 1697467095723 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02xlp028goohx135fgsaj", + "revision_nr": 1, + "created": 1697467095723, + "modified": 1697467095723 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499", @@ -45765,7 +58678,10 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { "type": 6, "value": 1684353970499 }, + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL" }, @@ -45777,7 +58693,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312", - "content": { "type": 1, "value": {}, "revision": "lnt02xli028doohx640z1dtn", "revision_nr": 1, "created": 1697467095735, "modified": 1697467095735 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xli028doohx640z1dtn", + "revision_nr": 1, + "created": 1697467095735, + "modified": 1697467095735 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499/description", @@ -45794,7 +58717,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, "revision": "lnt02xml028moohxbt09epl8", "revision_nr": 1, "created": 1697467095749, @@ -45803,7 +58730,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02xml028loohx1r118385", "revision_nr": 1, "created": 1697467095755, "modified": 1697467095755 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02xml028loohx1r118385", + "revision_nr": 1, + "created": 1697467095755, + "modified": 1697467095755 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499", @@ -45816,7 +58750,10 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { "type": 6, "value": 1684353970499 }, + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL" }, @@ -45828,7 +58765,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401", - "content": { "type": 1, "value": {}, "revision": "lnt02xmf028ioohx8brgdd7z", "revision_nr": 1, "created": 1697467095766, "modified": 1697467095766 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xmf028ioohx8brgdd7z", + "revision_nr": 1, + "created": 1697467095766, + "modified": 1697467095766 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499/description", @@ -45845,7 +58789,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, "revision": "lnt02xni028roohx9tks36ng", "revision_nr": 1, "created": 1697467095781, @@ -45854,7 +58802,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02xni028qoohxc04nbyin", "revision_nr": 1, "created": 1697467095787, "modified": 1697467095787 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02xni028qoohxc04nbyin", + "revision_nr": 1, + "created": 1697467095787, + "modified": 1697467095787 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499", @@ -45867,7 +58822,10 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { "type": 6, "value": 1684353970499 }, + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL" }, @@ -45879,13 +58837,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402", - "content": { "type": 1, "value": {}, "revision": "lnt02xna028noohx9myuef80", "revision_nr": 1, "created": 1697467095800, "modified": 1697467095800 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xna028noohx9myuef80", + "revision_nr": 1, + "created": 1697467095800, + "modified": 1697467095800 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, "revision": "lnt02xo8028voohx710mah5w", "revision_nr": 1, "created": 1697467095807, @@ -45894,7 +58863,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02xo8028uoohx5ne55ntf", "revision_nr": 1, "created": 1697467095812, "modified": 1697467095812 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02xo8028uoohx5ne55ntf", + "revision_nr": 1, + "created": 1697467095812, + "modified": 1697467095812 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499/description", @@ -45918,7 +58894,10 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { "type": 6, "value": 1684353970499 }, + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL" }, @@ -45930,17 +58909,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403", - "content": { "type": 1, "value": {}, "revision": "lnt02xo8028soohxabvm2al0", "revision_nr": 1, "created": 1697467095830, "modified": 1697467095830 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xo8028soohxabvm2al0", + "revision_nr": 1, + "created": 1697467095830, + "modified": 1697467095830 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt02xg9027ioohx472606in", "revision_nr": 1, "created": 1697467095837, "modified": 1697467095837 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xg9027ioohx472606in", + "revision_nr": 1, + "created": 1697467095837, + "modified": 1697467095837 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit", "content": { "type": 1, - "value": { "approvedLimit": 1000, "limitUsed": 800, "analysisRequested": { "type": 6, "value": 1684328944557 }, "lastReview": { "type": 6, "value": 1684329405576 } }, + "value": { + "approvedLimit": 1000, + "limitUsed": 800, + "analysisRequested": { + "type": 6, + "value": 1684328944557 + }, + "lastReview": { + "type": 6, + "value": 1684329405576 + } + }, "revision": "lnt02xg9027hoohx7pij5h00", "revision_nr": 1, "created": 1697467095844, @@ -45951,7 +58955,16 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040", "content": { "type": 1, - "value": { "dataModificacao": 1682778060382, "dateValidity": 1682778060382, "totalValue": 296.475, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697425200000 } }, + "value": { + "dataModificacao": 1682778060382, + "dateValidity": 1682778060382, + "totalValue": 296.475, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } + }, "revision": "lnt02x4q025moohx1nax342w", "revision_nr": 1, "created": 1697467095850, @@ -45962,7 +58975,14 @@ "path": "ivipcoin-db::__movement_wallet__/078019109826485740", "content": { "type": 1, - "value": { "dataModificacao": 1677453360716, "dateValidity": 1677453360716, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677453360716, + "dateValidity": 1677453360716, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02xpm028xoohx96zb6iou", "revision_nr": 1, "created": 1697467095858, @@ -45982,7 +59002,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/078295014075340450/history/1677768924149/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02xq10292oohxdx30cq8w", "revision_nr": 1, "created": 1697467095871, "modified": 1697467095871 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02xq10292oohxdx30cq8w", + "revision_nr": 1, + "created": 1697467095871, + "modified": 1697467095871 + } }, { "path": "ivipcoin-db::__movement_wallet__/078295014075340450/history/1677768924149", @@ -45996,14 +59025,26 @@ "total_amount": 500, "history_id": 1677768924149, "id": 1677768924149, - "date_created": { "type": 6, "value": 1677768924149 }, - "date_last_updated": { "type": 6, "value": 1678713027494 }, - "date_of_expiration": { "type": 6, "value": 1680360924149 }, + "date_created": { + "type": 6, + "value": 1677768924149 + }, + "date_last_updated": { + "type": 6, + "value": 1678713027494 + }, + "date_of_expiration": { + "type": 6, + "value": 1680360924149 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678713027494 }, + "money_release_date": { + "type": 6, + "value": 1678713027494 + }, "money_release_status": "rejected" }, "revision": "lnt02xpu0290oohxhuguht1s", @@ -46014,13 +59055,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/078295014075340450/history", - "content": { "type": 1, "value": {}, "revision": "lnt02xpu028zoohxh6hmcp7q", "revision_nr": 1, "created": 1697467095882, "modified": 1697467095882 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xpu028zoohxh6hmcp7q", + "revision_nr": 1, + "created": 1697467095882, + "modified": 1697467095882 + } }, { "path": "ivipcoin-db::__movement_wallet__/078295014075340450", "content": { "type": 1, - "value": { "dataModificacao": 1677768631228, "dateValidity": 1677768631228, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677768631228, + "dateValidity": 1677768631228, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02xpu028yoohx85di0fyi", "revision_nr": 1, "created": 1697467095890, @@ -46031,7 +59085,11 @@ "path": "ivipcoin-db::__movement_wallet__/078345372944250480/balances/BRL", "content": { "type": 1, - "value": { "symbol": "BRL", "available": "0.00000000", "value": 0 }, + "value": { + "symbol": "BRL", + "available": "0.00000000", + "value": 0 + }, "revision": "lnt02xqq0295oohx347l91vn", "revision_nr": 1, "created": 1697467095897, @@ -46042,7 +59100,11 @@ "path": "ivipcoin-db::__movement_wallet__/078345372944250480/balances/IVIP", "content": { "type": 1, - "value": { "symbol": "IVIP", "available": "0.00000000", "value": 0 }, + "value": { + "symbol": "IVIP", + "available": "0.00000000", + "value": 0 + }, "revision": "lnt02xqx0296oohx0icjgezl", "revision_nr": 1, "created": 1697467095903, @@ -46051,7 +59113,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02xqq0294oohxht4u8iwo", "revision_nr": 1, "created": 1697467095909, "modified": 1697467095909 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xqq0294oohxht4u8iwo", + "revision_nr": 1, + "created": 1697467095909, + "modified": 1697467095909 + } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684172899523/description", @@ -46066,7 +59135,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684172899523/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02xrg029aoohx09daehqb", "revision_nr": 1, "created": 1697467095922, "modified": 1697467095922 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02xrg029aoohx09daehqb", + "revision_nr": 1, + "created": 1697467095922, + "modified": 1697467095922 + } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684172899523", @@ -46080,15 +59158,30 @@ "total_amount": 100, "history_id": 1684172899523, "id": 1684172899523, - "date_created": { "type": 6, "value": 1684172899523 }, - "date_last_updated": { "type": 6, "value": 1684186044298 }, - "date_of_expiration": { "type": 6, "value": 1686764899523 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684186044298 }, - "money_release_date": { "type": 6, "value": 1684186044298 }, + "date_created": { + "type": 6, + "value": 1684172899523 + }, + "date_last_updated": { + "type": 6, + "value": 1684186044298 + }, + "date_of_expiration": { + "type": 6, + "value": 1686764899523 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684186044298 + }, + "money_release_date": { + "type": 6, + "value": 1684186044298 + }, "money_release_status": "approved", "wasDebited": true }, @@ -46134,9 +59227,18 @@ "original_amount": 487073, "total_amount": 487073, "id": 1684625628231, - "date_created": { "type": 6, "value": 1684625628231 }, - "date_last_updated": { "type": 6, "value": 1684625628231 }, - "date_of_expiration": { "type": 6, "value": 1684625628231 }, + "date_created": { + "type": 6, + "value": 1684625628231 + }, + "date_last_updated": { + "type": 6, + "value": 1684625628231 + }, + "date_of_expiration": { + "type": 6, + "value": 1684625628231 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46164,7 +59266,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1688602924031/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02xsc029foohxbpp5bjmw", "revision_nr": 1, "created": 1697467095955, "modified": 1697467095955 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02xsc029foohxbpp5bjmw", + "revision_nr": 1, + "created": 1697467095955, + "modified": 1697467095955 + } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1688602924031", @@ -46178,9 +59289,18 @@ "total_amount": 487073, "history_id": 1688602924031, "id": 1688602924031, - "date_created": { "type": 6, "value": 1688602924031 }, - "date_last_updated": { "type": 6, "value": 1688602924031 }, - "date_of_expiration": { "type": 6, "value": 1688602924031 }, + "date_created": { + "type": 6, + "value": 1688602924031 + }, + "date_last_updated": { + "type": 6, + "value": 1688602924031 + }, + "date_of_expiration": { + "type": 6, + "value": 1688602924031 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -46205,7 +59325,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689096874209/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02xsw029ioohxcw1zciig", "revision_nr": 1, "created": 1697467095976, "modified": 1697467095976 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02xsw029ioohxcw1zciig", + "revision_nr": 1, + "created": 1697467095976, + "modified": 1697467095976 + } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689096874209", @@ -46219,9 +59348,18 @@ "total_amount": 487073, "history_id": 1689096874209, "id": 1689096874209, - "date_created": { "type": 6, "value": 1689096874209 }, - "date_last_updated": { "type": 6, "value": 1689096874209 }, - "date_of_expiration": { "type": 6, "value": 1689096874209 }, + "date_created": { + "type": 6, + "value": 1689096874209 + }, + "date_last_updated": { + "type": 6, + "value": 1689096874209 + }, + "date_of_expiration": { + "type": 6, + "value": 1689096874209 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -46246,7 +59384,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689182689273/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02xtg029loohxcgkg1ydo", "revision_nr": 1, "created": 1697467095995, "modified": 1697467095995 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02xtg029loohxcgkg1ydo", + "revision_nr": 1, + "created": 1697467095995, + "modified": 1697467095995 + } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689182689273", @@ -46260,9 +59407,18 @@ "total_amount": 487073, "history_id": 1689182689273, "id": 1689182689273, - "date_created": { "type": 6, "value": 1689182689273 }, - "date_last_updated": { "type": 6, "value": 1689182689273 }, - "date_of_expiration": { "type": 6, "value": 1689182689273 }, + "date_created": { + "type": 6, + "value": 1689182689273 + }, + "date_last_updated": { + "type": 6, + "value": 1689182689273 + }, + "date_of_expiration": { + "type": 6, + "value": 1689182689273 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -46287,7 +59443,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689197773070/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02xtz029ooohx2l66evdu", "revision_nr": 1, "created": 1697467096013, "modified": 1697467096013 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02xtz029ooohx2l66evdu", + "revision_nr": 1, + "created": 1697467096013, + "modified": 1697467096013 + } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689197773070", @@ -46301,15 +59466,30 @@ "total_amount": 487073, "history_id": 1689197773070, "id": 1689197773070, - "date_created": { "type": 6, "value": 1689197773070 }, - "date_last_updated": { "type": 6, "value": 1689256321891 }, - "date_of_expiration": { "type": 6, "value": 1689197773070 }, + "date_created": { + "type": 6, + "value": 1689197773070 + }, + "date_last_updated": { + "type": 6, + "value": 1689256321891 + }, + "date_of_expiration": { + "type": 6, + "value": 1689197773070 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1689256321891 }, - "money_release_date": { "type": 6, "value": 1689256321891 }, + "date_approved": { + "type": 6, + "value": 1689256321891 + }, + "money_release_date": { + "type": 6, + "value": 1689256321891 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -46321,13 +59501,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history", - "content": { "type": 1, "value": {}, "revision": "lnt02xr90297oohxh8nn63no", "revision_nr": 1, "created": 1697467096027, "modified": 1697467096027 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xr90297oohxh8nn63no", + "revision_nr": 1, + "created": 1697467096027, + "modified": 1697467096027 + } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02xuj029poohxh1ks274t", "revision_nr": 1, "created": 1697467096033, @@ -46338,7 +59529,12 @@ "path": "ivipcoin-db::__movement_wallet__/078345372944250480", "content": { "type": 1, - "value": { "dataModificacao": 1684172840672, "dateValidity": 1684172840672, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684172840672, + "dateValidity": 1684172840672, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02xqq0293oohx25h2hrtf", "revision_nr": 1, "created": 1697467096040, @@ -46349,7 +59545,11 @@ "path": "ivipcoin-db::__movement_wallet__/080731978336071380/balances/IVIP", "content": { "type": 1, - "value": { "available": "1863605.00000000", "symbol": "IVIP", "value": 199.32 }, + "value": { + "available": "1863605.00000000", + "symbol": "IVIP", + "value": 199.32 + }, "revision": "lnt02xux029soohxcei43nhu", "revision_nr": 1, "created": 1697467096047, @@ -46358,7 +59558,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02xux029roohxgbv2ciyt", "revision_nr": 1, "created": 1697467096052, "modified": 1697467096052 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xux029roohxgbv2ciyt", + "revision_nr": 1, + "created": 1697467096052, + "modified": 1697467096052 + } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684105639483/description", @@ -46373,7 +59580,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684105639483/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02xvf029woohxad7d6uua", "revision_nr": 1, "created": 1697467096065, "modified": 1697467096065 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02xvf029woohxad7d6uua", + "revision_nr": 1, + "created": 1697467096065, + "modified": 1697467096065 + } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684105639483", @@ -46387,15 +59603,30 @@ "total_amount": 2020, "history_id": 1684105639483, "id": 1684105639483, - "date_created": { "type": 6, "value": 1684105639483 }, - "date_last_updated": { "type": 6, "value": 1684162218116 }, - "date_of_expiration": { "type": 6, "value": 1686697639483 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684162218116 }, - "money_release_date": { "type": 6, "value": 1684162218116 }, + "date_created": { + "type": 6, + "value": 1684105639483 + }, + "date_last_updated": { + "type": 6, + "value": 1684162218116 + }, + "date_of_expiration": { + "type": 6, + "value": 1686697639483 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684162218116 + }, + "money_release_date": { + "type": 6, + "value": 1684162218116 + }, "money_release_status": "approved", "wasDebited": true }, @@ -46441,9 +59672,18 @@ "original_amount": 9838878, "total_amount": 9838878, "id": 1684624287649, - "date_created": { "type": 6, "value": 1684624287649 }, - "date_last_updated": { "type": 6, "value": 1684624287649 }, - "date_of_expiration": { "type": 6, "value": 1684624287649 }, + "date_created": { + "type": 6, + "value": 1684624287649 + }, + "date_last_updated": { + "type": 6, + "value": 1684624287649 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624287649 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46504,9 +59744,18 @@ "original_amount": 7975273, "total_amount": 7975273, "id": 1685667269938, - "date_created": { "type": 6, "value": 1685667269938 }, - "date_last_updated": { "type": 6, "value": 1685667269938 }, - "date_of_expiration": { "type": 6, "value": 1748825669938 }, + "date_created": { + "type": 6, + "value": 1685667269938 + }, + "date_last_updated": { + "type": 6, + "value": 1685667269938 + }, + "date_of_expiration": { + "type": 6, + "value": 1748825669938 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46522,13 +59771,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history", - "content": { "type": 1, "value": {}, "revision": "lnt02xv8029toohx0g9xb1lt", "revision_nr": 1, "created": 1697467096112, "modified": 1697467096112 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xv8029toohx0g9xb1lt", + "revision_nr": 1, + "created": 1697467096112, + "modified": 1697467096112 + } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02xww02a2oohxdm6ig5ag", "revision_nr": 1, "created": 1697467096118, @@ -46544,7 +59804,10 @@ "dateValidity": 1684103814248, "totalValue": 103.1880266333287, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1697166000000 } + "balancesModificacao": { + "type": 6, + "value": 1697166000000 + } }, "revision": "lnt02xuw029qoohx1t0m0moj", "revision_nr": 1, @@ -46556,7 +59819,11 @@ "path": "ivipcoin-db::__movement_wallet__/081398362853569280/balances/IVIP", "content": { "type": 1, - "value": { "available": "2366500.54000000", "symbol": "IVIP", "value": 355.3 }, + "value": { + "available": "2366500.54000000", + "symbol": "IVIP", + "value": 355.3 + }, "revision": "lnt02xx802a5oohx0bkveyub", "revision_nr": 1, "created": 1697467096130, @@ -46565,7 +59832,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02xx802a4oohxe46v57lo", "revision_nr": 1, "created": 1697467096137, "modified": 1697467096137 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xx802a4oohxe46v57lo", + "revision_nr": 1, + "created": 1697467096137, + "modified": 1697467096137 + } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677928546145/description", @@ -46580,7 +59854,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677928546145/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02xxs02a9oohx3084eisn", "revision_nr": 1, "created": 1697467096151, "modified": 1697467096151 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02xxs02a9oohx3084eisn", + "revision_nr": 1, + "created": 1697467096151, + "modified": 1697467096151 + } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677928546145", @@ -46594,15 +59877,30 @@ "total_amount": 1500, "history_id": 1677928546145, "id": 1677928546145, - "date_created": { "type": 6, "value": 1677928546145 }, - "date_last_updated": { "type": 6, "value": 1677929119050 }, - "date_of_expiration": { "type": 6, "value": 1680520546145 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677929119050 }, - "money_release_date": { "type": 6, "value": 1677929119050 }, + "date_created": { + "type": 6, + "value": 1677928546145 + }, + "date_last_updated": { + "type": 6, + "value": 1677929119050 + }, + "date_of_expiration": { + "type": 6, + "value": 1680520546145 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677929119050 + }, + "money_release_date": { + "type": 6, + "value": 1677929119050 + }, "money_release_status": "approved", "wasDebited": true }, @@ -46625,7 +59923,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677787145274/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02xyd02acoohx8jiu3z5d", "revision_nr": 1, "created": 1697467096171, "modified": 1697467096171 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02xyd02acoohx8jiu3z5d", + "revision_nr": 1, + "created": 1697467096171, + "modified": 1697467096171 + } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677787145274", @@ -46639,15 +59946,30 @@ "total_amount": 20, "history_id": 1677787145274, "id": 1677787145274, - "date_created": { "type": 6, "value": 1677787145274 }, - "date_last_updated": { "type": 6, "value": 1677787605317 }, - "date_of_expiration": { "type": 6, "value": 1680379145274 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677787605317 }, - "money_release_date": { "type": 6, "value": 1677787605317 }, + "date_created": { + "type": 6, + "value": 1677787145274 + }, + "date_last_updated": { + "type": 6, + "value": 1677787605317 + }, + "date_of_expiration": { + "type": 6, + "value": 1680379145274 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677787605317 + }, + "money_release_date": { + "type": 6, + "value": 1677787605317 + }, "money_release_status": "approved", "wasDebited": true }, @@ -46693,9 +60015,18 @@ "original_amount": 10760563, "total_amount": 10760563, "id": 1678059759995, - "date_created": { "type": 6, "value": 1678059759995 }, - "date_last_updated": { "type": 6, "value": 1678059759995 }, - "date_of_expiration": { "type": 6, "value": 1678059759995 }, + "date_created": { + "type": 6, + "value": 1678059759995 + }, + "date_last_updated": { + "type": 6, + "value": 1678059759995 + }, + "date_of_expiration": { + "type": 6, + "value": 1678059759995 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46723,7 +60054,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678742795429/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02xz802ahoohxf1sf0m1c", "revision_nr": 1, "created": 1697467096202, "modified": 1697467096202 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02xz802ahoohxf1sf0m1c", + "revision_nr": 1, + "created": 1697467096202, + "modified": 1697467096202 + } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678742795429", @@ -46737,15 +60077,30 @@ "total_amount": 153, "history_id": 1678742795429, "id": 1678742795429, - "date_created": { "type": 6, "value": 1678742795429 }, - "date_last_updated": { "type": 6, "value": 1678742838748 }, - "date_of_expiration": { "type": 6, "value": 1681334795429 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678742838748 }, - "money_release_date": { "type": 6, "value": 1678742838748 }, + "date_created": { + "type": 6, + "value": 1678742795429 + }, + "date_last_updated": { + "type": 6, + "value": 1678742838748 + }, + "date_of_expiration": { + "type": 6, + "value": 1681334795429 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678742838748 + }, + "money_release_date": { + "type": 6, + "value": 1678742838748 + }, "money_release_status": "approved", "wasDebited": true }, @@ -46802,9 +60157,18 @@ "original_amount": 3, "total_amount": 3, "id": 1678209797800, - "date_created": { "type": 6, "value": 1678209797800 }, - "date_last_updated": { "type": 6, "value": 1678209797800 }, - "date_of_expiration": { "type": 6, "value": 1678209797800 }, + "date_created": { + "type": 6, + "value": 1678209797800 + }, + "date_last_updated": { + "type": 6, + "value": 1678209797800 + }, + "date_of_expiration": { + "type": 6, + "value": 1678209797800 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46865,9 +60229,18 @@ "original_amount": 2, "total_amount": 2, "id": 1678215371496, - "date_created": { "type": 6, "value": 1678215371496 }, - "date_last_updated": { "type": 6, "value": 1678215371496 }, - "date_of_expiration": { "type": 6, "value": 1678215371496 }, + "date_created": { + "type": 6, + "value": 1678215371496 + }, + "date_last_updated": { + "type": 6, + "value": 1678215371496 + }, + "date_of_expiration": { + "type": 6, + "value": 1678215371496 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46928,9 +60301,18 @@ "original_amount": 9.4, "total_amount": 9.4, "id": 1679267048083, - "date_created": { "type": 6, "value": 1679267048083 }, - "date_last_updated": { "type": 6, "value": 1679267048083 }, - "date_of_expiration": { "type": 6, "value": 1679267048083 }, + "date_created": { + "type": 6, + "value": 1679267048083 + }, + "date_last_updated": { + "type": 6, + "value": 1679267048083 + }, + "date_of_expiration": { + "type": 6, + "value": 1679267048083 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46980,9 +60362,18 @@ "original_amount": 974525, "total_amount": 974525, "id": 1679268223760, - "date_created": { "type": 6, "value": 1679268223760 }, - "date_last_updated": { "type": 6, "value": 1679268223760 }, - "date_of_expiration": { "type": 6, "value": 1679268223760 }, + "date_created": { + "type": 6, + "value": 1679268223760 + }, + "date_last_updated": { + "type": 6, + "value": 1679268223760 + }, + "date_of_expiration": { + "type": 6, + "value": 1679268223760 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47044,9 +60435,18 @@ "original_amount": 10, "total_amount": 10, "id": 1679914966258, - "date_created": { "type": 6, "value": 1679914966258 }, - "date_last_updated": { "type": 6, "value": 1679914966258 }, - "date_of_expiration": { "type": 6, "value": 1679914966258 }, + "date_created": { + "type": 6, + "value": 1679914966258 + }, + "date_last_updated": { + "type": 6, + "value": 1679914966258 + }, + "date_of_expiration": { + "type": 6, + "value": 1679914966258 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47107,9 +60507,18 @@ "original_amount": 203, "total_amount": 203, "id": 1684348398411, - "date_created": { "type": 6, "value": 1684348398411 }, - "date_last_updated": { "type": 6, "value": 1684348398411 }, - "date_of_expiration": { "type": 6, "value": 1684348398411 }, + "date_created": { + "type": 6, + "value": 1684348398411 + }, + "date_last_updated": { + "type": 6, + "value": 1684348398411 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348398411 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47170,9 +60579,18 @@ "original_amount": 9, "total_amount": 9, "id": 1684624161069, - "date_created": { "type": 6, "value": 1684624161069 }, - "date_last_updated": { "type": 6, "value": 1684624161069 }, - "date_of_expiration": { "type": 6, "value": 1684624161069 }, + "date_created": { + "type": 6, + "value": 1684624161069 + }, + "date_last_updated": { + "type": 6, + "value": 1684624161069 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624161069 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47222,9 +60640,18 @@ "original_amount": 1081302, "total_amount": 1081302, "id": 1684624222413, - "date_created": { "type": 6, "value": 1684624222413 }, - "date_last_updated": { "type": 6, "value": 1684624222413 }, - "date_of_expiration": { "type": 6, "value": 1684624222413 }, + "date_created": { + "type": 6, + "value": 1684624222413 + }, + "date_last_updated": { + "type": 6, + "value": 1684624222413 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624222413 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47286,9 +60713,18 @@ "original_amount": 7, "total_amount": 7, "id": 1684624292772, - "date_created": { "type": 6, "value": 1684624292772 }, - "date_last_updated": { "type": 6, "value": 1684624292772 }, - "date_of_expiration": { "type": 6, "value": 1684624292772 }, + "date_created": { + "type": 6, + "value": 1684624292772 + }, + "date_last_updated": { + "type": 6, + "value": 1684624292772 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624292772 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47315,7 +60751,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1688520874831/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02y4j02b9oohx3h5x6wph", "revision_nr": 1, "created": 1697467096393, "modified": 1697467096393 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02y4j02b9oohx3h5x6wph", + "revision_nr": 1, + "created": 1697467096393, + "modified": 1697467096393 + } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1688520874831", @@ -47329,15 +60774,30 @@ "total_amount": 1061299, "history_id": 1688520874831, "id": 1688520874831, - "date_created": { "type": 6, "value": 1688520874831 }, - "date_last_updated": { "type": 6, "value": 1689257884324 }, - "date_of_expiration": { "type": 6, "value": 1688520874831 }, + "date_created": { + "type": 6, + "value": 1688520874831 + }, + "date_last_updated": { + "type": 6, + "value": 1689257884324 + }, + "date_of_expiration": { + "type": 6, + "value": 1688520874831 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1689257884324 }, - "money_release_date": { "type": 6, "value": 1689257884324 }, + "date_approved": { + "type": 6, + "value": 1689257884324 + }, + "money_release_date": { + "type": 6, + "value": 1689257884324 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -47360,7 +60820,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689257644454/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02y5202bcoohx1ynb2hy8", "revision_nr": 1, "created": 1697467096413, "modified": 1697467096413 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02y5202bcoohx1ynb2hy8", + "revision_nr": 1, + "created": 1697467096413, + "modified": 1697467096413 + } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689257644454", @@ -47374,15 +60843,30 @@ "total_amount": 10045174, "history_id": 1689257644454, "id": 1689257644454, - "date_created": { "type": 6, "value": 1689257644454 }, - "date_last_updated": { "type": 6, "value": 1689356814071 }, - "date_of_expiration": { "type": 6, "value": 1689257644454 }, + "date_created": { + "type": 6, + "value": 1689257644454 + }, + "date_last_updated": { + "type": 6, + "value": 1689356814071 + }, + "date_of_expiration": { + "type": 6, + "value": 1689257644454 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1689356814071 }, - "money_release_date": { "type": 6, "value": 1689356814071 }, + "date_approved": { + "type": 6, + "value": 1689356814071 + }, + "money_release_date": { + "type": 6, + "value": 1689356814071 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -47405,7 +60889,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689463707269/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02y5m02bfoohxg7v3fd5o", "revision_nr": 1, "created": 1697467096432, "modified": 1697467096432 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02y5m02bfoohxg7v3fd5o", + "revision_nr": 1, + "created": 1697467096432, + "modified": 1697467096432 + } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689463707269", @@ -47419,15 +60912,30 @@ "total_amount": 1000, "history_id": 1689463707269, "id": 1689463707269, - "date_created": { "type": 6, "value": 1689463707269 }, - "date_last_updated": { "type": 6, "value": 1689688497994 }, - "date_of_expiration": { "type": 6, "value": 1692055707269 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689688497994 }, - "money_release_date": { "type": 6, "value": 1689688497994 }, + "date_created": { + "type": 6, + "value": 1689463707269 + }, + "date_last_updated": { + "type": 6, + "value": 1689688497994 + }, + "date_of_expiration": { + "type": 6, + "value": 1692055707269 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689688497994 + }, + "money_release_date": { + "type": 6, + "value": 1689688497994 + }, "money_release_status": "approved", "wasDebited": true }, @@ -47473,9 +60981,18 @@ "original_amount": 661120, "total_amount": 661120, "id": 1689688682027, - "date_created": { "type": 6, "value": 1689688682027 }, - "date_last_updated": { "type": 6, "value": 1689688682027 }, - "date_of_expiration": { "type": 6, "value": 1689688682027 }, + "date_created": { + "type": 6, + "value": 1689688682027 + }, + "date_last_updated": { + "type": 6, + "value": 1689688682027 + }, + "date_of_expiration": { + "type": 6, + "value": 1689688682027 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47494,7 +61011,13 @@ "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1692810437203 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692810437203 + } + }, "revision": "lnt02y6b02bjoohxc5b6e99z", "revision_nr": 1, "created": 1697467096459, @@ -47556,8 +61079,14 @@ "total_amount": 100, "id": 1690218437204, "history_id": 1690218437204, - "date_created": { "type": 6, "value": 1690218437204 }, - "date_last_updated": { "type": 6, "value": 1690218437204 }, + "date_created": { + "type": 6, + "value": 1690218437204 + }, + "date_last_updated": { + "type": 6, + "value": 1690218437204 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -47626,9 +61155,18 @@ "total_amount": 2362853, "id": 1691105324726, "history_id": 1691105324726, - "date_created": { "type": 6, "value": 1691105324726 }, - "date_last_updated": { "type": 6, "value": 1691105324726 }, - "date_of_expiration": { "type": 6, "value": 1693783724725 }, + "date_created": { + "type": 6, + "value": 1691105324726 + }, + "date_last_updated": { + "type": 6, + "value": 1691105324726 + }, + "date_of_expiration": { + "type": 6, + "value": 1693783724725 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47697,9 +61235,18 @@ "total_amount": 2410110.06, "id": "1693783873313", "history_id": "1693783873313", - "date_created": { "type": 6, "value": 1693783873313 }, - "date_last_updated": { "type": 6, "value": 1693783873313 }, - "date_of_expiration": { "type": 6, "value": 1693783873313 }, + "date_created": { + "type": 6, + "value": 1693783873313 + }, + "date_last_updated": { + "type": 6, + "value": 1693783873313 + }, + "date_of_expiration": { + "type": 6, + "value": 1693783873313 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47768,9 +61315,18 @@ "total_amount": 2410324, "id": "1693916505659", "history_id": "1693916505659", - "date_created": { "type": 6, "value": 1693916505659 }, - "date_last_updated": { "type": 6, "value": 1693916505659 }, - "date_of_expiration": { "type": 6, "value": 1696508505658 }, + "date_created": { + "type": 6, + "value": 1693916505659 + }, + "date_last_updated": { + "type": 6, + "value": 1693916505659 + }, + "date_of_expiration": { + "type": 6, + "value": 1696508505658 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47840,9 +61396,18 @@ "total_amount": 2458530.48, "id": "1696508517073", "history_id": "1696508517073", - "date_created": { "type": 6, "value": 1696508517073 }, - "date_last_updated": { "type": 6, "value": 1696508517073 }, - "date_of_expiration": { "type": 6, "value": 1696508517073 }, + "date_created": { + "type": 6, + "value": 1696508517073 + }, + "date_last_updated": { + "type": 6, + "value": 1696508517073 + }, + "date_of_expiration": { + "type": 6, + "value": 1696508517073 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47912,9 +61477,18 @@ "total_amount": 100000, "id": "1696541853446", "history_id": "1696541853446", - "date_created": { "type": 6, "value": 1696541853446 }, - "date_last_updated": { "type": 6, "value": 1696541853446 }, - "date_of_expiration": { "type": 6, "value": 1759700253408 }, + "date_created": { + "type": 6, + "value": 1696541853446 + }, + "date_last_updated": { + "type": 6, + "value": 1696541853446 + }, + "date_of_expiration": { + "type": 6, + "value": 1759700253408 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47984,9 +61558,18 @@ "total_amount": 2366500, "id": "1696640077573", "history_id": "1696640077573", - "date_created": { "type": 6, "value": 1696640077573 }, - "date_last_updated": { "type": 6, "value": 1696640077573 }, - "date_of_expiration": { "type": 6, "value": 1699318477538 }, + "date_created": { + "type": 6, + "value": 1696640077573 + }, + "date_last_updated": { + "type": 6, + "value": 1696640077573 + }, + "date_of_expiration": { + "type": 6, + "value": 1699318477538 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -48002,13 +61585,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history", - "content": { "type": 1, "value": {}, "revision": "lnt02xxl02a6oohxhfr9evx1", "revision_nr": 1, "created": 1697467096651, "modified": 1697467096651 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xxl02a6oohxhfr9evx1", + "revision_nr": 1, + "created": 1697467096651, + "modified": 1697467096651 + } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02ybv02cboohx1dixar57", "revision_nr": 1, "created": 1697467096658, @@ -48019,7 +61613,16 @@ "path": "ivipcoin-db::__movement_wallet__/081398362853569280", "content": { "type": 1, - "value": { "dataModificacao": 1677420406636, "dateValidity": 1678944817912, "totalValue": 779.84, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696561200000 } }, + "value": { + "dataModificacao": 1677420406636, + "dateValidity": 1678944817912, + "totalValue": 779.84, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } + }, "revision": "lnt02xx802a3oohxc4okh07a", "revision_nr": 1, "created": 1697467096665, @@ -48030,7 +61633,11 @@ "path": "ivipcoin-db::__movement_wallet__/083249759247314030/balances/IVIP", "content": { "type": 1, - "value": { "available": "1189036.00000000", "symbol": "IVIP", "value": 151.17 }, + "value": { + "available": "1189036.00000000", + "symbol": "IVIP", + "value": 151.17 + }, "revision": "lnt02yc902ceoohx8ua110lc", "revision_nr": 1, "created": 1697467096671, @@ -48039,13 +61646,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02yc902cdoohx6y0heayg", "revision_nr": 1, "created": 1697467096678, "modified": 1697467096678 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02yc902cdoohx6y0heayg", + "revision_nr": 1, + "created": 1697467096678, + "modified": 1697467096678 + } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698791726584 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698791726584 + } + }, "revision": "lnt02ycm02choohx7unogbr6", "revision_nr": 1, "created": 1697467096684, @@ -48108,8 +61728,14 @@ "total_amount": 10000, "id": "1696199726584", "history_id": "1696199726584", - "date_created": { "type": 6, "value": 1696199726584 }, - "date_last_updated": { "type": 6, "value": 1696199726584 }, + "date_created": { + "type": 6, + "value": 1696199726584 + }, + "date_last_updated": { + "type": 6, + "value": 1696199726584 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -48127,7 +61753,13 @@ "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698801123721 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698801123721 + } + }, "revision": "lnt02ydj02cmoohxeau1eqpl", "revision_nr": 1, "created": 1697467096718, @@ -48190,16 +61822,28 @@ "total_amount": 10000, "id": "1696209123721", "history_id": "1696209123721", - "date_created": { "type": 6, "value": 1696209123721 }, - "date_last_updated": { "type": 6, "value": 1696272500859 }, + "date_created": { + "type": 6, + "value": 1696209123721 + }, + "date_last_updated": { + "type": 6, + "value": 1696272500859 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1696272500859 }, - "money_release_date": { "type": 6, "value": 1696272500859 }, + "date_approved": { + "type": 6, + "value": 1696272500859 + }, + "money_release_date": { + "type": 6, + "value": 1696272500859 + }, "money_release_status": "approved", "wasDebited": true }, @@ -48265,9 +61909,18 @@ "total_amount": 10000, "id": "1696355307483", "history_id": "1696355307483", - "date_created": { "type": 6, "value": 1696355307483 }, - "date_last_updated": { "type": 6, "value": 1696355307483 }, - "date_of_expiration": { "type": 6, "value": 1699033707483 }, + "date_created": { + "type": 6, + "value": 1696355307483 + }, + "date_last_updated": { + "type": 6, + "value": 1696355307483 + }, + "date_of_expiration": { + "type": 6, + "value": 1699033707483 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -48285,7 +61938,13 @@ "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699201715603 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699201715603 + } + }, "revision": "lnt02yf802cvoohx1p5f7xz5", "revision_nr": 1, "created": 1697467096779, @@ -48348,16 +62007,28 @@ "total_amount": 250, "id": "1696609715603", "history_id": "1696609715603", - "date_created": { "type": 6, "value": 1696609715603 }, - "date_last_updated": { "type": 6, "value": 1696611008116 }, + "date_created": { + "type": 6, + "value": 1696609715603 + }, + "date_last_updated": { + "type": 6, + "value": 1696611008116 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1696611008116 }, - "money_release_date": { "type": 6, "value": 1696611008116 }, + "date_approved": { + "type": 6, + "value": 1696611008116 + }, + "money_release_date": { + "type": 6, + "value": 1696611008116 + }, "money_release_status": "approved", "wasDebited": true }, @@ -48371,7 +62042,13 @@ "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699202450136 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699202450136 + } + }, "revision": "lnt02yga02d0oohx9s9be541", "revision_nr": 1, "created": 1697467096821, @@ -48434,16 +62111,28 @@ "total_amount": 868000, "id": "1696610450136", "history_id": "1696610450136", - "date_created": { "type": 6, "value": 1696610450136 }, - "date_last_updated": { "type": 6, "value": 1696611986733 }, + "date_created": { + "type": 6, + "value": 1696610450136 + }, + "date_last_updated": { + "type": 6, + "value": 1696611986733 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1696611986733 }, - "money_release_date": { "type": 6, "value": 1696611986733 }, + "date_approved": { + "type": 6, + "value": 1696611986733 + }, + "money_release_date": { + "type": 6, + "value": 1696611986733 + }, "money_release_status": "approved", "wasDebited": true }, @@ -48498,9 +62187,18 @@ "total_amount": 321036, "id": "1696611534552", "history_id": "1696611534552", - "date_created": { "type": 6, "value": 1696611534552 }, - "date_last_updated": { "type": 6, "value": 1696611534552 }, - "date_of_expiration": { "type": 6, "value": 1696611534552 }, + "date_created": { + "type": 6, + "value": 1696611534552 + }, + "date_last_updated": { + "type": 6, + "value": 1696611534552 + }, + "date_of_expiration": { + "type": 6, + "value": 1696611534552 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -48517,13 +62215,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history", - "content": { "type": 1, "value": {}, "revision": "lnt02ycm02cfoohx6c113m7b", "revision_nr": 1, "created": 1697467096879, "modified": 1697467096879 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02ycm02cfoohx6c113m7b", + "revision_nr": 1, + "created": 1697467096879, + "modified": 1697467096879 + } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02yi702d7oohxck4yehl7", "revision_nr": 1, "created": 1697467096886, @@ -48534,7 +62243,15 @@ "path": "ivipcoin-db::__movement_wallet__/083249759247314030", "content": { "type": 1, - "value": { "dataModificacao": 1696067091160, "dateValidity": 1696067091189, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696820400000 } }, + "value": { + "dataModificacao": 1696067091160, + "dateValidity": 1696067091189, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } + }, "revision": "lnt02yc902ccoohx9p4q83yz", "revision_nr": 1, "created": 1697467096893, @@ -48545,7 +62262,13 @@ "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698340651115 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698340651115 + } + }, "revision": "lnt02yim02dboohx4vog8y1v", "revision_nr": 1, "created": 1697467096900, @@ -48608,8 +62331,14 @@ "total_amount": 1000, "id": "1695748651115", "history_id": "1695748651115", - "date_created": { "type": 6, "value": 1695748651115 }, - "date_last_updated": { "type": 6, "value": 1695748651115 }, + "date_created": { + "type": 6, + "value": 1695748651115 + }, + "date_last_updated": { + "type": 6, + "value": 1695748651115 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -48627,7 +62356,13 @@ "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698340743839 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698340743839 + } + }, "revision": "lnt02yjj02dgoohx2i49hrf3", "revision_nr": 1, "created": 1697467096934, @@ -48690,8 +62425,14 @@ "total_amount": 1000, "id": "1695748743840", "history_id": "1695748743840", - "date_created": { "type": 6, "value": 1695748743840 }, - "date_last_updated": { "type": 6, "value": 1695748743840 }, + "date_created": { + "type": 6, + "value": 1695748743840 + }, + "date_last_updated": { + "type": 6, + "value": 1695748743840 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -48709,7 +62450,13 @@ "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698340845971 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698340845971 + } + }, "revision": "lnt02ykj02dloohxakul8882", "revision_nr": 1, "created": 1697467096971, @@ -48772,8 +62519,14 @@ "total_amount": 1000, "id": "1695748845971", "history_id": "1695748845971", - "date_created": { "type": 6, "value": 1695748845971 }, - "date_last_updated": { "type": 6, "value": 1695748845971 }, + "date_created": { + "type": 6, + "value": 1695748845971 + }, + "date_last_updated": { + "type": 6, + "value": 1695748845971 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -48789,13 +62542,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history", - "content": { "type": 1, "value": {}, "revision": "lnt02yil02d9oohxet4ah26j", "revision_nr": 1, "created": 1697467097005, "modified": 1697467097005 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02yil02d9oohxet4ah26j", + "revision_nr": 1, + "created": 1697467097005, + "modified": 1697467097005 + } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02ylp02dpoohxb6vj8x2x", "revision_nr": 1, "created": 1697467097012, @@ -48806,7 +62570,16 @@ "path": "ivipcoin-db::__movement_wallet__/084938385673306140", "content": { "type": 1, - "value": { "dataModificacao": 1695748509301, "dateValidity": 1695748509557, "balances": {}, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1695870000000 } }, + "value": { + "dataModificacao": 1695748509301, + "dateValidity": 1695748509557, + "balances": {}, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1695870000000 + } + }, "revision": "lnt02yil02d8oohx39ace2jc", "revision_nr": 1, "created": 1697467097019, @@ -48826,7 +62599,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678035077732/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02ymb02duoohxc0655v09", "revision_nr": 1, "created": 1697467097034, "modified": 1697467097034 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02ymb02duoohxc0655v09", + "revision_nr": 1, + "created": 1697467097034, + "modified": 1697467097034 + } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678035077732", @@ -48840,15 +62622,30 @@ "total_amount": 200, "history_id": 1678035077732, "id": 1678035077732, - "date_created": { "type": 6, "value": 1678035077732 }, - "date_last_updated": { "type": 6, "value": 1678129028692 }, - "date_of_expiration": { "type": 6, "value": 1680627077732 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678129028692 }, - "money_release_date": { "type": 6, "value": 1678129028692 }, + "date_created": { + "type": 6, + "value": 1678035077732 + }, + "date_last_updated": { + "type": 6, + "value": 1678129028692 + }, + "date_of_expiration": { + "type": 6, + "value": 1680627077732 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678129028692 + }, + "money_release_date": { + "type": 6, + "value": 1678129028692 + }, "money_release_status": "approved", "wasDebited": true }, @@ -48894,9 +62691,18 @@ "original_amount": 1426241, "total_amount": 1426241, "id": 1678163430853, - "date_created": { "type": 6, "value": 1678163430853 }, - "date_last_updated": { "type": 6, "value": 1678163430853 }, - "date_of_expiration": { "type": 6, "value": 1678163430853 }, + "date_created": { + "type": 6, + "value": 1678163430853 + }, + "date_last_updated": { + "type": 6, + "value": 1678163430853 + }, + "date_of_expiration": { + "type": 6, + "value": 1678163430853 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -48924,7 +62730,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1681136191198/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02yn802dzoohxf7ag7uiz", "revision_nr": 1, "created": 1697467097066, "modified": 1697467097066 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02yn802dzoohxf7ag7uiz", + "revision_nr": 1, + "created": 1697467097066, + "modified": 1697467097066 + } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1681136191198", @@ -48938,15 +62753,30 @@ "total_amount": 200, "history_id": 1681136191198, "id": 1681136191198, - "date_created": { "type": 6, "value": 1681136191198 }, - "date_last_updated": { "type": 6, "value": 1681137381704 }, - "date_of_expiration": { "type": 6, "value": 1683728191198 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1681137381704 }, - "money_release_date": { "type": 6, "value": 1681137381704 }, + "date_created": { + "type": 6, + "value": 1681136191198 + }, + "date_last_updated": { + "type": 6, + "value": 1681137381704 + }, + "date_of_expiration": { + "type": 6, + "value": 1683728191198 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1681137381704 + }, + "money_release_date": { + "type": 6, + "value": 1681137381704 + }, "money_release_status": "approved", "wasDebited": true }, @@ -48992,9 +62822,18 @@ "original_amount": 976097, "total_amount": 976097, "id": 1684632748749, - "date_created": { "type": 6, "value": 1684632748749 }, - "date_last_updated": { "type": 6, "value": 1684632748749 }, - "date_of_expiration": { "type": 6, "value": 1684632748749 }, + "date_created": { + "type": 6, + "value": 1684632748749 + }, + "date_last_updated": { + "type": 6, + "value": 1684632748749 + }, + "date_of_expiration": { + "type": 6, + "value": 1684632748749 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -49022,7 +62861,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109385732/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02yo702e4oohx70vp62bf", "revision_nr": 1, "created": 1697467097101, "modified": 1697467097101 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02yo702e4oohx70vp62bf", + "revision_nr": 1, + "created": 1697467097101, + "modified": 1697467097101 + } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109385732", @@ -49036,9 +62884,18 @@ "total_amount": 1200, "history_id": 1685109385732, "id": 1685109385732, - "date_created": { "type": 6, "value": 1685109385732 }, - "date_last_updated": { "type": 6, "value": 1685109385732 }, - "date_of_expiration": { "type": 6, "value": 1687701385732 }, + "date_created": { + "type": 6, + "value": 1685109385732 + }, + "date_last_updated": { + "type": 6, + "value": 1685109385732 + }, + "date_of_expiration": { + "type": 6, + "value": 1687701385732 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -49063,7 +62920,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109442881/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02yor02e7oohx6k4ea9sg", "revision_nr": 1, "created": 1697467097121, "modified": 1697467097121 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02yor02e7oohx6k4ea9sg", + "revision_nr": 1, + "created": 1697467097121, + "modified": 1697467097121 + } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109442881", @@ -49077,9 +62943,18 @@ "total_amount": 1200, "history_id": 1685109442881, "id": 1685109442881, - "date_created": { "type": 6, "value": 1685109442881 }, - "date_last_updated": { "type": 6, "value": 1685109442881 }, - "date_of_expiration": { "type": 6, "value": 1687701442881 }, + "date_created": { + "type": 6, + "value": 1685109442881 + }, + "date_last_updated": { + "type": 6, + "value": 1685109442881 + }, + "date_of_expiration": { + "type": 6, + "value": 1687701442881 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -49104,7 +62979,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685213653014/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02ypb02eaoohx1tad2ajm", "revision_nr": 1, "created": 1697467097143, "modified": 1697467097143 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02ypb02eaoohx1tad2ajm", + "revision_nr": 1, + "created": 1697467097143, + "modified": 1697467097143 + } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685213653014", @@ -49118,15 +63002,30 @@ "total_amount": 1200, "history_id": 1685213653014, "id": 1685213653014, - "date_created": { "type": 6, "value": 1685213653014 }, - "date_last_updated": { "type": 6, "value": 1685364258194 }, - "date_of_expiration": { "type": 6, "value": 1687805653014 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685364258194 }, - "money_release_date": { "type": 6, "value": 1685364258194 }, + "date_created": { + "type": 6, + "value": 1685213653014 + }, + "date_last_updated": { + "type": 6, + "value": 1685364258194 + }, + "date_of_expiration": { + "type": 6, + "value": 1687805653014 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685364258194 + }, + "money_release_date": { + "type": 6, + "value": 1685364258194 + }, "money_release_status": "approved", "wasDebited": true }, @@ -49182,9 +63081,18 @@ "original_amount": 2402000, "total_amount": 2402000, "id": 1685666059762, - "date_created": { "type": 6, "value": 1685666059762 }, - "date_last_updated": { "type": 6, "value": 1685666059762 }, - "date_of_expiration": { "type": 6, "value": 1717288459762 }, + "date_created": { + "type": 6, + "value": 1685666059762 + }, + "date_last_updated": { + "type": 6, + "value": 1685666059762 + }, + "date_of_expiration": { + "type": 6, + "value": 1717288459762 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -49234,9 +63142,18 @@ "original_amount": 4214736, "total_amount": 4214736, "id": 1685744731387, - "date_created": { "type": 6, "value": 1685744731387 }, - "date_last_updated": { "type": 6, "value": 1685744731387 }, - "date_of_expiration": { "type": 6, "value": 1685744731387 }, + "date_created": { + "type": 6, + "value": 1685744731387 + }, + "date_last_updated": { + "type": 6, + "value": 1685744731387 + }, + "date_of_expiration": { + "type": 6, + "value": 1685744731387 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -49297,9 +63214,18 @@ "original_amount": 4000000, "total_amount": 4000000, "id": 1688521364022, - "date_created": { "type": 6, "value": 1688521364022 }, - "date_last_updated": { "type": 6, "value": 1688521364022 }, - "date_of_expiration": { "type": 6, "value": 1691199764022 }, + "date_created": { + "type": 6, + "value": 1688521364022 + }, + "date_last_updated": { + "type": 6, + "value": 1688521364022 + }, + "date_of_expiration": { + "type": 6, + "value": 1691199764022 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -49368,9 +63294,18 @@ "total_amount": 4080000, "id": 1691199857902, "history_id": 1691199857902, - "date_created": { "type": 6, "value": 1691199857902 }, - "date_last_updated": { "type": 6, "value": 1691199857902 }, - "date_of_expiration": { "type": 6, "value": 1691199857902 }, + "date_created": { + "type": 6, + "value": 1691199857902 + }, + "date_last_updated": { + "type": 6, + "value": 1691199857902 + }, + "date_of_expiration": { + "type": 6, + "value": 1691199857902 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -49410,7 +63345,11 @@ "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 124986.6534 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 124986.6534 + }, "revision": "lnt02ysd02esoohx1k32gmgs", "revision_nr": 1, "created": 1697467097254, @@ -49419,7 +63358,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02ysd02eroohx0zprga56", "revision_nr": 1, "created": 1697467097261, "modified": 1697467097261 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02ysd02eroohx0zprga56", + "revision_nr": 1, + "created": 1697467097261, + "modified": 1697467097261 + } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details", @@ -49453,16 +63399,28 @@ "total_amount": 4166221.78, "id": 1691271945589, "history_id": 1691271945589, - "date_created": { "type": 6, "value": 1691271945589 }, - "date_last_updated": { "type": 6, "value": 1692196076970 }, - "date_of_expiration": { "type": 6, "value": 1691271945589 }, + "date_created": { + "type": 6, + "value": 1691271945589 + }, + "date_last_updated": { + "type": 6, + "value": 1692196076970 + }, + "date_of_expiration": { + "type": 6, + "value": 1691271945589 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "rejected", - "money_release_date": { "type": 6, "value": 1692196076970 }, + "money_release_date": { + "type": 6, + "value": 1692196076970 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -49498,7 +63456,11 @@ "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 124986.6534 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 124986.6534 + }, "revision": "lnt02ytl02eyoohxakp8gtis", "revision_nr": 1, "created": 1697467097295, @@ -49507,7 +63469,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02ytl02exoohx6rc0gp3z", "revision_nr": 1, "created": 1697467097302, "modified": 1697467097302 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02ytl02exoohx6rc0gp3z", + "revision_nr": 1, + "created": 1697467097302, + "modified": 1697467097302 + } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details", @@ -49541,17 +63510,32 @@ "total_amount": 4166221.78, "id": 1691437746780, "history_id": 1691437746780, - "date_created": { "type": 6, "value": 1691437746780 }, - "date_last_updated": { "type": 6, "value": 1691509186843 }, - "date_of_expiration": { "type": 6, "value": 1691437746780 }, + "date_created": { + "type": 6, + "value": 1691437746780 + }, + "date_last_updated": { + "type": 6, + "value": 1691509186843 + }, + "date_of_expiration": { + "type": 6, + "value": 1691437746780 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1691509186843 }, - "money_release_date": { "type": 6, "value": 1691509186843 }, + "date_approved": { + "type": 6, + "value": 1691509186843 + }, + "money_release_date": { + "type": 6, + "value": 1691509186843 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -49563,13 +63547,32 @@ }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history", - "content": { "type": 1, "value": {}, "revision": "lnt02ym302droohx0hxk7ri3", "revision_nr": 1, "created": 1697467097322, "modified": 1697467097322 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02ym302droohx0hxk7ri3", + "revision_nr": 1, + "created": 1697467097322, + "modified": 1697467097322 + } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/credit", "content": { "type": 1, - "value": { "approvedLimit": 1000, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1679167350161 }, "lastReview": { "type": 6, "value": 1679261140619 } }, + "value": { + "approvedLimit": 1000, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1679167350161 + }, + "lastReview": { + "type": 6, + "value": 1679261140619 + } + }, "revision": "lnt02yui02ezoohx06ndcn9o", "revision_nr": 1, "created": 1697467097329, @@ -49586,7 +63589,10 @@ "totalValue": 14.089318085490447, "currencyType": "USD", "balances": {}, - "balancesModificacao": { "type": 6, "value": 1696561200000 } + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } }, "revision": "lnt02ym302dqoohx3my2fyx6", "revision_nr": 1, @@ -49607,7 +63613,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/085869720472730110/history/1677939492133/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02yv402f4oohx3gz2e18x", "revision_nr": 1, "created": 1697467097350, "modified": 1697467097350 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02yv402f4oohx3gz2e18x", + "revision_nr": 1, + "created": 1697467097350, + "modified": 1697467097350 + } }, { "path": "ivipcoin-db::__movement_wallet__/085869720472730110/history/1677939492133", @@ -49621,14 +63636,26 @@ "total_amount": 300, "history_id": 1677939492133, "id": 1677939492133, - "date_created": { "type": 6, "value": 1677939492133 }, - "date_last_updated": { "type": 6, "value": 1678714240045 }, - "date_of_expiration": { "type": 6, "value": 1680531492133 }, + "date_created": { + "type": 6, + "value": 1677939492133 + }, + "date_last_updated": { + "type": 6, + "value": 1678714240045 + }, + "date_of_expiration": { + "type": 6, + "value": 1680531492133 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678714240045 }, + "money_release_date": { + "type": 6, + "value": 1678714240045 + }, "money_release_status": "rejected" }, "revision": "lnt02yuw02f2oohxa4jxb347", @@ -49639,13 +63666,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/085869720472730110/history", - "content": { "type": 1, "value": {}, "revision": "lnt02yuw02f1oohxa0sm3s35", "revision_nr": 1, "created": 1697467097364, "modified": 1697467097364 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02yuw02f1oohxa0sm3s35", + "revision_nr": 1, + "created": 1697467097364, + "modified": 1697467097364 + } }, { "path": "ivipcoin-db::__movement_wallet__/085869720472730110/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02yvo02f5oohx2pu4dzxd", "revision_nr": 1, "created": 1697467097370, @@ -49656,7 +63694,13 @@ "path": "ivipcoin-db::__movement_wallet__/085869720472730110", "content": { "type": 1, - "value": { "dataModificacao": 1677772587436, "dateValidity": 1678142633851, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677772587436, + "dateValidity": 1678142633851, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02yuw02f0oohxcwlz7ye2", "revision_nr": 1, "created": 1697467097377, @@ -49667,7 +63711,11 @@ "path": "ivipcoin-db::__movement_wallet__/087877902032143410/balances/IVIP", "content": { "type": 1, - "value": { "available": "1370911.00000000", "symbol": "IVIP", "value": 901.85 }, + "value": { + "available": "1370911.00000000", + "symbol": "IVIP", + "value": 901.85 + }, "revision": "lnt02yw102f8oohx20yo25df", "revision_nr": 1, "created": 1697467097384, @@ -49676,7 +63724,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02yw102f7oohxhjho6i30", "revision_nr": 1, "created": 1697467097392, "modified": 1697467097392 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02yw102f7oohxhjho6i30", + "revision_nr": 1, + "created": 1697467097392, + "modified": 1697467097392 + } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1678097305816/description", @@ -49691,7 +63746,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1678097305816/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02ywn02fcoohxhmhq3r7f", "revision_nr": 1, "created": 1697467097407, "modified": 1697467097407 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02ywn02fcoohxhmhq3r7f", + "revision_nr": 1, + "created": 1697467097407, + "modified": 1697467097407 + } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1678097305816", @@ -49705,15 +63769,30 @@ "total_amount": 140, "history_id": 1678097305816, "id": 1678097305816, - "date_created": { "type": 6, "value": 1678097305816 }, - "date_last_updated": { "type": 6, "value": 1678214824970 }, - "date_of_expiration": { "type": 6, "value": 1680689305816 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678214824970 }, - "money_release_date": { "type": 6, "value": 1678214824970 }, + "date_created": { + "type": 6, + "value": 1678097305816 + }, + "date_last_updated": { + "type": 6, + "value": 1678214824970 + }, + "date_of_expiration": { + "type": 6, + "value": 1680689305816 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678214824970 + }, + "money_release_date": { + "type": 6, + "value": 1678214824970 + }, "money_release_status": "approved", "wasDebited": true }, @@ -49771,7 +63850,11 @@ "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 1.00%", "amount": 1.1111 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 1.00%", + "amount": 1.1111 + }, "revision": "lnt02yxt02fkoohx0g9yga6v", "revision_nr": 1, "created": 1697467097448, @@ -49780,13 +63863,22 @@ }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02yxt02fjoohx8ede1fv4", "revision_nr": 1, "created": 1697467097457, "modified": 1697467097457 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02yxt02fjoohx8ede1fv4", + "revision_nr": 1, + "created": 1697467097457, + "modified": 1697467097457 + } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, "revision": "lnt02yy902fmoohxb2l93tye", "revision_nr": 1, "created": 1697467097463, @@ -49795,13 +63887,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02yy902floohx4znwgzya", "revision_nr": 1, "created": 1697467097471, "modified": 1697467097471 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02yy902floohx4znwgzya", + "revision_nr": 1, + "created": 1697467097471, + "modified": 1697467097471 + } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 112.22, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 112.22, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02yx902ffoohx6yf400qu", "revision_nr": 1, "created": 1697467097478, @@ -49820,9 +63927,18 @@ "total_amount": 112.22, "history_id": 1679947244258, "id": 1312322778, - "date_created": { "type": 6, "value": 1679947245050 }, - "date_last_updated": { "type": 6, "value": 1679947245050 }, - "date_of_expiration": { "type": 6, "value": 1680033644758 }, + "date_created": { + "type": 6, + "value": 1679947245050 + }, + "date_last_updated": { + "type": 6, + "value": 1679947245050 + }, + "date_of_expiration": { + "type": 6, + "value": 1680033644758 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -49871,9 +63987,18 @@ "original_amount": 500004, "total_amount": 500004, "id": 1680260155565, - "date_created": { "type": 6, "value": 1680260155565 }, - "date_last_updated": { "type": 6, "value": 1680260155565 }, - "date_of_expiration": { "type": 6, "value": 1680260155565 }, + "date_created": { + "type": 6, + "value": 1680260155565 + }, + "date_last_updated": { + "type": 6, + "value": 1680260155565 + }, + "date_of_expiration": { + "type": 6, + "value": 1680260155565 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -49924,9 +64049,18 @@ "original_amount": 267396, "total_amount": 267396, "id": 1680391431083, - "date_created": { "type": 6, "value": 1680391431083 }, - "date_last_updated": { "type": 6, "value": 1680391431083 }, - "date_of_expiration": { "type": 6, "value": 1680391431083 }, + "date_created": { + "type": 6, + "value": 1680391431083 + }, + "date_last_updated": { + "type": 6, + "value": 1680391431083 + }, + "date_of_expiration": { + "type": 6, + "value": 1680391431083 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -49954,7 +64088,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1683913607250/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02z0202ftoohxbggxg2k5", "revision_nr": 1, "created": 1697467097528, "modified": 1697467097528 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02z0202ftoohxbggxg2k5", + "revision_nr": 1, + "created": 1697467097528, + "modified": 1697467097528 + } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1683913607250", @@ -49968,15 +64111,30 @@ "total_amount": 99.99, "history_id": 1683913607250, "id": 1683913607250, - "date_created": { "type": 6, "value": 1683913607250 }, - "date_last_updated": { "type": 6, "value": 1683918275703 }, - "date_of_expiration": { "type": 6, "value": 1686505607250 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1683918275703 }, - "money_release_date": { "type": 6, "value": 1683918275703 }, + "date_created": { + "type": 6, + "value": 1683913607250 + }, + "date_last_updated": { + "type": 6, + "value": 1683918275703 + }, + "date_of_expiration": { + "type": 6, + "value": 1686505607250 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683918275703 + }, + "money_release_date": { + "type": 6, + "value": 1683918275703 + }, "money_release_status": "approved", "wasDebited": true }, @@ -50022,9 +64180,18 @@ "original_amount": 487512, "total_amount": 487512, "id": 1684628885106, - "date_created": { "type": 6, "value": 1684628885106 }, - "date_last_updated": { "type": 6, "value": 1684628885106 }, - "date_of_expiration": { "type": 6, "value": 1684628885106 }, + "date_created": { + "type": 6, + "value": 1684628885106 + }, + "date_last_updated": { + "type": 6, + "value": 1684628885106 + }, + "date_of_expiration": { + "type": 6, + "value": 1684628885106 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50043,7 +64210,13 @@ "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693414337210 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693414337210 + } + }, "revision": "lnt02z0t02fxoohxhgjdf70q", "revision_nr": 1, "created": 1697467097555, @@ -50105,8 +64278,14 @@ "total_amount": 20, "id": 1690822337211, "history_id": 1690822337211, - "date_created": { "type": 6, "value": 1690822337211 }, - "date_last_updated": { "type": 6, "value": 1690822337211 }, + "date_created": { + "type": 6, + "value": 1690822337211 + }, + "date_last_updated": { + "type": 6, + "value": 1690822337211 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -50124,7 +64303,13 @@ "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693414439890 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693414439890 + } + }, "revision": "lnt02z1s02g2oohx4ug06fx4", "revision_nr": 1, "created": 1697467097592, @@ -50186,16 +64371,28 @@ "total_amount": 100, "id": 1690822439890, "history_id": 1690822439890, - "date_created": { "type": 6, "value": 1690822439890 }, - "date_last_updated": { "type": 6, "value": 1690837212866 }, + "date_created": { + "type": 6, + "value": 1690822439890 + }, + "date_last_updated": { + "type": 6, + "value": 1690837212866 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1690837212866 }, - "money_release_date": { "type": 6, "value": 1690837212866 }, + "date_approved": { + "type": 6, + "value": 1690837212866 + }, + "money_release_date": { + "type": 6, + "value": 1690837212866 + }, "money_release_status": "approved", "wasDebited": true }, @@ -50250,9 +64447,18 @@ "total_amount": 115999, "id": "1695782499707", "history_id": "1695782499707", - "date_created": { "type": 6, "value": 1695782499707 }, - "date_last_updated": { "type": 6, "value": 1695782499707 }, - "date_of_expiration": { "type": 6, "value": 1695782499707 }, + "date_created": { + "type": 6, + "value": 1695782499707 + }, + "date_last_updated": { + "type": 6, + "value": 1695782499707 + }, + "date_of_expiration": { + "type": 6, + "value": 1695782499707 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -50269,13 +64475,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history", - "content": { "type": 1, "value": {}, "revision": "lnt02ywg02f9oohxbvac1b2p", "revision_nr": 1, "created": 1697467097646, "modified": 1697467097646 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02ywg02f9oohxbvac1b2p", + "revision_nr": 1, + "created": 1697467097646, + "modified": 1697467097646 + } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02z3i02g9oohxeajd26sj", "revision_nr": 1, "created": 1697467097653, @@ -50286,7 +64503,16 @@ "path": "ivipcoin-db::__movement_wallet__/087877902032143410", "content": { "type": 1, - "value": { "dataModificacao": 1677405879103, "dateValidity": 1678984144008, "totalValue": 47.38, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696906800000 } }, + "value": { + "dataModificacao": 1677405879103, + "dateValidity": 1678984144008, + "totalValue": 47.38, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696906800000 + } + }, "revision": "lnt02yw102f6oohxf1skh9t5", "revision_nr": 1, "created": 1697467097661, @@ -50297,7 +64523,11 @@ "path": "ivipcoin-db::__movement_wallet__/088753368634775000/balances/IVIP", "content": { "type": 1, - "value": { "available": "16470.00000000", "symbol": "IVIP", "value": 4.22 }, + "value": { + "available": "16470.00000000", + "symbol": "IVIP", + "value": 4.22 + }, "revision": "lnt02z3x02gcoohxcmiiet1y", "revision_nr": 1, "created": 1697467097667, @@ -50306,7 +64536,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02z3x02gboohx4rsm0hrq", "revision_nr": 1, "created": 1697467097674, "modified": 1697467097674 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02z3x02gboohx4rsm0hrq", + "revision_nr": 1, + "created": 1697467097674, + "modified": 1697467097674 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684164750598/description", @@ -50321,7 +64558,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684164750598/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02z4h02ggoohx6c063zm5", "revision_nr": 1, "created": 1697467097688, "modified": 1697467097688 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02z4h02ggoohx6c063zm5", + "revision_nr": 1, + "created": 1697467097688, + "modified": 1697467097688 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684164750598", @@ -50335,15 +64581,30 @@ "total_amount": 500, "history_id": 1684164750598, "id": 1684164750598, - "date_created": { "type": 6, "value": 1684164750598 }, - "date_last_updated": { "type": 6, "value": 1684185652543 }, - "date_of_expiration": { "type": 6, "value": 1686756750598 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684185652543 }, - "money_release_date": { "type": 6, "value": 1684185652543 }, + "date_created": { + "type": 6, + "value": 1684164750598 + }, + "date_last_updated": { + "type": 6, + "value": 1684185652543 + }, + "date_of_expiration": { + "type": 6, + "value": 1686756750598 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684185652543 + }, + "money_release_date": { + "type": 6, + "value": 1684185652543 + }, "money_release_status": "approved", "wasDebited": true }, @@ -50366,7 +64627,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684165632184/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02z5102gjoohx67indtv4", "revision_nr": 1, "created": 1697467097710, "modified": 1697467097710 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02z5102gjoohx67indtv4", + "revision_nr": 1, + "created": 1697467097710, + "modified": 1697467097710 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684165632184", @@ -50380,9 +64650,18 @@ "total_amount": 1800, "history_id": 1684165632184, "id": 1684165632184, - "date_created": { "type": 6, "value": 1684165632184 }, - "date_last_updated": { "type": 6, "value": 1684165632184 }, - "date_of_expiration": { "type": 6, "value": 1686757632184 }, + "date_created": { + "type": 6, + "value": 1684165632184 + }, + "date_last_updated": { + "type": 6, + "value": 1684165632184 + }, + "date_of_expiration": { + "type": 6, + "value": 1686757632184 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -50407,7 +64686,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684452112873/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02z5o02gmoohxede1c4j4", "revision_nr": 1, "created": 1697467097731, "modified": 1697467097731 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02z5o02gmoohxede1c4j4", + "revision_nr": 1, + "created": 1697467097731, + "modified": 1697467097731 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684452112873", @@ -50421,15 +64709,30 @@ "total_amount": 150, "history_id": 1684452112873, "id": 1684452112873, - "date_created": { "type": 6, "value": 1684452112873 }, - "date_last_updated": { "type": 6, "value": 1684452414072 }, - "date_of_expiration": { "type": 6, "value": 1687044112873 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684452414072 }, - "money_release_date": { "type": 6, "value": 1684452414072 }, + "date_created": { + "type": 6, + "value": 1684452112873 + }, + "date_last_updated": { + "type": 6, + "value": 1684452414072 + }, + "date_of_expiration": { + "type": 6, + "value": 1687044112873 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684452414072 + }, + "money_release_date": { + "type": 6, + "value": 1684452414072 + }, "money_release_status": "approved", "wasDebited": true }, @@ -50452,7 +64755,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684519388805/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02z6902gpoohx820c9krp", "revision_nr": 1, "created": 1697467097752, "modified": 1697467097752 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02z6902gpoohx820c9krp", + "revision_nr": 1, + "created": 1697467097752, + "modified": 1697467097752 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684519388805", @@ -50466,14 +64778,26 @@ "total_amount": 500, "history_id": 1684519388805, "id": 1684519388805, - "date_created": { "type": 6, "value": 1684519388805 }, - "date_last_updated": { "type": 6, "value": 1684556278179 }, - "date_of_expiration": { "type": 6, "value": 1687111388805 }, + "date_created": { + "type": 6, + "value": 1684519388805 + }, + "date_last_updated": { + "type": 6, + "value": 1684556278179 + }, + "date_of_expiration": { + "type": 6, + "value": 1687111388805 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1684556278179 }, + "money_release_date": { + "type": 6, + "value": 1684556278179 + }, "money_release_status": "rejected" }, "revision": "lnt02z6202gnoohx7rxl3h9b", @@ -50495,7 +64819,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684538973500/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02z6v02gsoohxaz5v6dyk", "revision_nr": 1, "created": 1697467097775, "modified": 1697467097775 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02z6v02gsoohxaz5v6dyk", + "revision_nr": 1, + "created": 1697467097775, + "modified": 1697467097775 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684538973500", @@ -50509,14 +64842,26 @@ "total_amount": 950, "history_id": 1684538973500, "id": 1684538973500, - "date_created": { "type": 6, "value": 1684538973500 }, - "date_last_updated": { "type": 6, "value": 1684555702071 }, - "date_of_expiration": { "type": 6, "value": 1687130973500 }, + "date_created": { + "type": 6, + "value": 1684538973500 + }, + "date_last_updated": { + "type": 6, + "value": 1684555702071 + }, + "date_of_expiration": { + "type": 6, + "value": 1687130973500 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1684555702071 }, + "money_release_date": { + "type": 6, + "value": 1684555702071 + }, "money_release_status": "rejected" }, "revision": "lnt02z6o02gqoohxh3927b6y", @@ -50538,7 +64883,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684540522383/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02z7g02gvoohxhgoha2x4", "revision_nr": 1, "created": 1697467097796, "modified": 1697467097796 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02z7g02gvoohxhgoha2x4", + "revision_nr": 1, + "created": 1697467097796, + "modified": 1697467097796 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684540522383", @@ -50552,14 +64906,26 @@ "total_amount": 950, "history_id": 1684540522383, "id": 1684540522383, - "date_created": { "type": 6, "value": 1684540522383 }, - "date_last_updated": { "type": 6, "value": 1684618713877 }, - "date_of_expiration": { "type": 6, "value": 1687132522383 }, + "date_created": { + "type": 6, + "value": 1684540522383 + }, + "date_last_updated": { + "type": 6, + "value": 1684618713877 + }, + "date_of_expiration": { + "type": 6, + "value": 1687132522383 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1684618713877 }, + "money_release_date": { + "type": 6, + "value": 1684618713877 + }, "money_release_status": "rejected" }, "revision": "lnt02z7a02gtoohxbtblgu4g", @@ -50581,7 +64947,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684589302647/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02z8102gyoohx2q33a0bm", "revision_nr": 1, "created": 1697467097815, "modified": 1697467097815 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02z8102gyoohx2q33a0bm", + "revision_nr": 1, + "created": 1697467097815, + "modified": 1697467097815 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684589302647", @@ -50595,15 +64970,30 @@ "total_amount": 950, "history_id": 1684589302647, "id": 1684589302647, - "date_created": { "type": 6, "value": 1684589302647 }, - "date_last_updated": { "type": 6, "value": 1684594446380 }, - "date_of_expiration": { "type": 6, "value": 1687181302647 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684594446380 }, - "money_release_date": { "type": 6, "value": 1684594446380 }, + "date_created": { + "type": 6, + "value": 1684589302647 + }, + "date_last_updated": { + "type": 6, + "value": 1684594446380 + }, + "date_of_expiration": { + "type": 6, + "value": 1687181302647 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684594446380 + }, + "money_release_date": { + "type": 6, + "value": 1684594446380 + }, "money_release_status": "approved", "wasDebited": true }, @@ -50649,9 +65039,18 @@ "original_amount": 7793170, "total_amount": 7793170, "id": 1684624236329, - "date_created": { "type": 6, "value": 1684624236329 }, - "date_last_updated": { "type": 6, "value": 1684624236329 }, - "date_of_expiration": { "type": 6, "value": 1684624236329 }, + "date_created": { + "type": 6, + "value": 1684624236329 + }, + "date_last_updated": { + "type": 6, + "value": 1684624236329 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624236329 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50713,9 +65112,18 @@ "original_amount": 160, "total_amount": 160, "id": 1684624348122, - "date_created": { "type": 6, "value": 1684624348122 }, - "date_last_updated": { "type": 6, "value": 1684624348122 }, - "date_of_expiration": { "type": 6, "value": 1684624348122 }, + "date_created": { + "type": 6, + "value": 1684624348122 + }, + "date_last_updated": { + "type": 6, + "value": 1684624348122 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624348122 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50765,9 +65173,18 @@ "original_amount": 779317, "total_amount": 779317, "id": 1684624387279, - "date_created": { "type": 6, "value": 1684624387279 }, - "date_last_updated": { "type": 6, "value": 1684624387279 }, - "date_of_expiration": { "type": 6, "value": 1684624387279 }, + "date_created": { + "type": 6, + "value": 1684624387279 + }, + "date_last_updated": { + "type": 6, + "value": 1684624387279 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624387279 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50829,9 +65246,18 @@ "original_amount": 20, "total_amount": 20, "id": 1684624827425, - "date_created": { "type": 6, "value": 1684624827425 }, - "date_last_updated": { "type": 6, "value": 1684624827425 }, - "date_of_expiration": { "type": 6, "value": 1684624827425 }, + "date_created": { + "type": 6, + "value": 1684624827425 + }, + "date_last_updated": { + "type": 6, + "value": 1684624827425 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624827425 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50881,9 +65307,18 @@ "original_amount": 97414, "total_amount": 97414, "id": 1684624867474, - "date_created": { "type": 6, "value": 1684624867474 }, - "date_last_updated": { "type": 6, "value": 1684624867474 }, - "date_of_expiration": { "type": 6, "value": 1684624867474 }, + "date_created": { + "type": 6, + "value": 1684624867474 + }, + "date_last_updated": { + "type": 6, + "value": 1684624867474 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624867474 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50945,9 +65380,18 @@ "original_amount": 40000000, "total_amount": 40000000, "id": 1685361710845, - "date_created": { "type": 6, "value": 1685361710845 }, - "date_last_updated": { "type": 6, "value": 1685361710845 }, - "date_of_expiration": { "type": 6, "value": 1685361710845 }, + "date_created": { + "type": 6, + "value": 1685361710845 + }, + "date_last_updated": { + "type": 6, + "value": 1685361710845 + }, + "date_of_expiration": { + "type": 6, + "value": 1685361710845 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50997,9 +65441,18 @@ "original_amount": 400000, "total_amount": 400000, "id": 1685391792305, - "date_created": { "type": 6, "value": 1685391792305 }, - "date_last_updated": { "type": 6, "value": 1685391792305 }, - "date_of_expiration": { "type": 6, "value": 1685391792305 }, + "date_created": { + "type": 6, + "value": 1685391792305 + }, + "date_last_updated": { + "type": 6, + "value": 1685391792305 + }, + "date_of_expiration": { + "type": 6, + "value": 1685391792305 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51061,9 +65514,18 @@ "original_amount": 2000000, "total_amount": 2000000, "id": 1685391842660, - "date_created": { "type": 6, "value": 1685391842660 }, - "date_last_updated": { "type": 6, "value": 1685391842660 }, - "date_of_expiration": { "type": 6, "value": 1685391842660 }, + "date_created": { + "type": 6, + "value": 1685391842660 + }, + "date_last_updated": { + "type": 6, + "value": 1685391842660 + }, + "date_of_expiration": { + "type": 6, + "value": 1685391842660 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51113,9 +65575,18 @@ "original_amount": 160000, "total_amount": 160000, "id": 1685391972284, - "date_created": { "type": 6, "value": 1685391972284 }, - "date_last_updated": { "type": 6, "value": 1685391972284 }, - "date_of_expiration": { "type": 6, "value": 1685391972284 }, + "date_created": { + "type": 6, + "value": 1685391972284 + }, + "date_last_updated": { + "type": 6, + "value": 1685391972284 + }, + "date_of_expiration": { + "type": 6, + "value": 1685391972284 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51177,9 +65648,18 @@ "original_amount": 1400000, "total_amount": 1400000, "id": 1685392038537, - "date_created": { "type": 6, "value": 1685392038537 }, - "date_last_updated": { "type": 6, "value": 1685392038537 }, - "date_of_expiration": { "type": 6, "value": 1685392038537 }, + "date_created": { + "type": 6, + "value": 1685392038537 + }, + "date_last_updated": { + "type": 6, + "value": 1685392038537 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392038537 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51229,9 +65709,18 @@ "original_amount": 10000, "total_amount": 10000, "id": 1685392165654, - "date_created": { "type": 6, "value": 1685392165654 }, - "date_last_updated": { "type": 6, "value": 1685392165654 }, - "date_of_expiration": { "type": 6, "value": 1685392165654 }, + "date_created": { + "type": 6, + "value": 1685392165654 + }, + "date_last_updated": { + "type": 6, + "value": 1685392165654 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392165654 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51282,9 +65771,18 @@ "original_amount": 30000, "total_amount": 30000, "id": 1685392465062, - "date_created": { "type": 6, "value": 1685392465062 }, - "date_last_updated": { "type": 6, "value": 1685392465062 }, - "date_of_expiration": { "type": 6, "value": 1685392465062 }, + "date_created": { + "type": 6, + "value": 1685392465062 + }, + "date_last_updated": { + "type": 6, + "value": 1685392465062 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392465062 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51312,7 +65810,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685396749543/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02zeh02huoohx2yfkeib7", "revision_nr": 1, "created": 1697467098048, "modified": 1697467098048 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02zeh02huoohx2yfkeib7", + "revision_nr": 1, + "created": 1697467098048, + "modified": 1697467098048 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685396749543", @@ -51326,9 +65833,18 @@ "total_amount": 4669901, "history_id": 1685396749543, "id": 1685396749543, - "date_created": { "type": 6, "value": 1685396749543 }, - "date_last_updated": { "type": 6, "value": 1685396749543 }, - "date_of_expiration": { "type": 6, "value": 1685396749543 }, + "date_created": { + "type": 6, + "value": 1685396749543 + }, + "date_last_updated": { + "type": 6, + "value": 1685396749543 + }, + "date_of_expiration": { + "type": 6, + "value": 1685396749543 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -51387,9 +65903,18 @@ "original_amount": 86699010, "total_amount": 86699010, "id": 1685409104532, - "date_created": { "type": 6, "value": 1685409104532 }, - "date_last_updated": { "type": 6, "value": 1685409104532 }, - "date_of_expiration": { "type": 6, "value": 1685409104532 }, + "date_created": { + "type": 6, + "value": 1685409104532 + }, + "date_last_updated": { + "type": 6, + "value": 1685409104532 + }, + "date_of_expiration": { + "type": 6, + "value": 1685409104532 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51450,9 +65975,18 @@ "original_amount": 1544789, "total_amount": 1544789, "id": 1685494858663, - "date_created": { "type": 6, "value": 1685494858663 }, - "date_last_updated": { "type": 6, "value": 1685494858663 }, - "date_of_expiration": { "type": 6, "value": 1685494858663 }, + "date_created": { + "type": 6, + "value": 1685494858663 + }, + "date_last_updated": { + "type": 6, + "value": 1685494858663 + }, + "date_of_expiration": { + "type": 6, + "value": 1685494858663 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51513,9 +66047,18 @@ "original_amount": 13900000, "total_amount": 13900000, "id": 1685494914975, - "date_created": { "type": 6, "value": 1685494914975 }, - "date_last_updated": { "type": 6, "value": 1685494914975 }, - "date_of_expiration": { "type": 6, "value": 1685494914975 }, + "date_created": { + "type": 6, + "value": 1685494914975 + }, + "date_last_updated": { + "type": 6, + "value": 1685494914975 + }, + "date_of_expiration": { + "type": 6, + "value": 1685494914975 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51565,9 +66108,18 @@ "original_amount": 3105, "total_amount": 3105, "id": 1685495030715, - "date_created": { "type": 6, "value": 1685495030715 }, - "date_last_updated": { "type": 6, "value": 1685495030715 }, - "date_of_expiration": { "type": 6, "value": 1685495030715 }, + "date_created": { + "type": 6, + "value": 1685495030715 + }, + "date_last_updated": { + "type": 6, + "value": 1685495030715 + }, + "date_of_expiration": { + "type": 6, + "value": 1685495030715 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51595,7 +66147,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495440046/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02zha02i8oohxfds66lv0", "revision_nr": 1, "created": 1697467098148, "modified": 1697467098148 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02zha02i8oohxfds66lv0", + "revision_nr": 1, + "created": 1697467098148, + "modified": 1697467098148 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495440046", @@ -51609,14 +66170,26 @@ "total_amount": 15447894, "history_id": 1685495440046, "id": 1685495440046, - "date_created": { "type": 6, "value": 1685495440046 }, - "date_last_updated": { "type": 6, "value": 1685728987171 }, - "date_of_expiration": { "type": 6, "value": 1685495440046 }, + "date_created": { + "type": 6, + "value": 1685495440046 + }, + "date_last_updated": { + "type": 6, + "value": 1685728987171 + }, + "date_of_expiration": { + "type": 6, + "value": 1685495440046 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": { "type": 6, "value": 1685728987171 }, + "money_release_date": { + "type": 6, + "value": 1685728987171 + }, "money_release_status": "rejected" }, "revision": "lnt02zh002i6oohx3bi67fxu", @@ -51672,9 +66245,18 @@ "original_amount": 154478940, "total_amount": 154478940, "id": 1685496474860, - "date_created": { "type": 6, "value": 1685496474860 }, - "date_last_updated": { "type": 6, "value": 1685496474860 }, - "date_of_expiration": { "type": 6, "value": 1685496474860 }, + "date_created": { + "type": 6, + "value": 1685496474860 + }, + "date_last_updated": { + "type": 6, + "value": 1685496474860 + }, + "date_of_expiration": { + "type": 6, + "value": 1685496474860 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51735,9 +66317,18 @@ "original_amount": 14660794, "total_amount": 14660794, "id": 1685572512459, - "date_created": { "type": 6, "value": 1685572512459 }, - "date_last_updated": { "type": 6, "value": 1685572512459 }, - "date_of_expiration": { "type": 6, "value": 1685572512459 }, + "date_created": { + "type": 6, + "value": 1685572512459 + }, + "date_last_updated": { + "type": 6, + "value": 1685572512459 + }, + "date_of_expiration": { + "type": 6, + "value": 1685572512459 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51764,7 +66355,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685574712795/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02zj202ihoohx6ih28pp0", "revision_nr": 1, "created": 1697467098213, "modified": 1697467098213 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02zj202ihoohx6ih28pp0", + "revision_nr": 1, + "created": 1697467098213, + "modified": 1697467098213 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685574712795", @@ -51778,14 +66378,26 @@ "total_amount": 10637617, "history_id": 1685574712795, "id": 1685574712795, - "date_created": { "type": 6, "value": 1685574712795 }, - "date_last_updated": { "type": 6, "value": 1685728539697 }, - "date_of_expiration": { "type": 6, "value": 1685574712795 }, + "date_created": { + "type": 6, + "value": 1685574712795 + }, + "date_last_updated": { + "type": 6, + "value": 1685728539697 + }, + "date_of_expiration": { + "type": 6, + "value": 1685574712795 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": { "type": 6, "value": 1685728539697 }, + "money_release_date": { + "type": 6, + "value": 1685728539697 + }, "money_release_status": "rejected" }, "revision": "lnt02ziu02ifoohx53fe40k0", @@ -51807,7 +66419,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685587807706/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02zjo02ikoohx89ocb56q", "revision_nr": 1, "created": 1697467098235, "modified": 1697467098235 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02zjo02ikoohx89ocb56q", + "revision_nr": 1, + "created": 1697467098235, + "modified": 1697467098235 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685587807706", @@ -51821,14 +66442,26 @@ "total_amount": 14660794, "history_id": 1685587807706, "id": 1685587807706, - "date_created": { "type": 6, "value": 1685587807706 }, - "date_last_updated": { "type": 6, "value": 1685728442582 }, - "date_of_expiration": { "type": 6, "value": 1685587807706 }, + "date_created": { + "type": 6, + "value": 1685587807706 + }, + "date_last_updated": { + "type": 6, + "value": 1685728442582 + }, + "date_of_expiration": { + "type": 6, + "value": 1685587807706 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": { "type": 6, "value": 1685728442582 }, + "money_release_date": { + "type": 6, + "value": 1685728442582 + }, "money_release_status": "rejected" }, "revision": "lnt02zjg02iioohx7dtkgced", @@ -51850,7 +66483,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685623890790/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02zk802inoohxep4sd4xr", "revision_nr": 1, "created": 1697467098258, "modified": 1697467098258 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02zk802inoohxep4sd4xr", + "revision_nr": 1, + "created": 1697467098258, + "modified": 1697467098258 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685623890790", @@ -51864,15 +66506,30 @@ "total_amount": 14660794, "history_id": 1685623890790, "id": 1685623890790, - "date_created": { "type": 6, "value": 1685623890790 }, - "date_last_updated": { "type": 6, "value": 1685647998019 }, - "date_of_expiration": { "type": 6, "value": 1685623890790 }, + "date_created": { + "type": 6, + "value": 1685623890790 + }, + "date_last_updated": { + "type": 6, + "value": 1685647998019 + }, + "date_of_expiration": { + "type": 6, + "value": 1685623890790 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1685647998019 }, - "money_release_date": { "type": 6, "value": 1685647998019 }, + "date_approved": { + "type": 6, + "value": 1685647998019 + }, + "money_release_date": { + "type": 6, + "value": 1685647998019 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -51929,9 +66586,18 @@ "original_amount": 146607940, "total_amount": 146607940, "id": 1685625562355, - "date_created": { "type": 6, "value": 1685625562355 }, - "date_last_updated": { "type": 6, "value": 1685625562355 }, - "date_of_expiration": { "type": 6, "value": 1685625562355 }, + "date_created": { + "type": 6, + "value": 1685625562355 + }, + "date_last_updated": { + "type": 6, + "value": 1685625562355 + }, + "date_of_expiration": { + "type": 6, + "value": 1685625562355 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -51981,9 +66647,18 @@ "original_amount": 1490, "total_amount": 1490, "id": 1685639526258, - "date_created": { "type": 6, "value": 1685639526258 }, - "date_last_updated": { "type": 6, "value": 1685639526258 }, - "date_of_expiration": { "type": 6, "value": 1685639526258 }, + "date_created": { + "type": 6, + "value": 1685639526258 + }, + "date_last_updated": { + "type": 6, + "value": 1685639526258 + }, + "date_of_expiration": { + "type": 6, + "value": 1685639526258 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -52011,7 +66686,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685647933824/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02zlv02ivoohx5iid3adn", "revision_nr": 1, "created": 1697467098314, "modified": 1697467098314 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02zlv02ivoohx5iid3adn", + "revision_nr": 1, + "created": 1697467098314, + "modified": 1697467098314 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685647933824", @@ -52025,15 +66709,30 @@ "total_amount": 1490, "history_id": 1685647933824, "id": 1685647933824, - "date_created": { "type": 6, "value": 1685647933824 }, - "date_last_updated": { "type": 6, "value": 1685648093267 }, - "date_of_expiration": { "type": 6, "value": 1685647933824 }, + "date_created": { + "type": 6, + "value": 1685647933824 + }, + "date_last_updated": { + "type": 6, + "value": 1685648093267 + }, + "date_of_expiration": { + "type": 6, + "value": 1685647933824 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1685648093267 }, - "money_release_date": { "type": 6, "value": 1685648093267 }, + "date_approved": { + "type": 6, + "value": 1685648093267 + }, + "money_release_date": { + "type": 6, + "value": 1685648093267 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -52090,9 +66789,18 @@ "original_amount": 13603163, "total_amount": 13603163, "id": 1685653675417, - "date_created": { "type": 6, "value": 1685653675417 }, - "date_last_updated": { "type": 6, "value": 1685653675417 }, - "date_of_expiration": { "type": 6, "value": 1685653675417 }, + "date_created": { + "type": 6, + "value": 1685653675417 + }, + "date_last_updated": { + "type": 6, + "value": 1685653675417 + }, + "date_of_expiration": { + "type": 6, + "value": 1685653675417 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -52119,7 +66827,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1688596994749/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02zn302j1oohxdy1pckkp", "revision_nr": 1, "created": 1697467098358, "modified": 1697467098358 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02zn302j1oohxdy1pckkp", + "revision_nr": 1, + "created": 1697467098358, + "modified": 1697467098358 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1688596994749", @@ -52133,9 +66850,18 @@ "total_amount": 3463, "history_id": 1688596994749, "id": 1688596994749, - "date_created": { "type": 6, "value": 1688596994749 }, - "date_last_updated": { "type": 6, "value": 1688596994749 }, - "date_of_expiration": { "type": 6, "value": 1691188994749 }, + "date_created": { + "type": 6, + "value": 1688596994749 + }, + "date_last_updated": { + "type": 6, + "value": 1688596994749 + }, + "date_of_expiration": { + "type": 6, + "value": 1691188994749 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -52160,7 +66886,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689384333712/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02znn02j4oohx6s4l0qs8", "revision_nr": 1, "created": 1697467098378, "modified": 1697467098378 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02znn02j4oohx6s4l0qs8", + "revision_nr": 1, + "created": 1697467098378, + "modified": 1697467098378 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689384333712", @@ -52174,9 +66909,18 @@ "total_amount": 1000, "history_id": 1689384333712, "id": 1689384333712, - "date_created": { "type": 6, "value": 1689384333712 }, - "date_last_updated": { "type": 6, "value": 1689384333712 }, - "date_of_expiration": { "type": 6, "value": 1691976333712 }, + "date_created": { + "type": 6, + "value": 1689384333712 + }, + "date_last_updated": { + "type": 6, + "value": 1689384333712 + }, + "date_of_expiration": { + "type": 6, + "value": 1691976333712 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -52192,7 +66936,13 @@ "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1692547137377 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692547137377 + } + }, "revision": "lnt02zo102j6oohx6m550vki", "revision_nr": 1, "created": 1697467098393, @@ -52254,8 +67004,14 @@ "total_amount": 1671, "id": 1689955137377, "history_id": 1689955137377, - "date_created": { "type": 6, "value": 1689955137377 }, - "date_last_updated": { "type": 6, "value": 1689955137377 }, + "date_created": { + "type": 6, + "value": 1689955137377 + }, + "date_last_updated": { + "type": 6, + "value": 1689955137377 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -52273,7 +67029,13 @@ "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693429523298 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693429523298 + } + }, "revision": "lnt02zp302jboohx7kx28uuw", "revision_nr": 1, "created": 1697467098430, @@ -52335,16 +67097,28 @@ "total_amount": 20, "id": 1690837523298, "history_id": 1690837523298, - "date_created": { "type": 6, "value": 1690837523298 }, - "date_last_updated": { "type": 6, "value": 1690840864751 }, + "date_created": { + "type": 6, + "value": 1690837523298 + }, + "date_last_updated": { + "type": 6, + "value": 1690840864751 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1690840864751 }, - "money_release_date": { "type": 6, "value": 1690840864751 }, + "date_approved": { + "type": 6, + "value": 1690840864751 + }, + "money_release_date": { + "type": 6, + "value": 1690840864751 + }, "money_release_status": "approved", "wasDebited": true }, @@ -52398,9 +67172,18 @@ "total_amount": 17960, "id": 1690844181474, "history_id": 1690844181474, - "date_created": { "type": 6, "value": 1690844181474 }, - "date_last_updated": { "type": 6, "value": 1690844181474 }, - "date_of_expiration": { "type": 6, "value": 1690844181474 }, + "date_created": { + "type": 6, + "value": 1690844181474 + }, + "date_last_updated": { + "type": 6, + "value": 1690844181474 + }, + "date_of_expiration": { + "type": 6, + "value": 1690844181474 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -52417,13 +67200,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history", - "content": { "type": 1, "value": {}, "revision": "lnt02z4a02gdoohx4c01dpfz", "revision_nr": 1, "created": 1697467098489, "modified": 1697467098489 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02z4a02gdoohx4c01dpfz", + "revision_nr": 1, + "created": 1697467098489, + "modified": 1697467098489 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1688858744635 } }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1688858744635 + } + }, "revision": "lnt02zqx02jioohxfdiy96yz", "revision_nr": 1, "created": 1697467098496, @@ -52434,7 +67232,16 @@ "path": "ivipcoin-db::__movement_wallet__/088753368634775000", "content": { "type": 1, - "value": { "dataModificacao": 1684160584822, "dateValidity": 1684160584822, "totalValue": 8.87, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1695956400000 } }, + "value": { + "dataModificacao": 1684160584822, + "dateValidity": 1684160584822, + "totalValue": 8.87, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1695956400000 + } + }, "revision": "lnt02z3x02gaoohxd8ps7ja3", "revision_nr": 1, "created": 1697467098504, @@ -52445,7 +67252,11 @@ "path": "ivipcoin-db::__movement_wallet__/091878369033558510/balances/IVIP", "content": { "type": 1, - "value": { "available": "465751.00000000", "symbol": "IVIP", "value": 507.45 }, + "value": { + "available": "465751.00000000", + "symbol": "IVIP", + "value": 507.45 + }, "revision": "lnt02zrc02jloohx91hrc14o", "revision_nr": 1, "created": 1697467098511, @@ -52454,7 +67265,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02zrc02jkoohx99lugdvz", "revision_nr": 1, "created": 1697467098519, "modified": 1697467098519 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02zrc02jkoohx99lugdvz", + "revision_nr": 1, + "created": 1697467098519, + "modified": 1697467098519 + } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689132397301/description", @@ -52469,7 +67287,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689132397301/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02zrz02jpoohx7ibja3io", "revision_nr": 1, "created": 1697467098534, "modified": 1697467098534 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02zrz02jpoohx7ibja3io", + "revision_nr": 1, + "created": 1697467098534, + "modified": 1697467098534 + } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689132397301", @@ -52483,15 +67310,30 @@ "total_amount": 200, "history_id": 1689132397301, "id": 1689132397301, - "date_created": { "type": 6, "value": 1689132397301 }, - "date_last_updated": { "type": 6, "value": 1689153725926 }, - "date_of_expiration": { "type": 6, "value": 1691724397301 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689153725926 }, - "money_release_date": { "type": 6, "value": 1689153725926 }, + "date_created": { + "type": 6, + "value": 1689132397301 + }, + "date_last_updated": { + "type": 6, + "value": 1689153725926 + }, + "date_of_expiration": { + "type": 6, + "value": 1691724397301 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689153725926 + }, + "money_release_date": { + "type": 6, + "value": 1689153725926 + }, "money_release_status": "approved", "wasDebited": true }, @@ -52537,9 +67379,18 @@ "original_amount": 82125, "total_amount": 82125, "id": 1689197549929, - "date_created": { "type": 6, "value": 1689197549929 }, - "date_last_updated": { "type": 6, "value": 1689197549929 }, - "date_of_expiration": { "type": 6, "value": 1689197549929 }, + "date_created": { + "type": 6, + "value": 1689197549929 + }, + "date_last_updated": { + "type": 6, + "value": 1689197549929 + }, + "date_of_expiration": { + "type": 6, + "value": 1689197549929 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -52558,7 +67409,13 @@ "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698492550248 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698492550248 + } + }, "revision": "lnt02zsr02jtoohx84bqg5n1", "revision_nr": 1, "created": 1697467098562, @@ -52621,8 +67478,14 @@ "total_amount": 458, "id": "1695900550248", "history_id": "1695900550248", - "date_created": { "type": 6, "value": 1695900550248 }, - "date_last_updated": { "type": 6, "value": 1695900550248 }, + "date_created": { + "type": 6, + "value": 1695900550248 + }, + "date_last_updated": { + "type": 6, + "value": 1695900550248 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -52640,7 +67503,13 @@ "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698492550761 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698492550761 + } + }, "revision": "lnt02ztt02jyoohx5plsau3o", "revision_nr": 1, "created": 1697467098600, @@ -52703,8 +67572,14 @@ "total_amount": 458, "id": "1695900550761", "history_id": "1695900550761", - "date_created": { "type": 6, "value": 1695900550761 }, - "date_last_updated": { "type": 6, "value": 1695900550761 }, + "date_created": { + "type": 6, + "value": 1695900550761 + }, + "date_last_updated": { + "type": 6, + "value": 1695900550761 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -52722,7 +67597,13 @@ "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698492565784 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698492565784 + } + }, "revision": "lnt02zus02k3oohxgxl4bplr", "revision_nr": 1, "created": 1697467098634, @@ -52785,16 +67666,28 @@ "total_amount": 458, "id": "1695900565784", "history_id": "1695900565784", - "date_created": { "type": 6, "value": 1695900565784 }, - "date_last_updated": { "type": 6, "value": 1695901613220 }, + "date_created": { + "type": 6, + "value": 1695900565784 + }, + "date_last_updated": { + "type": 6, + "value": 1695901613220 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1695901613220 }, - "money_release_date": { "type": 6, "value": 1695901613220 }, + "date_approved": { + "type": 6, + "value": 1695901613220 + }, + "money_release_date": { + "type": 6, + "value": 1695901613220 + }, "money_release_status": "approved", "wasDebited": true }, @@ -52849,9 +67742,18 @@ "total_amount": 383626, "id": "1695903994262", "history_id": "1695903994262", - "date_created": { "type": 6, "value": 1695903994262 }, - "date_last_updated": { "type": 6, "value": 1695903994262 }, - "date_of_expiration": { "type": 6, "value": 1695903994262 }, + "date_created": { + "type": 6, + "value": 1695903994262 + }, + "date_last_updated": { + "type": 6, + "value": 1695903994262 + }, + "date_of_expiration": { + "type": 6, + "value": 1695903994262 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -52868,13 +67770,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history", - "content": { "type": 1, "value": {}, "revision": "lnt02zrr02jmoohx8e0a95al", "revision_nr": 1, "created": 1697467098693, "modified": 1697467098693 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02zrr02jmoohx8e0a95al", + "revision_nr": 1, + "created": 1697467098693, + "modified": 1697467098693 + } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02zwl02kaoohxccw9fu1o", "revision_nr": 1, "created": 1697467098700, @@ -52885,7 +67798,16 @@ "path": "ivipcoin-db::__movement_wallet__/091878369033558510", "content": { "type": 1, - "value": { "dataModificacao": 1689132373088, "dateValidity": 1689132373088, "totalValue": 41.04, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696129200000 } }, + "value": { + "dataModificacao": 1689132373088, + "dateValidity": 1689132373088, + "totalValue": 41.04, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696129200000 + } + }, "revision": "lnt02zrc02jjoohxhldiff6j", "revision_nr": 1, "created": 1697467098708, @@ -52905,7 +67827,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/092392253957118480/history/1678089239675/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02zx802kfoohx2otq2fta", "revision_nr": 1, "created": 1697467098724, "modified": 1697467098724 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02zx802kfoohx2otq2fta", + "revision_nr": 1, + "created": 1697467098724, + "modified": 1697467098724 + } }, { "path": "ivipcoin-db::__movement_wallet__/092392253957118480/history/1678089239675", @@ -52919,14 +67850,26 @@ "total_amount": 50, "history_id": 1678089239675, "id": 1678089239675, - "date_created": { "type": 6, "value": 1678089239675 }, - "date_last_updated": { "type": 6, "value": 1678716487775 }, - "date_of_expiration": { "type": 6, "value": 1680681239675 }, + "date_created": { + "type": 6, + "value": 1678089239675 + }, + "date_last_updated": { + "type": 6, + "value": 1678716487775 + }, + "date_of_expiration": { + "type": 6, + "value": 1680681239675 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678716487775 }, + "money_release_date": { + "type": 6, + "value": 1678716487775 + }, "money_release_status": "rejected" }, "revision": "lnt02zx002kdoohxft9vgbum", @@ -52937,13 +67880,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/092392253957118480/history", - "content": { "type": 1, "value": {}, "revision": "lnt02zx002kcoohxcqxg7jf8", "revision_nr": 1, "created": 1697467098738, "modified": 1697467098738 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02zx002kcoohxcqxg7jf8", + "revision_nr": 1, + "created": 1697467098738, + "modified": 1697467098738 + } }, { "path": "ivipcoin-db::__movement_wallet__/092392253957118480", "content": { "type": 1, - "value": { "dataModificacao": 1677466864789, "dateValidity": 1678103589466, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677466864789, + "dateValidity": 1678103589466, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02zx002kboohxcqwv8q3v", "revision_nr": 1, "created": 1697467098745, @@ -52963,7 +67919,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689457461269/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02zy902kkoohx2cad0j4a", "revision_nr": 1, "created": 1697467098760, "modified": 1697467098760 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02zy902kkoohx2cad0j4a", + "revision_nr": 1, + "created": 1697467098760, + "modified": 1697467098760 + } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689457461269", @@ -52977,9 +67942,18 @@ "total_amount": 1500, "history_id": 1689457461269, "id": 1689457461269, - "date_created": { "type": 6, "value": 1689457461269 }, - "date_last_updated": { "type": 6, "value": 1689457461269 }, - "date_of_expiration": { "type": 6, "value": 1692049461269 }, + "date_created": { + "type": 6, + "value": 1689457461269 + }, + "date_last_updated": { + "type": 6, + "value": 1689457461269 + }, + "date_of_expiration": { + "type": 6, + "value": 1692049461269 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -53004,7 +67978,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689629737479/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02zyw02knoohxbxmxfs52", "revision_nr": 1, "created": 1697467098783, "modified": 1697467098783 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02zyw02knoohxbxmxfs52", + "revision_nr": 1, + "created": 1697467098783, + "modified": 1697467098783 + } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689629737479", @@ -53018,9 +68001,18 @@ "total_amount": 1500, "history_id": 1689629737479, "id": 1689629737479, - "date_created": { "type": 6, "value": 1689629737479 }, - "date_last_updated": { "type": 6, "value": 1689629737479 }, - "date_of_expiration": { "type": 6, "value": 1692221737479 }, + "date_created": { + "type": 6, + "value": 1689629737479 + }, + "date_last_updated": { + "type": 6, + "value": 1689629737479 + }, + "date_of_expiration": { + "type": 6, + "value": 1692221737479 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -53034,13 +68026,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history", - "content": { "type": 1, "value": {}, "revision": "lnt02zy102khoohxcf1h58q6", "revision_nr": 1, "created": 1697467098797, "modified": 1697467098797 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02zy102khoohxcf1h58q6", + "revision_nr": 1, + "created": 1697467098797, + "modified": 1697467098797 + } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02zzh02kooohxfown5zsl", "revision_nr": 1, "created": 1697467098804, @@ -53051,7 +68054,13 @@ "path": "ivipcoin-db::__movement_wallet__/095633229427881890", "content": { "type": 1, - "value": { "dataModificacao": 1689457427075, "dateValidity": 1689457427075, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1689457427075, + "dateValidity": 1689457427075, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02zy102kgoohxdpvaci1n", "revision_nr": 1, "created": 1697467098811, @@ -53071,7 +68080,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/096124016860355650/history/1684543373520/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0300202ktoohxc3qd7q7w", "revision_nr": 1, "created": 1697467098827, "modified": 1697467098827 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0300202ktoohxc3qd7q7w", + "revision_nr": 1, + "created": 1697467098827, + "modified": 1697467098827 + } }, { "path": "ivipcoin-db::__movement_wallet__/096124016860355650/history/1684543373520", @@ -53085,9 +68103,18 @@ "total_amount": 100, "history_id": 1684543373520, "id": 1684543373520, - "date_created": { "type": 6, "value": 1684543373520 }, - "date_last_updated": { "type": 6, "value": 1684543373520 }, - "date_of_expiration": { "type": 6, "value": 1687135373520 }, + "date_created": { + "type": 6, + "value": 1684543373520 + }, + "date_last_updated": { + "type": 6, + "value": 1684543373520 + }, + "date_of_expiration": { + "type": 6, + "value": 1687135373520 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -53101,13 +68128,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/096124016860355650/history", - "content": { "type": 1, "value": {}, "revision": "lnt02zzv02kqoohxg9e8ctx9", "revision_nr": 1, "created": 1697467098842, "modified": 1697467098842 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02zzv02kqoohxg9e8ctx9", + "revision_nr": 1, + "created": 1697467098842, + "modified": 1697467098842 + } }, { "path": "ivipcoin-db::__movement_wallet__/096124016860355650/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt0300q02kuoohxfoos9x4e", "revision_nr": 1, "created": 1697467098849, @@ -53118,7 +68156,13 @@ "path": "ivipcoin-db::__movement_wallet__/096124016860355650", "content": { "type": 1, - "value": { "dataModificacao": 1684187165100, "dateValidity": 1684187165100, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684187165100, + "dateValidity": 1684187165100, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02zzv02kpoohxccspfurw", "revision_nr": 1, "created": 1697467098856, @@ -53129,7 +68173,13 @@ "path": "ivipcoin-db::__movement_wallet__/096261179492313170", "content": { "type": 1, - "value": { "dataModificacao": 1696117965905, "dateValidity": 1696117965942, "balances": {}, "history": {}, "currencyType": "USD" }, + "value": { + "dataModificacao": 1696117965905, + "dateValidity": 1696117965942, + "balances": {}, + "history": {}, + "currencyType": "USD" + }, "revision": "lnt0301402kvoohxfjkvcjj8", "revision_nr": 1, "created": 1697467098863, @@ -53140,7 +68190,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/balances/BRL", "content": { "type": 1, - "value": { "available": "10.00000000", "symbol": "BRL", "value": 1.92 }, + "value": { + "available": "10.00000000", + "symbol": "BRL", + "value": 1.92 + }, "revision": "lnt0301b02kyoohxcxazaeac", "revision_nr": 1, "created": 1697467098870, @@ -53151,7 +68205,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/balances/IVIP", "content": { "type": 1, - "value": { "available": "480000.00000000", "symbol": "IVIP", "value": 62.92 }, + "value": { + "available": "480000.00000000", + "symbol": "IVIP", + "value": 62.92 + }, "revision": "lnt0301i02kzoohxhhelat0d", "revision_nr": 1, "created": 1697467098878, @@ -53160,7 +68218,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/balances", - "content": { "type": 1, "value": {}, "revision": "lnt0301b02kxoohxbfrtdi8o", "revision_nr": 1, "created": 1697467098885, "modified": 1697467098885 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0301b02kxoohxbfrtdi8o", + "revision_nr": 1, + "created": 1697467098885, + "modified": 1697467098885 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680564390483/description", @@ -53175,7 +68240,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680564390483/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0302602l3oohx7ftxc2ry", "revision_nr": 1, "created": 1697467098901, "modified": 1697467098901 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0302602l3oohx7ftxc2ry", + "revision_nr": 1, + "created": 1697467098901, + "modified": 1697467098901 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680564390483", @@ -53189,15 +68263,30 @@ "total_amount": 3000, "history_id": 1680564390483, "id": 1680564390483, - "date_created": { "type": 6, "value": 1680564390483 }, - "date_last_updated": { "type": 6, "value": 1680570580299 }, - "date_of_expiration": { "type": 6, "value": 1683156390483 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1680570580299 }, - "money_release_date": { "type": 6, "value": 1680570580299 }, + "date_created": { + "type": 6, + "value": 1680564390483 + }, + "date_last_updated": { + "type": 6, + "value": 1680570580299 + }, + "date_of_expiration": { + "type": 6, + "value": 1683156390483 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1680570580299 + }, + "money_release_date": { + "type": 6, + "value": 1680570580299 + }, "money_release_status": "approved", "wasDebited": true }, @@ -53220,7 +68309,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680570737667/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0302t02l6oohxepb5cwuc", "revision_nr": 1, "created": 1697467098924, "modified": 1697467098924 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0302t02l6oohxepb5cwuc", + "revision_nr": 1, + "created": 1697467098924, + "modified": 1697467098924 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680570737667", @@ -53234,15 +68332,30 @@ "total_amount": 2000, "history_id": 1680570737667, "id": 1680570737667, - "date_created": { "type": 6, "value": 1680570737667 }, - "date_last_updated": { "type": 6, "value": 1680570777315 }, - "date_of_expiration": { "type": 6, "value": 1683162737667 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1680570777315 }, - "money_release_date": { "type": 6, "value": 1680570777315 }, + "date_created": { + "type": 6, + "value": 1680570737667 + }, + "date_last_updated": { + "type": 6, + "value": 1680570777315 + }, + "date_of_expiration": { + "type": 6, + "value": 1683162737667 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1680570777315 + }, + "money_release_date": { + "type": 6, + "value": 1680570777315 + }, "money_release_status": "approved", "wasDebited": true }, @@ -53267,7 +68380,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, "revision": "lnt0303e02lboohx55xg6kbk", "revision_nr": 1, "created": 1697467098946, @@ -53276,11 +68393,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0303e02laoohxda545ksz", "revision_nr": 1, "created": 1697467098954, "modified": 1697467098954 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0303e02laoohxda545ksz", + "revision_nr": 1, + "created": 1697467098954, + "modified": 1697467098954 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806/details", - "content": { "type": 1, "value": {}, "revision": "lnt0303e02l9oohx3w5r6kbn", "revision_nr": 1, "created": 1697467098962, "modified": 1697467098962 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0303e02l9oohx3w5r6kbn", + "revision_nr": 1, + "created": 1697467098962, + "modified": 1697467098962 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806", @@ -53294,9 +68425,18 @@ "total_amount": 12000, "history_id": 1680571158806, "id": 1680571158806, - "date_created": { "type": 6, "value": 1680571158806 }, - "date_last_updated": { "type": 6, "value": 1680571158806 }, - "date_of_expiration": { "type": 6, "value": 1683163158806 }, + "date_created": { + "type": 6, + "value": 1680571158806 + }, + "date_last_updated": { + "type": 6, + "value": 1680571158806 + }, + "date_of_expiration": { + "type": 6, + "value": 1683163158806 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -53359,9 +68499,18 @@ "total_amount": 1200, "id": 1683548182568, "contract_id": "1680571158806", - "date_created": { "type": 6, "value": 1683548182568 }, - "date_last_updated": { "type": 6, "value": 1683548182568 }, - "date_of_expiration": { "type": 6, "value": 1683548182568 }, + "date_created": { + "type": 6, + "value": 1683548182568 + }, + "date_last_updated": { + "type": 6, + "value": 1683548182568 + }, + "date_of_expiration": { + "type": 6, + "value": 1683548182568 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -53425,9 +68574,18 @@ "total_amount": 1200, "id": 1684367503606, "contract_id": "1680571158806", - "date_created": { "type": 6, "value": 1684367503606 }, - "date_last_updated": { "type": 6, "value": 1684367503606 }, - "date_of_expiration": { "type": 6, "value": 1684367503606 }, + "date_created": { + "type": 6, + "value": 1684367503606 + }, + "date_last_updated": { + "type": 6, + "value": 1684367503606 + }, + "date_of_expiration": { + "type": 6, + "value": 1684367503606 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -53456,7 +68614,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, "revision": "lnt0305r02lmoohx1u5ognkp", "revision_nr": 1, "created": 1697467099031, @@ -53465,11 +68627,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0305r02lloohxc8tq9k6w", "revision_nr": 1, "created": 1697467099038, "modified": 1697467099038 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0305r02lloohxc8tq9k6w", + "revision_nr": 1, + "created": 1697467099038, + "modified": 1697467099038 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554/details", - "content": { "type": 1, "value": {}, "revision": "lnt0305r02lkoohxgq8l7yfy", "revision_nr": 1, "created": 1697467099044, "modified": 1697467099044 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0305r02lkoohxgq8l7yfy", + "revision_nr": 1, + "created": 1697467099044, + "modified": 1697467099044 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554", @@ -53483,9 +68659,18 @@ "total_amount": 2320, "history_id": 1684367721554, "id": 1684367721554, - "date_created": { "type": 6, "value": 1684367721554 }, - "date_last_updated": { "type": 6, "value": 1684367721554 }, - "date_of_expiration": { "type": 6, "value": 1686959721554 }, + "date_created": { + "type": 6, + "value": 1684367721554 + }, + "date_last_updated": { + "type": 6, + "value": 1684367721554 + }, + "date_of_expiration": { + "type": 6, + "value": 1686959721554 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -53548,9 +68733,18 @@ "total_amount": 290, "id": 1684415962143, "contract_id": "1684367721554", - "date_created": { "type": 6, "value": 1684415962143 }, - "date_last_updated": { "type": 6, "value": 1684415962143 }, - "date_of_expiration": { "type": 6, "value": 1684415962143 }, + "date_created": { + "type": 6, + "value": 1684415962143 + }, + "date_last_updated": { + "type": 6, + "value": 1684415962143 + }, + "date_of_expiration": { + "type": 6, + "value": 1684415962143 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -53577,7 +68771,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684544477879/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0307d02lsoohxb43ngahw", "revision_nr": 1, "created": 1697467099089, "modified": 1697467099089 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0307d02lsoohxb43ngahw", + "revision_nr": 1, + "created": 1697467099089, + "modified": 1697467099089 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684544477879", @@ -53591,15 +68794,30 @@ "total_amount": 1600, "history_id": 1684544477879, "id": 1684544477879, - "date_created": { "type": 6, "value": 1684544477879 }, - "date_last_updated": { "type": 6, "value": 1684545036886 }, - "date_of_expiration": { "type": 6, "value": 1687136477879 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684545036886 }, - "money_release_date": { "type": 6, "value": 1684545036886 }, + "date_created": { + "type": 6, + "value": 1684544477879 + }, + "date_last_updated": { + "type": 6, + "value": 1684545036886 + }, + "date_of_expiration": { + "type": 6, + "value": 1687136477879 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684545036886 + }, + "money_release_date": { + "type": 6, + "value": 1684545036886 + }, "money_release_status": "approved", "wasDebited": true }, @@ -53645,9 +68863,18 @@ "original_amount": 77493341, "total_amount": 77493341, "id": 1684624390329, - "date_created": { "type": 6, "value": 1684624390329 }, - "date_last_updated": { "type": 6, "value": 1684624390329 }, - "date_of_expiration": { "type": 6, "value": 1684624390329 }, + "date_created": { + "type": 6, + "value": 1684624390329 + }, + "date_last_updated": { + "type": 6, + "value": 1684624390329 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624390329 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -53677,7 +68904,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 5 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 5 + }, "revision": "lnt0308f02lzoohx2ehv4dmc", "revision_nr": 1, "created": 1697467099129, @@ -53686,11 +68917,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0308e02lyoohxd7yz1qct", "revision_nr": 1, "created": 1697467099137, "modified": 1697467099137 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0308e02lyoohxd7yz1qct", + "revision_nr": 1, + "created": 1697467099137, + "modified": 1697467099137 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049/details", - "content": { "type": 1, "value": {}, "revision": "lnt0308e02lxoohx4jiz1jg5", "revision_nr": 1, "created": 1697467099145, "modified": 1697467099145 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0308e02lxoohx4jiz1jg5", + "revision_nr": 1, + "created": 1697467099145, + "modified": 1697467099145 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049", @@ -53704,9 +68949,18 @@ "total_amount": 255, "history_id": 1684661775049, "id": 1684661775049, - "date_created": { "type": 6, "value": 1684661775049 }, - "date_last_updated": { "type": 6, "value": 1684661775049 }, - "date_of_expiration": { "type": 6, "value": 1687253775049 }, + "date_created": { + "type": 6, + "value": 1684661775049 + }, + "date_last_updated": { + "type": 6, + "value": 1684661775049 + }, + "date_of_expiration": { + "type": 6, + "value": 1687253775049 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -53755,9 +69009,18 @@ "original_amount": 1218292, "total_amount": 1218292, "id": 1684661800868, - "date_created": { "type": 6, "value": 1684661800868 }, - "date_last_updated": { "type": 6, "value": 1684661800868 }, - "date_of_expiration": { "type": 6, "value": 1684661800868 }, + "date_created": { + "type": 6, + "value": 1684661800868 + }, + "date_last_updated": { + "type": 6, + "value": 1684661800868 + }, + "date_of_expiration": { + "type": 6, + "value": 1684661800868 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -53785,7 +69048,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685452383443/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0309y02m4oohxci1213cz", "revision_nr": 1, "created": 1697467099182, "modified": 1697467099182 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0309y02m4oohxci1213cz", + "revision_nr": 1, + "created": 1697467099182, + "modified": 1697467099182 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685452383443", @@ -53799,15 +69071,30 @@ "total_amount": 255, "history_id": 1685452383443, "id": 1685452383443, - "date_created": { "type": 6, "value": 1685452383443 }, - "date_last_updated": { "type": 6, "value": 1685485920714 }, - "date_of_expiration": { "type": 6, "value": 1688044383443 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685485920714 }, - "money_release_date": { "type": 6, "value": 1685485920714 }, + "date_created": { + "type": 6, + "value": 1685452383443 + }, + "date_last_updated": { + "type": 6, + "value": 1685485920714 + }, + "date_of_expiration": { + "type": 6, + "value": 1688044383443 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685485920714 + }, + "money_release_date": { + "type": 6, + "value": 1685485920714 + }, "money_release_status": "approved", "wasDebited": true }, @@ -53867,9 +69154,18 @@ "total_amount": 255, "id": 1685486477860, "contract_id": "1684661775049", - "date_created": { "type": 6, "value": 1685486477860 }, - "date_last_updated": { "type": 6, "value": 1685486477860 }, - "date_of_expiration": { "type": 6, "value": 1685486477860 }, + "date_created": { + "type": 6, + "value": 1685486477860 + }, + "date_last_updated": { + "type": 6, + "value": 1685486477860 + }, + "date_of_expiration": { + "type": 6, + "value": 1685486477860 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -53929,9 +69225,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667437011, - "date_created": { "type": 6, "value": 1685667437011 }, - "date_last_updated": { "type": 6, "value": 1685667437011 }, - "date_of_expiration": { "type": 6, "value": 1748825837011 }, + "date_created": { + "type": 6, + "value": 1685667437011 + }, + "date_last_updated": { + "type": 6, + "value": 1685667437011 + }, + "date_of_expiration": { + "type": 6, + "value": 1748825837011 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -53991,9 +69296,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667452001, - "date_created": { "type": 6, "value": 1685667452001 }, - "date_last_updated": { "type": 6, "value": 1685667452001 }, - "date_of_expiration": { "type": 6, "value": 1717289852001 }, + "date_created": { + "type": 6, + "value": 1685667452001 + }, + "date_last_updated": { + "type": 6, + "value": 1685667452001 + }, + "date_of_expiration": { + "type": 6, + "value": 1717289852001 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54053,9 +69367,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667466065, - "date_created": { "type": 6, "value": 1685667466065 }, - "date_last_updated": { "type": 6, "value": 1685667466065 }, - "date_of_expiration": { "type": 6, "value": 1701478666065 }, + "date_created": { + "type": 6, + "value": 1685667466065 + }, + "date_last_updated": { + "type": 6, + "value": 1685667466065 + }, + "date_of_expiration": { + "type": 6, + "value": 1701478666065 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54115,9 +69438,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667479611, - "date_created": { "type": 6, "value": 1685667479611 }, - "date_last_updated": { "type": 6, "value": 1685667479611 }, - "date_of_expiration": { "type": 6, "value": 1688259479611 }, + "date_created": { + "type": 6, + "value": 1685667479611 + }, + "date_last_updated": { + "type": 6, + "value": 1685667479611 + }, + "date_of_expiration": { + "type": 6, + "value": 1688259479611 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54177,9 +69509,18 @@ "original_amount": 22711633, "total_amount": 22711633, "id": 1687307213896, - "date_created": { "type": 6, "value": 1687307213896 }, - "date_last_updated": { "type": 6, "value": 1687307213896 }, - "date_of_expiration": { "type": 6, "value": 1718929613896 }, + "date_created": { + "type": 6, + "value": 1687307213896 + }, + "date_last_updated": { + "type": 6, + "value": 1687307213896 + }, + "date_of_expiration": { + "type": 6, + "value": 1718929613896 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54239,9 +69580,18 @@ "original_amount": 24000000, "total_amount": 24000000, "id": 1687313762388, - "date_created": { "type": 6, "value": 1687313762388 }, - "date_last_updated": { "type": 6, "value": 1687313762388 }, - "date_of_expiration": { "type": 6, "value": 1750472162388 }, + "date_created": { + "type": 6, + "value": 1687313762388 + }, + "date_last_updated": { + "type": 6, + "value": 1687313762388 + }, + "date_of_expiration": { + "type": 6, + "value": 1750472162388 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54301,9 +69651,18 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1688400402521, - "date_created": { "type": 6, "value": 1688400402521 }, - "date_last_updated": { "type": 6, "value": 1688400402521 }, - "date_of_expiration": { "type": 6, "value": 1688400402521 }, + "date_created": { + "type": 6, + "value": 1688400402521 + }, + "date_last_updated": { + "type": 6, + "value": 1688400402521 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400402521 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54364,9 +69723,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1688403044242, - "date_created": { "type": 6, "value": 1688403044242 }, - "date_last_updated": { "type": 6, "value": 1688403044242 }, - "date_of_expiration": { "type": 6, "value": 1691081444242 }, + "date_created": { + "type": 6, + "value": 1688403044242 + }, + "date_last_updated": { + "type": 6, + "value": 1688403044242 + }, + "date_of_expiration": { + "type": 6, + "value": 1691081444242 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54393,7 +69761,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689132091915/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt030gk02myoohxgika9p4e", "revision_nr": 1, "created": 1697467099419, "modified": 1697467099419 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt030gk02myoohxgika9p4e", + "revision_nr": 1, + "created": 1697467099419, + "modified": 1697467099419 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689132091915", @@ -54407,15 +69784,30 @@ "total_amount": 1500, "history_id": 1689132091915, "id": 1689132091915, - "date_created": { "type": 6, "value": 1689132091915 }, - "date_last_updated": { "type": 6, "value": 1689210471960 }, - "date_of_expiration": { "type": 6, "value": 1691724091915 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689210471960 }, - "money_release_date": { "type": 6, "value": 1689210471960 }, + "date_created": { + "type": 6, + "value": 1689132091915 + }, + "date_last_updated": { + "type": 6, + "value": 1689210471960 + }, + "date_of_expiration": { + "type": 6, + "value": 1691724091915 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689210471960 + }, + "money_release_date": { + "type": 6, + "value": 1689210471960 + }, "money_release_status": "approved", "wasDebited": true }, @@ -54475,9 +69867,18 @@ "total_amount": 1200, "id": 1689211234387, "contract_id": "1680571158806", - "date_created": { "type": 6, "value": 1689211234387 }, - "date_last_updated": { "type": 6, "value": 1689211234387 }, - "date_of_expiration": { "type": 6, "value": 1689211234387 }, + "date_created": { + "type": 6, + "value": 1689211234387 + }, + "date_last_updated": { + "type": 6, + "value": 1689211234387 + }, + "date_of_expiration": { + "type": 6, + "value": 1689211234387 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -54541,9 +69942,18 @@ "total_amount": 290, "id": 1689211234773, "contract_id": "1684367721554", - "date_created": { "type": 6, "value": 1689211234773 }, - "date_last_updated": { "type": 6, "value": 1689211234773 }, - "date_of_expiration": { "type": 6, "value": 1689211234773 }, + "date_created": { + "type": 6, + "value": 1689211234773 + }, + "date_last_updated": { + "type": 6, + "value": 1689211234773 + }, + "date_of_expiration": { + "type": 6, + "value": 1689211234773 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -54603,9 +70013,18 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1691081485992, - "date_created": { "type": 6, "value": 1691081485992 }, - "date_last_updated": { "type": 6, "value": 1691081485992 }, - "date_of_expiration": { "type": 6, "value": 1691081485992 }, + "date_created": { + "type": 6, + "value": 1691081485992 + }, + "date_last_updated": { + "type": 6, + "value": 1691081485992 + }, + "date_of_expiration": { + "type": 6, + "value": 1691081485992 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54675,9 +70094,18 @@ "total_amount": 8000000, "id": 1691082200859, "history_id": 1691082200859, - "date_created": { "type": 6, "value": 1691082200859 }, - "date_last_updated": { "type": 6, "value": 1691082200859 }, - "date_of_expiration": { "type": 6, "value": 1693760600858 }, + "date_created": { + "type": 6, + "value": 1691082200859 + }, + "date_last_updated": { + "type": 6, + "value": 1691082200859 + }, + "date_of_expiration": { + "type": 6, + "value": 1693760600858 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54695,7 +70123,13 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694387537743 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694387537743 + } + }, "revision": "lnt030jr02ndoohxe3yxe64h", "revision_nr": 1, "created": 1697467099534, @@ -54757,16 +70191,28 @@ "total_amount": 1490, "id": 1691795537743, "history_id": 1691795537743, - "date_created": { "type": 6, "value": 1691795537743 }, - "date_last_updated": { "type": 6, "value": 1691805156867 }, + "date_created": { + "type": 6, + "value": 1691795537743 + }, + "date_last_updated": { + "type": 6, + "value": 1691805156867 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691805156867 }, - "money_release_date": { "type": 6, "value": 1691805156867 }, + "date_approved": { + "type": 6, + "value": 1691805156867 + }, + "money_release_date": { + "type": 6, + "value": 1691805156867 + }, "money_release_status": "approved", "wasDebited": true }, @@ -54826,9 +70272,18 @@ "total_amount": 1200, "id": 1691838943906, "contract_id": "1680571158806", - "date_created": { "type": 6, "value": 1691838943906 }, - "date_last_updated": { "type": 6, "value": 1691838943906 }, - "date_of_expiration": { "type": 6, "value": 1691838943906 }, + "date_created": { + "type": 6, + "value": 1691838943906 + }, + "date_last_updated": { + "type": 6, + "value": 1691838943906 + }, + "date_of_expiration": { + "type": 6, + "value": 1691838943906 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -54892,9 +70347,18 @@ "total_amount": 290, "id": 1691838944125, "contract_id": "1684367721554", - "date_created": { "type": 6, "value": 1691838944125 }, - "date_last_updated": { "type": 6, "value": 1691838944125 }, - "date_of_expiration": { "type": 6, "value": 1691838944125 }, + "date_created": { + "type": 6, + "value": 1691838944125 + }, + "date_last_updated": { + "type": 6, + "value": 1691838944125 + }, + "date_of_expiration": { + "type": 6, + "value": 1691838944125 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -54963,9 +70427,18 @@ "total_amount": 8160000, "id": "1693760654707", "history_id": "1693760654707", - "date_created": { "type": 6, "value": 1693760654707 }, - "date_last_updated": { "type": 6, "value": 1693760654707 }, - "date_of_expiration": { "type": 6, "value": 1693760654707 }, + "date_created": { + "type": 6, + "value": 1693760654707 + }, + "date_last_updated": { + "type": 6, + "value": 1693760654707 + }, + "date_of_expiration": { + "type": 6, + "value": 1693760654707 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -55034,16 +70507,28 @@ "total_amount": 5000000, "id": "1693869394011", "history_id": "1693869394011", - "date_created": { "type": 6, "value": 1693869394011 }, - "date_last_updated": { "type": 6, "value": 1696424640740 }, - "date_of_expiration": { "type": 6, "value": 1696461394011 }, + "date_created": { + "type": 6, + "value": 1693869394011 + }, + "date_last_updated": { + "type": 6, + "value": 1696424640740 + }, + "date_of_expiration": { + "type": 6, + "value": 1696461394011 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": { "type": 6, "value": 1696424640740 }, + "money_release_date": { + "type": 6, + "value": 1696424640740 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -55057,7 +70542,13 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697073911857 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697073911857 + } + }, "revision": "lnt030nq02nwoohxbce21jr4", "revision_nr": 1, "created": 1697467099677, @@ -55119,16 +70610,28 @@ "total_amount": 1490, "id": "1694481911857", "history_id": "1694481911857", - "date_created": { "type": 6, "value": 1694481911857 }, - "date_last_updated": { "type": 6, "value": 1694626658166 }, + "date_created": { + "type": 6, + "value": 1694481911857 + }, + "date_last_updated": { + "type": 6, + "value": 1694626658166 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694626658166 }, - "money_release_date": { "type": 6, "value": 1694626658166 }, + "date_approved": { + "type": 6, + "value": 1694626658166 + }, + "money_release_date": { + "type": 6, + "value": 1694626658166 + }, "money_release_status": "approved", "wasDebited": true }, @@ -55195,9 +70698,18 @@ "total_amount": 1200, "id": "1694627290479", "history_id": "1694627290479", - "date_created": { "type": 6, "value": 1694627290479 }, - "date_last_updated": { "type": 6, "value": 1694627290479 }, - "date_of_expiration": { "type": 6, "value": 1694627290479 }, + "date_created": { + "type": 6, + "value": 1694627290479 + }, + "date_last_updated": { + "type": 6, + "value": 1694627290479 + }, + "date_of_expiration": { + "type": 6, + "value": 1694627290479 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -55268,9 +70780,18 @@ "total_amount": 290, "id": "1694627290565", "history_id": "1694627290565", - "date_created": { "type": 6, "value": 1694627290565 }, - "date_last_updated": { "type": 6, "value": 1694627290565 }, - "date_of_expiration": { "type": 6, "value": 1694627290565 }, + "date_created": { + "type": 6, + "value": 1694627290565 + }, + "date_last_updated": { + "type": 6, + "value": 1694627290565 + }, + "date_of_expiration": { + "type": 6, + "value": 1694627290565 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -55340,9 +70861,18 @@ "total_amount": 8000000, "id": "1696555808953", "history_id": "1696555808953", - "date_created": { "type": 6, "value": 1696555808953 }, - "date_last_updated": { "type": 6, "value": 1696555808953 }, - "date_of_expiration": { "type": 6, "value": 1699234208931 }, + "date_created": { + "type": 6, + "value": 1696555808953 + }, + "date_last_updated": { + "type": 6, + "value": 1696555808953 + }, + "date_of_expiration": { + "type": 6, + "value": 1699234208931 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -55360,7 +70890,13 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699411744331 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699411744331 + } + }, "revision": "lnt030rb02odoohxcsah23bx", "revision_nr": 1, "created": 1697467099807, @@ -55423,16 +70959,28 @@ "total_amount": 1490, "id": "1696819744331", "history_id": "1696819744331", - "date_created": { "type": 6, "value": 1696819744331 }, - "date_last_updated": { "type": 6, "value": 1696855141326 }, + "date_created": { + "type": 6, + "value": 1696819744331 + }, + "date_last_updated": { + "type": 6, + "value": 1696855141326 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1696855141326 }, - "money_release_date": { "type": 6, "value": 1696855141326 }, + "date_approved": { + "type": 6, + "value": 1696855141326 + }, + "money_release_date": { + "type": 6, + "value": 1696855141326 + }, "money_release_status": "approved", "wasDebited": true }, @@ -55500,9 +71048,18 @@ "total_amount": 1200, "id": "1696861214347", "history_id": "1696861214347", - "date_created": { "type": 6, "value": 1696861214347 }, - "date_last_updated": { "type": 6, "value": 1696861214347 }, - "date_of_expiration": { "type": 6, "value": 1696861214347 }, + "date_created": { + "type": 6, + "value": 1696861214347 + }, + "date_last_updated": { + "type": 6, + "value": 1696861214347 + }, + "date_of_expiration": { + "type": 6, + "value": 1696861214347 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -55574,9 +71131,18 @@ "total_amount": 290, "id": "1696861218511", "history_id": "1696861218511", - "date_created": { "type": 6, "value": 1696861218511 }, - "date_last_updated": { "type": 6, "value": 1696861218511 }, - "date_of_expiration": { "type": 6, "value": 1696861218511 }, + "date_created": { + "type": 6, + "value": 1696861218511 + }, + "date_last_updated": { + "type": 6, + "value": 1696861218511 + }, + "date_of_expiration": { + "type": 6, + "value": 1696861218511 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -55592,7 +71158,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history", - "content": { "type": 1, "value": {}, "revision": "lnt0301x02l0oohxen7fhnvg", "revision_nr": 1, "created": 1697467099907, "modified": 1697467099907 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0301x02l0oohxen7fhnvg", + "revision_nr": 1, + "created": 1697467099907, + "modified": 1697467099907 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806/description", @@ -55609,7 +71182,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, "revision": "lnt030ui02ovoohx72r38eo2", "revision_nr": 1, "created": 1697467099921, @@ -55618,7 +71195,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806/costs", - "content": { "type": 2, "value": {}, "revision": "lnt030ui02ouoohx0va9024q", "revision_nr": 1, "created": 1697467099929, "modified": 1697467099929 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt030ui02ouoohx0va9024q", + "revision_nr": 1, + "created": 1697467099929, + "modified": 1697467099929 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806", @@ -55631,7 +71215,10 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { "type": 6, "value": 1680571158806 }, + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid" @@ -55644,7 +71231,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305", - "content": { "type": 1, "value": {}, "revision": "lnt030ub02oroohx0ipx9n78", "revision_nr": 1, "created": 1697467099944, "modified": 1697467099944 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt030ub02oroohx0ipx9n78", + "revision_nr": 1, + "created": 1697467099944, + "modified": 1697467099944 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806/description", @@ -55661,7 +71255,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, "revision": "lnt030vk02p0oohx4pm8flq9", "revision_nr": 1, "created": 1697467099961, @@ -55670,7 +71268,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806/costs", - "content": { "type": 2, "value": {}, "revision": "lnt030vk02ozoohxcu60czfo", "revision_nr": 1, "created": 1697467099969, "modified": 1697467099969 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt030vk02ozoohxcu60czfo", + "revision_nr": 1, + "created": 1697467099969, + "modified": 1697467099969 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806", @@ -55683,7 +71288,10 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { "type": 6, "value": 1680571158806 }, + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid" @@ -55709,7 +71317,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, "revision": "lnt030wf02p4oohx8j5t5vv0", "revision_nr": 1, "created": 1697467099991, @@ -55718,7 +71330,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554/costs", - "content": { "type": 2, "value": {}, "revision": "lnt030wf02p3oohx4n286wcg", "revision_nr": 1, "created": 1697467099998, "modified": 1697467099998 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt030wf02p3oohx4n286wcg", + "revision_nr": 1, + "created": 1697467099998, + "modified": 1697467099998 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554", @@ -55731,7 +71350,10 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { "type": 6, "value": 1684367721554 }, + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL", "status": "paid" @@ -55757,7 +71379,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 5 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 5 + }, "revision": "lnt030xa02p8oohx90f5acpi", "revision_nr": 1, "created": 1697467100022, @@ -55766,7 +71392,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049/costs", - "content": { "type": 2, "value": {}, "revision": "lnt030x902p7oohx2t6rf4bx", "revision_nr": 1, "created": 1697467100030, "modified": 1697467100030 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt030x902p7oohx2t6rf4bx", + "revision_nr": 1, + "created": 1697467100030, + "modified": 1697467100030 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049", @@ -55779,7 +71412,10 @@ "total_amount": 255, "installments": 1, "installment_amount": 255, - "date_created": { "type": 6, "value": 1684661775049 }, + "date_created": { + "type": 6, + "value": 1684661775049 + }, "history_id": 1684661775049, "currency_id": "BRL", "status": "paid" @@ -55792,7 +71428,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt030vd02owoohx161u8mpb", "revision_nr": 1, "created": 1697467100044, "modified": 1697467100044 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt030vd02owoohx161u8mpb", + "revision_nr": 1, + "created": 1697467100044, + "modified": 1697467100044 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806/description", @@ -55809,7 +71452,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, "revision": "lnt030yc02pdoohxdxq5axb2", "revision_nr": 1, "created": 1697467100059, @@ -55818,7 +71465,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806/costs", - "content": { "type": 2, "value": {}, "revision": "lnt030yc02pcoohx7ci97mof", "revision_nr": 1, "created": 1697467100066, "modified": 1697467100066 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt030yc02pcoohx7ci97mof", + "revision_nr": 1, + "created": 1697467100066, + "modified": 1697467100066 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806", @@ -55831,7 +71485,10 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { "type": 6, "value": 1680571158806 }, + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid" @@ -55857,7 +71514,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, "revision": "lnt030z702phoohxdlgw0ab2", "revision_nr": 1, "created": 1697467100091, @@ -55866,7 +71527,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554/costs", - "content": { "type": 2, "value": {}, "revision": "lnt030z702pgoohx6ncig1pg", "revision_nr": 1, "created": 1697467100098, "modified": 1697467100098 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt030z702pgoohx6ncig1pg", + "revision_nr": 1, + "created": 1697467100098, + "modified": 1697467100098 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554", @@ -55879,7 +71547,10 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { "type": 6, "value": 1684367721554 }, + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL", "status": "paid" @@ -55892,7 +71563,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt030y402p9oohxac8p37vh", "revision_nr": 1, "created": 1697467100113, "modified": 1697467100113 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt030y402p9oohxac8p37vh", + "revision_nr": 1, + "created": 1697467100113, + "modified": 1697467100113 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806/description", @@ -55909,7 +71587,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, "revision": "lnt0310902pmoohx56907vjm", "revision_nr": 1, "created": 1697467100129, @@ -55918,7 +71600,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0310902ploohxaph051bh", "revision_nr": 1, "created": 1697467100137, "modified": 1697467100137 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0310902ploohxaph051bh", + "revision_nr": 1, + "created": 1697467100137, + "modified": 1697467100137 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806", @@ -55931,7 +71620,10 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { "type": 6, "value": 1680571158806 }, + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid" @@ -55957,7 +71649,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, "revision": "lnt0311402pqoohx3kcl0pob", "revision_nr": 1, "created": 1697467100166, @@ -55966,7 +71662,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0311402ppoohxhz0ue4ue", "revision_nr": 1, "created": 1697467100174, "modified": 1697467100174 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0311402ppoohxhz0ue4ue", + "revision_nr": 1, + "created": 1697467100174, + "modified": 1697467100174 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554", @@ -55979,7 +71682,10 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { "type": 6, "value": 1684367721554 }, + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL", "status": "paid" @@ -55992,7 +71698,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308", - "content": { "type": 1, "value": {}, "revision": "lnt0310102pioohxfynhdkn2", "revision_nr": 1, "created": 1697467100189, "modified": 1697467100189 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0310102pioohxfynhdkn2", + "revision_nr": 1, + "created": 1697467100189, + "modified": 1697467100189 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806/description", @@ -56009,7 +71722,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, "revision": "lnt0312d02pvoohxhvajh85s", "revision_nr": 1, "created": 1697467100206, @@ -56018,7 +71735,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0312d02puoohx27ahh4w9", "revision_nr": 1, "created": 1697467100213, "modified": 1697467100213 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0312d02puoohx27ahh4w9", + "revision_nr": 1, + "created": 1697467100213, + "modified": 1697467100213 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806", @@ -56031,11 +71755,17 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { "type": 6, "value": 1680571158806 }, + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1694627290497 } + "date_last_updated": { + "type": 6, + "value": 1694627290497 + } }, "revision": "lnt0312602psoohx1kai2lxr", "revision_nr": 1, @@ -56058,7 +71788,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, "revision": "lnt0313802pzoohxbux23x35", "revision_nr": 1, "created": 1697467100235, @@ -56067,7 +71801,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0313802pyoohxg9urhml2", "revision_nr": 1, "created": 1697467100242, "modified": 1697467100242 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0313802pyoohxg9urhml2", + "revision_nr": 1, + "created": 1697467100242, + "modified": 1697467100242 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554", @@ -56080,11 +71821,17 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { "type": 6, "value": 1684367721554 }, + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1694627290583 } + "date_last_updated": { + "type": 6, + "value": 1694627290583 + } }, "revision": "lnt0313102pwoohx15p13e6d", "revision_nr": 1, @@ -56094,7 +71841,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309", - "content": { "type": 1, "value": {}, "revision": "lnt0312502proohx305j4uer", "revision_nr": 1, "created": 1697467100258, "modified": 1697467100258 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0312502proohx305j4uer", + "revision_nr": 1, + "created": 1697467100258, + "modified": 1697467100258 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806/description", @@ -56111,7 +71865,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, "revision": "lnt0314a02q4oohxh4s2hrkh", "revision_nr": 1, "created": 1697467100274, @@ -56120,7 +71878,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0314a02q3oohx9l513ucc", "revision_nr": 1, "created": 1697467100282, "modified": 1697467100282 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0314a02q3oohx9l513ucc", + "revision_nr": 1, + "created": 1697467100282, + "modified": 1697467100282 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806", @@ -56133,11 +71898,17 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { "type": 6, "value": 1680571158806 }, + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1696861218119 } + "date_last_updated": { + "type": 6, + "value": 1696861218119 + } }, "revision": "lnt0314202q1oohx7hf8dsl4", "revision_nr": 1, @@ -56160,7 +71931,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, "revision": "lnt0315502q8oohxbcx3dpp8", "revision_nr": 1, "created": 1697467100305, @@ -56169,7 +71944,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0315502q7oohxb30j16uw", "revision_nr": 1, "created": 1697467100312, "modified": 1697467100312 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0315502q7oohxb30j16uw", + "revision_nr": 1, + "created": 1697467100312, + "modified": 1697467100312 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554", @@ -56182,11 +71964,17 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { "type": 6, "value": 1684367721554 }, + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1696861218540 } + "date_last_updated": { + "type": 6, + "value": 1696861218540 + } }, "revision": "lnt0314x02q5oohx1o89h2qb", "revision_nr": 1, @@ -56196,7 +71984,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310", - "content": { "type": 1, "value": {}, "revision": "lnt0314202q0oohxbd79flc7", "revision_nr": 1, "created": 1697467100328, "modified": 1697467100328 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0314202q0oohxbd79flc7", + "revision_nr": 1, + "created": 1697467100328, + "modified": 1697467100328 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806/description", @@ -56213,7 +72008,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, "revision": "lnt0316902qdoohxcr14co7q", "revision_nr": 1, "created": 1697467100345, @@ -56222,7 +72021,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0316902qcoohxg2i38ayc", "revision_nr": 1, "created": 1697467100352, "modified": 1697467100352 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0316902qcoohxg2i38ayc", + "revision_nr": 1, + "created": 1697467100352, + "modified": 1697467100352 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806", @@ -56235,7 +72041,10 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { "type": 6, "value": 1680571158806 }, + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL" }, @@ -56260,7 +72069,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, "revision": "lnt0317302qhoohx16ss091r", "revision_nr": 1, "created": 1697467100376, @@ -56269,7 +72082,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0317302qgoohxbl85hwmo", "revision_nr": 1, "created": 1697467100383, "modified": 1697467100383 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0317302qgoohxbl85hwmo", + "revision_nr": 1, + "created": 1697467100383, + "modified": 1697467100383 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554", @@ -56282,7 +72102,10 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { "type": 6, "value": 1684367721554 }, + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL" }, @@ -56294,7 +72117,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311", - "content": { "type": 1, "value": {}, "revision": "lnt0316002q9oohx8v3qajxd", "revision_nr": 1, "created": 1697467100399, "modified": 1697467100399 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0316002q9oohx8v3qajxd", + "revision_nr": 1, + "created": 1697467100399, + "modified": 1697467100399 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806/description", @@ -56311,7 +72141,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, "revision": "lnt0318702qmoohx6otq9nm3", "revision_nr": 1, "created": 1697467100414, @@ -56320,7 +72154,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0318702qloohx3fs9cwvw", "revision_nr": 1, "created": 1697467100422, "modified": 1697467100422 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0318702qloohx3fs9cwvw", + "revision_nr": 1, + "created": 1697467100422, + "modified": 1697467100422 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806", @@ -56333,7 +72174,10 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { "type": 6, "value": 1680571158806 }, + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL" }, @@ -56358,7 +72202,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, "revision": "lnt0319102qqoohx002e9dn6", "revision_nr": 1, "created": 1697467100445, @@ -56367,7 +72215,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0319102qpoohx969teciw", "revision_nr": 1, "created": 1697467100454, "modified": 1697467100454 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0319102qpoohx969teciw", + "revision_nr": 1, + "created": 1697467100454, + "modified": 1697467100454 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554", @@ -56380,7 +72235,10 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { "type": 6, "value": 1684367721554 }, + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL" }, @@ -56392,7 +72250,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312", - "content": { "type": 1, "value": {}, "revision": "lnt0317z02qioohx46t3ciqa", "revision_nr": 1, "created": 1697467100470, "modified": 1697467100470 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0317z02qioohx46t3ciqa", + "revision_nr": 1, + "created": 1697467100470, + "modified": 1697467100470 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806/description", @@ -56409,7 +72274,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, "revision": "lnt031a602qvoohx0b1vetfa", "revision_nr": 1, "created": 1697467100485, @@ -56418,7 +72287,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806/costs", - "content": { "type": 2, "value": {}, "revision": "lnt031a602quoohx26pkbztb", "revision_nr": 1, "created": 1697467100492, "modified": 1697467100492 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt031a602quoohx26pkbztb", + "revision_nr": 1, + "created": 1697467100492, + "modified": 1697467100492 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806", @@ -56431,7 +72307,10 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { "type": 6, "value": 1680571158806 }, + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL" }, @@ -56456,7 +72335,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, "revision": "lnt031b102qzoohx2o1y6qe9", "revision_nr": 1, "created": 1697467100516, @@ -56465,7 +72348,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554/costs", - "content": { "type": 2, "value": {}, "revision": "lnt031b102qyoohxe20i9iwo", "revision_nr": 1, "created": 1697467100525, "modified": 1697467100525 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt031b102qyoohxe20i9iwo", + "revision_nr": 1, + "created": 1697467100525, + "modified": 1697467100525 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554", @@ -56478,7 +72368,10 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { "type": 6, "value": 1684367721554 }, + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL" }, @@ -56490,7 +72383,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401", - "content": { "type": 1, "value": {}, "revision": "lnt0319y02qroohx99nyavu1", "revision_nr": 1, "created": 1697467100540, "modified": 1697467100540 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0319y02qroohx99nyavu1", + "revision_nr": 1, + "created": 1697467100540, + "modified": 1697467100540 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806/description", @@ -56507,7 +72407,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, "revision": "lnt031c302r4oohxfc17f078", "revision_nr": 1, "created": 1697467100555, @@ -56516,7 +72420,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806/costs", - "content": { "type": 2, "value": {}, "revision": "lnt031c302r3oohxhtwsa8kz", "revision_nr": 1, "created": 1697467100563, "modified": 1697467100563 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt031c302r3oohxhtwsa8kz", + "revision_nr": 1, + "created": 1697467100563, + "modified": 1697467100563 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806", @@ -56529,7 +72440,10 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { "type": 6, "value": 1680571158806 }, + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL" }, @@ -56541,17 +72455,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402", - "content": { "type": 1, "value": {}, "revision": "lnt031bw02r0oohxa0befr4n", "revision_nr": 1, "created": 1697467100578, "modified": 1697467100578 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt031bw02r0oohxa0befr4n", + "revision_nr": 1, + "created": 1697467100578, + "modified": 1697467100578 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt030ub02oqoohxba069n1q", "revision_nr": 1, "created": 1697467100586, "modified": 1697467100586 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt030ub02oqoohxba069n1q", + "revision_nr": 1, + "created": 1697467100586, + "modified": 1697467100586 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit", "content": { "type": 1, - "value": { "approvedLimit": 10000, "limitUsed": 7250, "analysisRequested": { "type": 6, "value": 1680570808027 }, "lastReview": { "type": 6, "value": 1680978393740 } }, + "value": { + "approvedLimit": 10000, + "limitUsed": 7250, + "analysisRequested": { + "type": 6, + "value": 1680570808027 + }, + "lastReview": { + "type": 6, + "value": 1680978393740 + } + }, "revision": "lnt030ub02opoohxgctjbli9", "revision_nr": 1, "created": 1697467100595, @@ -56562,7 +72501,16 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080", "content": { "type": 1, - "value": { "dataModificacao": 1680465637248, "dateValidity": 1680465637248, "totalValue": 7716.736, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696820400000 } }, + "value": { + "dataModificacao": 1680465637248, + "dateValidity": 1680465637248, + "totalValue": 7716.736, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } + }, "revision": "lnt0301b02kwoohxcn6u2dqt", "revision_nr": 1, "created": 1697467100603, @@ -56573,7 +72521,11 @@ "path": "ivipcoin-db::__movement_wallet__/099867702110120200/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt031dn02r6oohxbeng7r42", "revision_nr": 1, "created": 1697467100610, @@ -56584,7 +72536,14 @@ "path": "ivipcoin-db::__movement_wallet__/099867702110120200", "content": { "type": 1, - "value": { "dataModificacao": 1684118396230, "dateValidity": 1684118396230, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684118396230, + "dateValidity": 1684118396230, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031dn02r5oohx9cbz0qtf", "revision_nr": 1, "created": 1697467100618, @@ -56595,7 +72554,14 @@ "path": "ivipcoin-db::__movement_wallet__/100571192646522480", "content": { "type": 1, - "value": { "dataModificacao": 1677468345456, "dateValidity": 1677468345456, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677468345456, + "dateValidity": 1677468345456, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031e202r7oohx8z74dd70", "revision_nr": 1, "created": 1697467100627, @@ -56606,7 +72572,11 @@ "path": "ivipcoin-db::__movement_wallet__/101099073948007100/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt031eb02r9oohx183shxpv", "revision_nr": 1, "created": 1697467100634, @@ -56617,7 +72587,14 @@ "path": "ivipcoin-db::__movement_wallet__/101099073948007100", "content": { "type": 1, - "value": { "dataModificacao": 1685622109779, "dateValidity": 1685622109779, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1685622109779, + "dateValidity": 1685622109779, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031eb02r8oohxeji36dr5", "revision_nr": 1, "created": 1697467100642, @@ -56637,7 +72614,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683387433855/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031ey02reoohxfi6d315q", "revision_nr": 1, "created": 1697467100658, "modified": 1697467100658 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031ey02reoohxfi6d315q", + "revision_nr": 1, + "created": 1697467100658, + "modified": 1697467100658 + } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683387433855", @@ -56651,15 +72637,30 @@ "total_amount": 1700, "history_id": 1683387433855, "id": 1683387433855, - "date_created": { "type": 6, "value": 1683387433855 }, - "date_last_updated": { "type": 6, "value": 1683393632539 }, - "date_of_expiration": { "type": 6, "value": 1685979433855 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1683393632539 }, - "money_release_date": { "type": 6, "value": 1683393632539 }, + "date_created": { + "type": 6, + "value": 1683387433855 + }, + "date_last_updated": { + "type": 6, + "value": 1683393632539 + }, + "date_of_expiration": { + "type": 6, + "value": 1685979433855 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683393632539 + }, + "money_release_date": { + "type": 6, + "value": 1683393632539 + }, "money_release_status": "approved", "wasDebited": true }, @@ -56682,7 +72683,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683729448058/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031fl02rhoohx9bybafxr", "revision_nr": 1, "created": 1697467100681, "modified": 1697467100681 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031fl02rhoohx9bybafxr", + "revision_nr": 1, + "created": 1697467100681, + "modified": 1697467100681 + } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683729448058", @@ -56696,15 +72706,30 @@ "total_amount": 1000, "history_id": 1683729448058, "id": 1683729448058, - "date_created": { "type": 6, "value": 1683729448058 }, - "date_last_updated": { "type": 6, "value": 1683730132161 }, - "date_of_expiration": { "type": 6, "value": 1686321448058 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1683730132161 }, - "money_release_date": { "type": 6, "value": 1683730132161 }, + "date_created": { + "type": 6, + "value": 1683729448058 + }, + "date_last_updated": { + "type": 6, + "value": 1683730132161 + }, + "date_of_expiration": { + "type": 6, + "value": 1686321448058 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683730132161 + }, + "money_release_date": { + "type": 6, + "value": 1683730132161 + }, "money_release_status": "approved", "wasDebited": true }, @@ -56750,9 +72775,18 @@ "original_amount": 14591858, "total_amount": 14591858, "id": 1684018976722, - "date_created": { "type": 6, "value": 1684018976722 }, - "date_last_updated": { "type": 6, "value": 1684018976722 }, - "date_of_expiration": { "type": 6, "value": 1684018976722 }, + "date_created": { + "type": 6, + "value": 1684018976722 + }, + "date_last_updated": { + "type": 6, + "value": 1684018976722 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018976722 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -56780,7 +72814,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686488141706/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031gq02rmoohx7g6n0np9", "revision_nr": 1, "created": 1697467100721, "modified": 1697467100721 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031gq02rmoohx7g6n0np9", + "revision_nr": 1, + "created": 1697467100721, + "modified": 1697467100721 + } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686488141706", @@ -56794,9 +72837,18 @@ "total_amount": 14591858, "history_id": 1686488141706, "id": 1686488141706, - "date_created": { "type": 6, "value": 1686488141706 }, - "date_last_updated": { "type": 6, "value": 1686488141706 }, - "date_of_expiration": { "type": 6, "value": 1686488141706 }, + "date_created": { + "type": 6, + "value": 1686488141706 + }, + "date_last_updated": { + "type": 6, + "value": 1686488141706 + }, + "date_of_expiration": { + "type": 6, + "value": 1686488141706 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -56821,7 +72873,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686581079256/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031hc02rpoohx5c1dgrg6", "revision_nr": 1, "created": 1697467100744, "modified": 1697467100744 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031hc02rpoohx5c1dgrg6", + "revision_nr": 1, + "created": 1697467100744, + "modified": 1697467100744 + } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686581079256", @@ -56835,9 +72896,18 @@ "total_amount": 14591858, "history_id": 1686581079256, "id": 1686581079256, - "date_created": { "type": 6, "value": 1686581079256 }, - "date_last_updated": { "type": 6, "value": 1686581079256 }, - "date_of_expiration": { "type": 6, "value": 1686581079256 }, + "date_created": { + "type": 6, + "value": 1686581079256 + }, + "date_last_updated": { + "type": 6, + "value": 1686581079256 + }, + "date_of_expiration": { + "type": 6, + "value": 1686581079256 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -56862,7 +72932,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686647052098/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031i002rsoohxajqhb3dv", "revision_nr": 1, "created": 1697467100768, "modified": 1697467100768 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031i002rsoohxajqhb3dv", + "revision_nr": 1, + "created": 1697467100768, + "modified": 1697467100768 + } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686647052098", @@ -56876,9 +72955,18 @@ "total_amount": 14591858, "history_id": 1686647052098, "id": 1686647052098, - "date_created": { "type": 6, "value": 1686647052098 }, - "date_last_updated": { "type": 6, "value": 1686647052098 }, - "date_of_expiration": { "type": 6, "value": 1686647052098 }, + "date_created": { + "type": 6, + "value": 1686647052098 + }, + "date_last_updated": { + "type": 6, + "value": 1686647052098 + }, + "date_of_expiration": { + "type": 6, + "value": 1686647052098 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -56903,7 +72991,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686750536224/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031io02rvoohx3k11e90x", "revision_nr": 1, "created": 1697467100792, "modified": 1697467100792 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031io02rvoohx3k11e90x", + "revision_nr": 1, + "created": 1697467100792, + "modified": 1697467100792 + } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686750536224", @@ -56917,15 +73014,30 @@ "total_amount": 14591858, "history_id": 1686750536224, "id": 1686750536224, - "date_created": { "type": 6, "value": 1686750536224 }, - "date_last_updated": { "type": 6, "value": 1686865334419 }, - "date_of_expiration": { "type": 6, "value": 1686750536224 }, + "date_created": { + "type": 6, + "value": 1686750536224 + }, + "date_last_updated": { + "type": 6, + "value": 1686865334419 + }, + "date_of_expiration": { + "type": 6, + "value": 1686750536224 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1686865334419 }, - "money_release_date": { "type": 6, "value": 1686865334419 }, + "date_approved": { + "type": 6, + "value": 1686865334419 + }, + "money_release_date": { + "type": 6, + "value": 1686865334419 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -56948,7 +73060,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686865268655/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031jb02ryoohx04zfcapk", "revision_nr": 1, "created": 1697467100814, "modified": 1697467100814 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031jb02ryoohx04zfcapk", + "revision_nr": 1, + "created": 1697467100814, + "modified": 1697467100814 + } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686865268655", @@ -56962,9 +73083,18 @@ "total_amount": 14591858, "history_id": 1686865268655, "id": 1686865268655, - "date_created": { "type": 6, "value": 1686865268655 }, - "date_last_updated": { "type": 6, "value": 1686865268655 }, - "date_of_expiration": { "type": 6, "value": 1686865268655 }, + "date_created": { + "type": 6, + "value": 1686865268655 + }, + "date_last_updated": { + "type": 6, + "value": 1686865268655 + }, + "date_of_expiration": { + "type": 6, + "value": 1686865268655 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -56978,13 +73108,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history", - "content": { "type": 1, "value": {}, "revision": "lnt031eq02rboohx0l7xh4dx", "revision_nr": 1, "created": 1697467100831, "modified": 1697467100831 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt031eq02rboohx0l7xh4dx", + "revision_nr": 1, + "created": 1697467100831, + "modified": 1697467100831 + } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1694712457445 } }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1694712457445 + } + }, "revision": "lnt031jz02rzoohxh54hfht6", "revision_nr": 1, "created": 1697467100839, @@ -57001,7 +73146,10 @@ "balances": {}, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1695610800000 } + "balancesModificacao": { + "type": 6, + "value": 1695610800000 + } }, "revision": "lnt031eq02raoohxhdnl9tfo", "revision_nr": 1, @@ -57013,7 +73161,14 @@ "path": "ivipcoin-db::__movement_wallet__/101924508374940270", "content": { "type": 1, - "value": { "dataModificacao": 1679287665883, "dateValidity": 1679287665883, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1679287665883, + "dateValidity": 1679287665883, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031kf02s0oohx55il8oi6", "revision_nr": 1, "created": 1697467100854, @@ -57024,7 +73179,14 @@ "path": "ivipcoin-db::__movement_wallet__/102162769887914180", "content": { "type": 1, - "value": { "dataModificacao": 1689113009824, "dateValidity": 1689113009824, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1689113009824, + "dateValidity": 1689113009824, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031kn02s1oohx50cy778l", "revision_nr": 1, "created": 1697467100862, @@ -57035,7 +73197,14 @@ "path": "ivipcoin-db::__movement_wallet__/102585657323784220", "content": { "type": 1, - "value": { "dataModificacao": 1679436379945, "dateValidity": 1679436379945, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1679436379945, + "dateValidity": 1679436379945, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031ku02s2oohx98ai0ste", "revision_nr": 1, "created": 1697467100871, @@ -57046,7 +73215,13 @@ "path": "ivipcoin-db::__movement_wallet__/102986238363877330", "content": { "type": 1, - "value": { "dataModificacao": 1696096915384, "dateValidity": 1696096916164, "balances": {}, "history": {}, "currencyType": "USD" }, + "value": { + "dataModificacao": 1696096915384, + "dateValidity": 1696096916164, + "balances": {}, + "history": {}, + "currencyType": "USD" + }, "revision": "lnt031l302s3oohxfutd2oge", "revision_nr": 1, "created": 1697467100879, @@ -57057,7 +73232,14 @@ "path": "ivipcoin-db::__movement_wallet__/103931688787322940", "content": { "type": 1, - "value": { "dataModificacao": 1679165777705, "dateValidity": 1679165777705, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1679165777705, + "dateValidity": 1679165777705, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031lb02s4oohx8jidcmnt", "revision_nr": 1, "created": 1697467100887, @@ -57068,7 +73250,11 @@ "path": "ivipcoin-db::__movement_wallet__/106900896878269870/balances/BRL", "content": { "type": 1, - "value": { "symbol": "BRL", "available": "0.00000000", "value": 0 }, + "value": { + "symbol": "BRL", + "available": "0.00000000", + "value": 0 + }, "revision": "lnt031lk02s7oohx3gel5weu", "revision_nr": 1, "created": 1697467100895, @@ -57079,7 +73265,11 @@ "path": "ivipcoin-db::__movement_wallet__/106900896878269870/balances/IVIP", "content": { "type": 1, - "value": { "symbol": "IVIP", "available": "0.00000000", "value": 0 }, + "value": { + "symbol": "IVIP", + "available": "0.00000000", + "value": 0 + }, "revision": "lnt031lr02s8oohxbahvevmm", "revision_nr": 1, "created": 1697467100903, @@ -57088,7 +73278,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/balances", - "content": { "type": 1, "value": {}, "revision": "lnt031lk02s6oohx5jlxccqn", "revision_nr": 1, "created": 1697467100910, "modified": 1697467100910 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt031lk02s6oohx5jlxccqn", + "revision_nr": 1, + "created": 1697467100910, + "modified": 1697467100910 + } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684170542717/description", @@ -57103,7 +73300,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684170542717/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031me02scoohx34tx31io", "revision_nr": 1, "created": 1697467100925, "modified": 1697467100925 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031me02scoohx34tx31io", + "revision_nr": 1, + "created": 1697467100925, + "modified": 1697467100925 + } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684170542717", @@ -57117,15 +73323,30 @@ "total_amount": 50, "history_id": 1684170542717, "id": 1684170542717, - "date_created": { "type": 6, "value": 1684170542717 }, - "date_last_updated": { "type": 6, "value": 1684186221404 }, - "date_of_expiration": { "type": 6, "value": 1686762542717 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684186221404 }, - "money_release_date": { "type": 6, "value": 1684186221404 }, + "date_created": { + "type": 6, + "value": 1684170542717 + }, + "date_last_updated": { + "type": 6, + "value": 1684186221404 + }, + "date_of_expiration": { + "type": 6, + "value": 1686762542717 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684186221404 + }, + "money_release_date": { + "type": 6, + "value": 1684186221404 + }, "money_release_status": "approved", "wasDebited": true }, @@ -57171,9 +73392,18 @@ "original_amount": 243536, "total_amount": 243536, "id": 1684624294208, - "date_created": { "type": 6, "value": 1684624294208 }, - "date_last_updated": { "type": 6, "value": 1684624294208 }, - "date_of_expiration": { "type": 6, "value": 1684624294208 }, + "date_created": { + "type": 6, + "value": 1684624294208 + }, + "date_last_updated": { + "type": 6, + "value": 1684624294208 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624294208 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -57201,7 +73431,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1688846842830/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031nm02shoohx01yufask", "revision_nr": 1, "created": 1697467100970, "modified": 1697467100970 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031nm02shoohx01yufask", + "revision_nr": 1, + "created": 1697467100970, + "modified": 1697467100970 + } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1688846842830", @@ -57215,15 +73454,30 @@ "total_amount": 243536, "history_id": 1688846842830, "id": 1688846842830, - "date_created": { "type": 6, "value": 1688846842830 }, - "date_last_updated": { "type": 6, "value": 1688846892432 }, - "date_of_expiration": { "type": 6, "value": 1688846842830 }, + "date_created": { + "type": 6, + "value": 1688846842830 + }, + "date_last_updated": { + "type": 6, + "value": 1688846892432 + }, + "date_of_expiration": { + "type": 6, + "value": 1688846842830 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1688846892432 }, - "money_release_date": { "type": 6, "value": 1688846892432 }, + "date_approved": { + "type": 6, + "value": 1688846892432 + }, + "money_release_date": { + "type": 6, + "value": 1688846892432 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -57235,13 +73489,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history", - "content": { "type": 1, "value": {}, "revision": "lnt031m602s9oohx0m5zgib3", "revision_nr": 1, "created": 1697467100985, "modified": 1697467100985 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt031m602s9oohx0m5zgib3", + "revision_nr": 1, + "created": 1697467100985, + "modified": 1697467100985 + } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt031o902sioohx4ej6e636", "revision_nr": 1, "created": 1697467100993, @@ -57252,7 +73517,12 @@ "path": "ivipcoin-db::__movement_wallet__/106900896878269870", "content": { "type": 1, - "value": { "dataModificacao": 1684170470840, "dateValidity": 1684170470840, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684170470840, + "dateValidity": 1684170470840, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031lk02s5oohxdlxnfmeq", "revision_nr": 1, "created": 1697467101000, @@ -57263,7 +73533,14 @@ "path": "ivipcoin-db::__movement_wallet__/108390022183703310", "content": { "type": 1, - "value": { "dataModificacao": 1680695438579, "dateValidity": 1680695438579, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1680695438579, + "dateValidity": 1680695438579, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031oo02sjoohx82ml8677", "revision_nr": 1, "created": 1697467101009, @@ -57274,7 +73551,14 @@ "path": "ivipcoin-db::__movement_wallet__/108783781111851280", "content": { "type": 1, - "value": { "dataModificacao": 1681661884795, "dateValidity": 1681661884795, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1681661884795, + "dateValidity": 1681661884795, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031ox02skoohx84cjfley", "revision_nr": 1, "created": 1697467101016, @@ -57294,7 +73578,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1684095990042/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031pe02spoohxhrkp3q0v", "revision_nr": 1, "created": 1697467101033, "modified": 1697467101033 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031pe02spoohxhrkp3q0v", + "revision_nr": 1, + "created": 1697467101033, + "modified": 1697467101033 + } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1684095990042", @@ -57308,15 +73601,30 @@ "total_amount": 500, "history_id": 1684095990042, "id": 1684095990042, - "date_created": { "type": 6, "value": 1684095990042 }, - "date_last_updated": { "type": 6, "value": 1684120166798 }, - "date_of_expiration": { "type": 6, "value": 1686687990042 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684120166798 }, - "money_release_date": { "type": 6, "value": 1684120166798 }, + "date_created": { + "type": 6, + "value": 1684095990042 + }, + "date_last_updated": { + "type": 6, + "value": 1684120166798 + }, + "date_of_expiration": { + "type": 6, + "value": 1686687990042 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684120166798 + }, + "money_release_date": { + "type": 6, + "value": 1684120166798 + }, "money_release_status": "approved", "wasDebited": true }, @@ -57362,9 +73670,18 @@ "original_amount": 1792114, "total_amount": 1792114, "id": 1686325443110, - "date_created": { "type": 6, "value": 1686325443110 }, - "date_last_updated": { "type": 6, "value": 1686325443110 }, - "date_of_expiration": { "type": 6, "value": 1686325443110 }, + "date_created": { + "type": 6, + "value": 1686325443110 + }, + "date_last_updated": { + "type": 6, + "value": 1686325443110 + }, + "date_of_expiration": { + "type": 6, + "value": 1686325443110 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -57434,9 +73751,18 @@ "total_amount": 1792114, "id": 1690019958173, "history_id": 1690019958173, - "date_created": { "type": 6, "value": 1690019958173 }, - "date_last_updated": { "type": 6, "value": 1690019958173 }, - "date_of_expiration": { "type": 6, "value": 1690019958173 }, + "date_created": { + "type": 6, + "value": 1690019958173 + }, + "date_last_updated": { + "type": 6, + "value": 1690019958173 + }, + "date_of_expiration": { + "type": 6, + "value": 1690019958173 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -57476,7 +73802,11 @@ "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 53763.42 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 53763.42 + }, "revision": "lnt031rm02t1oohx8u5o0r0i", "revision_nr": 1, "created": 1697467101113, @@ -57485,7 +73815,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt031rm02t0oohx6vnw5oxu", "revision_nr": 1, "created": 1697467101120, "modified": 1697467101120 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt031rm02t0oohx6vnw5oxu", + "revision_nr": 1, + "created": 1697467101120, + "modified": 1697467101120 + } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details", @@ -57519,17 +73856,32 @@ "total_amount": 1738350.58, "id": "1694046051457", "history_id": "1694046051457", - "date_created": { "type": 6, "value": 1694046051457 }, - "date_last_updated": { "type": 6, "value": 1694470685227 }, - "date_of_expiration": { "type": 6, "value": 1694046051457 }, + "date_created": { + "type": 6, + "value": 1694046051457 + }, + "date_last_updated": { + "type": 6, + "value": 1694470685227 + }, + "date_of_expiration": { + "type": 6, + "value": 1694046051457 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1694470685227 }, - "money_release_date": { "type": 6, "value": 1694470685227 }, + "date_approved": { + "type": 6, + "value": 1694470685227 + }, + "money_release_date": { + "type": 6, + "value": 1694470685227 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -57541,13 +73893,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history", - "content": { "type": 1, "value": {}, "revision": "lnt031p402smoohxe63vfec6", "revision_nr": 1, "created": 1697467101144, "modified": 1697467101144 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt031p402smoohxe63vfec6", + "revision_nr": 1, + "created": 1697467101144, + "modified": 1697467101144 + } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt031so02t2oohx4p27comb", "revision_nr": 1, "created": 1697467101152, @@ -57558,7 +73921,11 @@ "path": "ivipcoin-db::__movement_wallet__/110098606095899730/balances/BRL", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, "revision": "lnt031sw02t4oohx9zaqb7w5", "revision_nr": 1, "created": 1697467101161, @@ -57569,7 +73936,11 @@ "path": "ivipcoin-db::__movement_wallet__/110098606095899730/balances/IVIP", "content": { "type": 1, - "value": { "available": "1792114.00000000", "symbol": "IVIP", "value": 199.51 }, + "value": { + "available": "1792114.00000000", + "symbol": "IVIP", + "value": 199.51 + }, "revision": "lnt031t502t5oohx7dqualqz", "revision_nr": 1, "created": 1697467101169, @@ -57578,13 +73949,29 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/balances", - "content": { "type": 1, "value": {}, "revision": "lnt031sw02t3oohxgbhnd4lg", "revision_nr": 1, "created": 1697467101176, "modified": 1697467101176 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt031sw02t3oohxgbhnd4lg", + "revision_nr": 1, + "created": 1697467101176, + "modified": 1697467101176 + } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730", "content": { "type": 1, - "value": { "dataModificacao": 1684095886828, "dateValidity": 1684095886828, "totalValue": 82.74, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1694401200000 } }, + "value": { + "dataModificacao": 1684095886828, + "dateValidity": 1684095886828, + "totalValue": 82.74, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1694401200000 + } + }, "revision": "lnt031p402sloohxay47h4ka", "revision_nr": 1, "created": 1697467101184, @@ -57604,7 +73991,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110121616136666500/history/1684539878275/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031u202taoohx7lzhfj8h", "revision_nr": 1, "created": 1697467101201, "modified": 1697467101201 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031u202taoohx7lzhfj8h", + "revision_nr": 1, + "created": 1697467101201, + "modified": 1697467101201 + } }, { "path": "ivipcoin-db::__movement_wallet__/110121616136666500/history/1684539878275", @@ -57618,9 +74014,18 @@ "total_amount": 100, "history_id": 1684539878275, "id": 1684539878275, - "date_created": { "type": 6, "value": 1684539878275 }, - "date_last_updated": { "type": 6, "value": 1684539878275 }, - "date_of_expiration": { "type": 6, "value": 1687131878275 }, + "date_created": { + "type": 6, + "value": 1684539878275 + }, + "date_last_updated": { + "type": 6, + "value": 1684539878275 + }, + "date_of_expiration": { + "type": 6, + "value": 1687131878275 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -57634,13 +74039,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110121616136666500/history", - "content": { "type": 1, "value": {}, "revision": "lnt031ts02t7oohx1s5mcxne", "revision_nr": 1, "created": 1697467101217, "modified": 1697467101217 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt031ts02t7oohx1s5mcxne", + "revision_nr": 1, + "created": 1697467101217, + "modified": 1697467101217 + } }, { "path": "ivipcoin-db::__movement_wallet__/110121616136666500/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt031up02tboohxdxmf37ws", "revision_nr": 1, "created": 1697467101225, @@ -57651,7 +74067,13 @@ "path": "ivipcoin-db::__movement_wallet__/110121616136666500", "content": { "type": 1, - "value": { "dataModificacao": 1684536217510, "dateValidity": 1684536217510, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684536217510, + "dateValidity": 1684536217510, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031ts02t6oohx6wq89p68", "revision_nr": 1, "created": 1697467101232, @@ -57662,7 +74084,14 @@ "path": "ivipcoin-db::__movement_wallet__/110261910786918940", "content": { "type": 1, - "value": { "dataModificacao": 1679301294113, "dateValidity": 1679301294113, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1679301294113, + "dateValidity": 1679301294113, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031v402tcoohx4xrm3age", "revision_nr": 1, "created": 1697467101240, @@ -57673,7 +74102,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/balances/BRL", "content": { "type": 1, - "value": { "symbol": "BRL", "value": 0.132, "available": "0.66666666" }, + "value": { + "symbol": "BRL", + "value": 0.132, + "available": "0.66666666" + }, "revision": "lnt031vc02tfoohxewzp5pr1", "revision_nr": 1, "created": 1697467101248, @@ -57684,7 +74117,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/balances/IVIP", "content": { "type": 1, - "value": { "symbol": "IVIP", "value": 0, "available": "0.00000000" }, + "value": { + "symbol": "IVIP", + "value": 0, + "available": "0.00000000" + }, "revision": "lnt031vk02tgoohx5w2na068", "revision_nr": 1, "created": 1697467101256, @@ -57693,7 +74130,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/balances", - "content": { "type": 1, "value": {}, "revision": "lnt031vc02teoohx0rnf1u7b", "revision_nr": 1, "created": 1697467101264, "modified": 1697467101264 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt031vc02teoohx0rnf1u7b", + "revision_nr": 1, + "created": 1697467101264, + "modified": 1697467101264 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1678154662168/details", @@ -57731,9 +74175,18 @@ "original_amount": 1594392, "total_amount": 1594392, "id": 1678154662168, - "date_created": { "type": 6, "value": 1678154662168 }, - "date_last_updated": { "type": 6, "value": 1678154662168 }, - "date_of_expiration": { "type": 6, "value": 1678154662168 }, + "date_created": { + "type": 6, + "value": 1678154662168 + }, + "date_last_updated": { + "type": 6, + "value": 1678154662168 + }, + "date_of_expiration": { + "type": 6, + "value": 1678154662168 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -57761,7 +74214,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1677860043639/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031wo02tmoohx1bl0gy7o", "revision_nr": 1, "created": 1697467101296, "modified": 1697467101296 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031wo02tmoohx1bl0gy7o", + "revision_nr": 1, + "created": 1697467101296, + "modified": 1697467101296 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1677860043639", @@ -57775,15 +74237,30 @@ "total_amount": 223, "history_id": 1677860043639, "id": 1677860043639, - "date_created": { "type": 6, "value": 1677860043639 }, - "date_last_updated": { "type": 6, "value": 1677860915639 }, - "date_of_expiration": { "type": 6, "value": 1680452043639 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677860915639 }, - "money_release_date": { "type": 6, "value": 1677860915639 }, + "date_created": { + "type": 6, + "value": 1677860043639 + }, + "date_last_updated": { + "type": 6, + "value": 1677860915639 + }, + "date_of_expiration": { + "type": 6, + "value": 1680452043639 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677860915639 + }, + "money_release_date": { + "type": 6, + "value": 1677860915639 + }, "money_release_status": "approved", "wasDebited": true }, @@ -57829,9 +74306,18 @@ "original_amount": 2760078, "total_amount": 2760078, "id": 1680547247302, - "date_created": { "type": 6, "value": 1680547247302 }, - "date_last_updated": { "type": 6, "value": 1680547247302 }, - "date_of_expiration": { "type": 6, "value": 1680547247302 }, + "date_created": { + "type": 6, + "value": 1680547247302 + }, + "date_last_updated": { + "type": 6, + "value": 1680547247302 + }, + "date_of_expiration": { + "type": 6, + "value": 1680547247302 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -57859,7 +74345,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007108709/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031xs02troohxhhowehq4", "revision_nr": 1, "created": 1697467101337, "modified": 1697467101337 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031xs02troohxhhowehq4", + "revision_nr": 1, + "created": 1697467101337, + "modified": 1697467101337 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007108709", @@ -57873,15 +74368,30 @@ "total_amount": 52, "history_id": 1684007108709, "id": 1684007108709, - "date_created": { "type": 6, "value": 1684007108709 }, - "date_last_updated": { "type": 6, "value": 1684007729125 }, - "date_of_expiration": { "type": 6, "value": 1686599108709 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684007729125 }, - "money_release_date": { "type": 6, "value": 1684007729125 }, + "date_created": { + "type": 6, + "value": 1684007108709 + }, + "date_last_updated": { + "type": 6, + "value": 1684007729125 + }, + "date_of_expiration": { + "type": 6, + "value": 1686599108709 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684007729125 + }, + "money_release_date": { + "type": 6, + "value": 1684007729125 + }, "money_release_status": "approved", "wasDebited": true }, @@ -57941,9 +74451,18 @@ "total_amount": 51.667, "id": 1684007784160, "contract_id": "1680547112243", - "date_created": { "type": 6, "value": 1684007784160 }, - "date_last_updated": { "type": 6, "value": 1684007784160 }, - "date_of_expiration": { "type": 6, "value": 1684007784160 }, + "date_created": { + "type": 6, + "value": 1684007784160 + }, + "date_last_updated": { + "type": 6, + "value": 1684007784160 + }, + "date_of_expiration": { + "type": 6, + "value": 1684007784160 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -57970,7 +74489,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685634389886/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031z402txoohx3jcehmv7", "revision_nr": 1, "created": 1697467101384, "modified": 1697467101384 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031z402txoohx3jcehmv7", + "revision_nr": 1, + "created": 1697467101384, + "modified": 1697467101384 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685634389886", @@ -57984,15 +74512,30 @@ "total_amount": 52, "history_id": 1685634389886, "id": 1685634389886, - "date_created": { "type": 6, "value": 1685634389886 }, - "date_last_updated": { "type": 6, "value": 1685645771760 }, - "date_of_expiration": { "type": 6, "value": 1688226389886 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685645771760 }, - "money_release_date": { "type": 6, "value": 1685645771760 }, + "date_created": { + "type": 6, + "value": 1685634389886 + }, + "date_last_updated": { + "type": 6, + "value": 1685645771760 + }, + "date_of_expiration": { + "type": 6, + "value": 1688226389886 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685645771760 + }, + "money_release_date": { + "type": 6, + "value": 1685645771760 + }, "money_release_status": "approved", "wasDebited": true }, @@ -58052,9 +74595,18 @@ "total_amount": 51.667, "id": 1685657159164, "contract_id": "1680547112243", - "date_created": { "type": 6, "value": 1685657159164 }, - "date_last_updated": { "type": 6, "value": 1685657159164 }, - "date_of_expiration": { "type": 6, "value": 1685657159164 }, + "date_created": { + "type": 6, + "value": 1685657159164 + }, + "date_last_updated": { + "type": 6, + "value": 1685657159164 + }, + "date_of_expiration": { + "type": 6, + "value": 1685657159164 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -58118,9 +74670,18 @@ "total_amount": 2300063, "id": 1686939269544, "contract_id": "1680547112243", - "date_created": { "type": 6, "value": 1686939269544 }, - "date_last_updated": { "type": 6, "value": 1686939269544 }, - "date_of_expiration": { "type": 6, "value": 1686939269544 }, + "date_created": { + "type": 6, + "value": 1686939269544 + }, + "date_last_updated": { + "type": 6, + "value": 1686939269544 + }, + "date_of_expiration": { + "type": 6, + "value": 1686939269544 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -58149,7 +74710,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt0321802u8oohx61626xzp", "revision_nr": 1, "created": 1697467101460, @@ -58158,11 +74723,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0321802u7oohxc23fe3vv", "revision_nr": 1, "created": 1697467101467, "modified": 1697467101467 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0321802u7oohxc23fe3vv", + "revision_nr": 1, + "created": 1697467101467, + "modified": 1697467101467 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243/details", - "content": { "type": 1, "value": {}, "revision": "lnt0321702u6oohx58qpgxbf", "revision_nr": 1, "created": 1697467101475, "modified": 1697467101475 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0321702u6oohx58qpgxbf", + "revision_nr": 1, + "created": 1697467101475, + "modified": 1697467101475 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243", @@ -58176,9 +74755,18 @@ "total_amount": 620, "history_id": 1680547112243, "id": 1680547112243, - "date_created": { "type": 6, "value": 1680547112243 }, - "date_last_updated": { "type": 6, "value": 1680547112243 }, - "date_of_expiration": { "type": 6, "value": 1683139112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, + "date_last_updated": { + "type": 6, + "value": 1680547112243 + }, + "date_of_expiration": { + "type": 6, + "value": 1683139112243 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -58204,7 +74792,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686940226040/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0322a02uboohx83xhb3iz", "revision_nr": 1, "created": 1697467101498, "modified": 1697467101498 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0322a02uboohx83xhb3iz", + "revision_nr": 1, + "created": 1697467101498, + "modified": 1697467101498 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686940226040", @@ -58218,15 +74815,30 @@ "total_amount": 2054407, "history_id": 1686940226040, "id": 1686940226040, - "date_created": { "type": 6, "value": 1686940226040 }, - "date_last_updated": { "type": 6, "value": 1687368323358 }, - "date_of_expiration": { "type": 6, "value": 1686940226040 }, + "date_created": { + "type": 6, + "value": 1686940226040 + }, + "date_last_updated": { + "type": 6, + "value": 1687368323358 + }, + "date_of_expiration": { + "type": 6, + "value": 1686940226040 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1687368323358 }, - "money_release_date": { "type": 6, "value": 1687368323358 }, + "date_approved": { + "type": 6, + "value": 1687368323358 + }, + "money_release_date": { + "type": 6, + "value": 1687368323358 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -58238,7 +74850,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history", - "content": { "type": 1, "value": {}, "revision": "lnt031w002thoohxfqjle0lz", "revision_nr": 1, "created": 1697467101515, "modified": 1697467101515 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt031w002thoohxfqjle0lz", + "revision_nr": 1, + "created": 1697467101515, + "modified": 1697467101515 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243/description", @@ -58255,7 +74874,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt0323902uioohx4uvm6hah", "revision_nr": 1, "created": 1697467101532, @@ -58264,7 +74887,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0323802uhoohx9mfoaef1", "revision_nr": 1, "created": 1697467101540, "modified": 1697467101540 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0323802uhoohx9mfoaef1", + "revision_nr": 1, + "created": 1697467101540, + "modified": 1697467101540 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243", @@ -58277,7 +74907,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58290,7 +74923,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305", - "content": { "type": 1, "value": {}, "revision": "lnt0323002ueoohxevfbgz11", "revision_nr": 1, "created": 1697467101555, "modified": 1697467101555 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0323002ueoohxevfbgz11", + "revision_nr": 1, + "created": 1697467101555, + "modified": 1697467101555 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243/description", @@ -58307,7 +74947,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt0324b02unoohx6nuo9zha", "revision_nr": 1, "created": 1697467101571, @@ -58316,7 +74960,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0324b02umoohx4tfoch90", "revision_nr": 1, "created": 1697467101579, "modified": 1697467101579 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0324b02umoohx4tfoch90", + "revision_nr": 1, + "created": 1697467101579, + "modified": 1697467101579 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243", @@ -58329,7 +74980,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58342,7 +74996,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt0324302ujoohx2ggr6lkl", "revision_nr": 1, "created": 1697467101596, "modified": 1697467101596 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0324302ujoohx2ggr6lkl", + "revision_nr": 1, + "created": 1697467101596, + "modified": 1697467101596 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243/description", @@ -58359,7 +75020,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt0325g02usoohx821od1vs", "revision_nr": 1, "created": 1697467101612, @@ -58368,7 +75033,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0325g02uroohxauqv944o", "revision_nr": 1, "created": 1697467101622, "modified": 1697467101622 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0325g02uroohxauqv944o", + "revision_nr": 1, + "created": 1697467101622, + "modified": 1697467101622 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243", @@ -58381,7 +75053,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58394,7 +75069,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt0325902uooohxfh9p0o3d", "revision_nr": 1, "created": 1697467101641, "modified": 1697467101641 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0325902uooohxfh9p0o3d", + "revision_nr": 1, + "created": 1697467101641, + "modified": 1697467101641 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243/description", @@ -58411,7 +75093,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt0326q02uxoohxbtw081i7", "revision_nr": 1, "created": 1697467101658, @@ -58420,7 +75106,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0326q02uwoohxg3ro7pmq", "revision_nr": 1, "created": 1697467101666, "modified": 1697467101666 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0326q02uwoohxg3ro7pmq", + "revision_nr": 1, + "created": 1697467101666, + "modified": 1697467101666 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243", @@ -58433,7 +75126,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58446,7 +75142,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308", - "content": { "type": 1, "value": {}, "revision": "lnt0326h02utoohxdvvg2xw2", "revision_nr": 1, "created": 1697467101686, "modified": 1697467101686 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0326h02utoohxdvvg2xw2", + "revision_nr": 1, + "created": 1697467101686, + "modified": 1697467101686 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243/description", @@ -58463,7 +75166,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt0328102v2oohxcsgaeiqx", "revision_nr": 1, "created": 1697467101710, @@ -58472,7 +75179,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0328102v1oohxhf5cek6h", "revision_nr": 1, "created": 1697467101722, "modified": 1697467101722 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0328102v1oohxhf5cek6h", + "revision_nr": 1, + "created": 1697467101722, + "modified": 1697467101722 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243", @@ -58485,7 +75199,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58498,7 +75215,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309", - "content": { "type": 1, "value": {}, "revision": "lnt0327q02uyoohx8xk1hoc0", "revision_nr": 1, "created": 1697467101738, "modified": 1697467101738 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0327q02uyoohx8xk1hoc0", + "revision_nr": 1, + "created": 1697467101738, + "modified": 1697467101738 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243/description", @@ -58515,7 +75239,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt0329f02v7oohx2vgr0g2a", "revision_nr": 1, "created": 1697467101757, @@ -58524,7 +75252,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0329f02v6oohxac0f3uw3", "revision_nr": 1, "created": 1697467101765, "modified": 1697467101765 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0329f02v6oohxac0f3uw3", + "revision_nr": 1, + "created": 1697467101765, + "modified": 1697467101765 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243", @@ -58537,7 +75272,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58550,7 +75288,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310", - "content": { "type": 1, "value": {}, "revision": "lnt0329702v3oohx9pe03dt0", "revision_nr": 1, "created": 1697467101783, "modified": 1697467101783 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0329702v3oohx9pe03dt0", + "revision_nr": 1, + "created": 1697467101783, + "modified": 1697467101783 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243/description", @@ -58567,7 +75312,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt032an02vcoohxhfy87eh7", "revision_nr": 1, "created": 1697467101799, @@ -58576,7 +75325,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt032an02vboohxfhfk564c", "revision_nr": 1, "created": 1697467101807, "modified": 1697467101807 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt032an02vboohxfhfk564c", + "revision_nr": 1, + "created": 1697467101807, + "modified": 1697467101807 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243", @@ -58589,7 +75345,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58602,7 +75361,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311", - "content": { "type": 1, "value": {}, "revision": "lnt032af02v8oohxfvz779hm", "revision_nr": 1, "created": 1697467101823, "modified": 1697467101823 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt032af02v8oohxfvz779hm", + "revision_nr": 1, + "created": 1697467101823, + "modified": 1697467101823 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243/description", @@ -58619,7 +75385,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt032br02vhoohxcw1e8rgp", "revision_nr": 1, "created": 1697467101840, @@ -58628,7 +75398,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt032br02vgoohxhh6m8bx4", "revision_nr": 1, "created": 1697467101848, "modified": 1697467101848 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt032br02vgoohxhh6m8bx4", + "revision_nr": 1, + "created": 1697467101848, + "modified": 1697467101848 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243", @@ -58641,7 +75418,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58654,7 +75434,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312", - "content": { "type": 1, "value": {}, "revision": "lnt032bj02vdoohx60sc46wu", "revision_nr": 1, "created": 1697467101863, "modified": 1697467101863 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt032bj02vdoohx60sc46wu", + "revision_nr": 1, + "created": 1697467101863, + "modified": 1697467101863 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243/description", @@ -58671,7 +75458,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt032cv02vmoohx81gv3ec4", "revision_nr": 1, "created": 1697467101879, @@ -58680,7 +75471,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt032cv02vloohx2q8c8lrl", "revision_nr": 1, "created": 1697467101886, "modified": 1697467101886 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt032cv02vloohx2q8c8lrl", + "revision_nr": 1, + "created": 1697467101886, + "modified": 1697467101886 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243", @@ -58693,7 +75491,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58706,7 +75507,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401", - "content": { "type": 1, "value": {}, "revision": "lnt032cn02vioohxg30u3i0y", "revision_nr": 1, "created": 1697467101903, "modified": 1697467101903 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt032cn02vioohxg30u3i0y", + "revision_nr": 1, + "created": 1697467101903, + "modified": 1697467101903 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243/description", @@ -58723,7 +75531,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt032e002vroohx4x8w69ka", "revision_nr": 1, "created": 1697467101919, @@ -58732,7 +75544,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt032e002vqoohxc0z50x0i", "revision_nr": 1, "created": 1697467101927, "modified": 1697467101927 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt032e002vqoohxc0z50x0i", + "revision_nr": 1, + "created": 1697467101927, + "modified": 1697467101927 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243", @@ -58745,7 +75564,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58758,7 +75580,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402", - "content": { "type": 1, "value": {}, "revision": "lnt032dr02vnoohx6yytbdip", "revision_nr": 1, "created": 1697467101944, "modified": 1697467101944 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt032dr02vnoohx6yytbdip", + "revision_nr": 1, + "created": 1697467101944, + "modified": 1697467101944 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243/description", @@ -58775,7 +75604,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt032f702vwoohxaadlg085", "revision_nr": 1, "created": 1697467101963, @@ -58784,7 +75617,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt032f602vvoohxam936qib", "revision_nr": 1, "created": 1697467101971, "modified": 1697467101971 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt032f602vvoohxam936qib", + "revision_nr": 1, + "created": 1697467101971, + "modified": 1697467101971 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243", @@ -58797,7 +75637,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58810,7 +75653,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403", - "content": { "type": 1, "value": {}, "revision": "lnt032ew02vsoohx2c3qbt88", "revision_nr": 1, "created": 1697467101986, "modified": 1697467101986 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt032ew02vsoohx2c3qbt88", + "revision_nr": 1, + "created": 1697467101986, + "modified": 1697467101986 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243/description", @@ -58827,7 +75677,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt032ga02w1oohxbc6j2v8h", "revision_nr": 1, "created": 1697467102002, @@ -58836,7 +75690,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt032ga02w0oohx5qgs6meu", "revision_nr": 1, "created": 1697467102011, "modified": 1697467102011 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt032ga02w0oohx5qgs6meu", + "revision_nr": 1, + "created": 1697467102011, + "modified": 1697467102011 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243", @@ -58849,7 +75710,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58862,17 +75726,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404", - "content": { "type": 1, "value": {}, "revision": "lnt032g202vxoohxd8wl1ujz", "revision_nr": 1, "created": 1697467102027, "modified": 1697467102027 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt032g202vxoohxd8wl1ujz", + "revision_nr": 1, + "created": 1697467102027, + "modified": 1697467102027 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt0322z02udoohx3kbcf15l", "revision_nr": 1, "created": 1697467102035, "modified": 1697467102035 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0322z02udoohx3kbcf15l", + "revision_nr": 1, + "created": 1697467102035, + "modified": 1697467102035 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit", "content": { "type": 1, - "value": { "approvedLimit": 1000, "limitUsed": 0, "analysisRequested": { "type": 6, "value": 1679181714669 }, "lastReview": { "type": 6, "value": 1679261067910 } }, + "value": { + "approvedLimit": 1000, + "limitUsed": 0, + "analysisRequested": { + "type": 6, + "value": 1679181714669 + }, + "lastReview": { + "type": 6, + "value": 1679261067910 + } + }, "revision": "lnt0322z02ucoohxeh5u0x3i", "revision_nr": 1, "created": 1697467102043, @@ -58883,7 +75772,12 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200", "content": { "type": 1, - "value": { "dataModificacao": 1677859170230, "dateValidity": 1678919633238, "totalValue": 0.13, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677859170230, + "dateValidity": 1678919633238, + "totalValue": 0.13, + "currencyType": "USD" + }, "revision": "lnt031vc02tdoohxc1b92x8p", "revision_nr": 1, "created": 1697467102050, @@ -58894,7 +75788,11 @@ "path": "ivipcoin-db::__movement_wallet__/111597444051012800/balances/BRL", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, "revision": "lnt032hv02w4oohx3u7l09fn", "revision_nr": 1, "created": 1697467102058, @@ -58905,7 +75803,11 @@ "path": "ivipcoin-db::__movement_wallet__/111597444051012800/balances/IVIP", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "IVIP", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "IVIP", + "value": 0 + }, "revision": "lnt032i202w5oohxfmv50hq9", "revision_nr": 1, "created": 1697467102066, @@ -58914,7 +75816,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/balances", - "content": { "type": 1, "value": {}, "revision": "lnt032hv02w3oohx28jahr2v", "revision_nr": 1, "created": 1697467102076, "modified": 1697467102076 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt032hv02w3oohx28jahr2v", + "revision_nr": 1, + "created": 1697467102076, + "modified": 1697467102076 + } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156066045/description", @@ -58929,7 +75838,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156066045/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt032is02w9oohx3md6gubu", "revision_nr": 1, "created": 1697467102094, "modified": 1697467102094 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt032is02w9oohx3md6gubu", + "revision_nr": 1, + "created": 1697467102094, + "modified": 1697467102094 + } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156066045", @@ -58943,9 +75861,18 @@ "total_amount": 20, "history_id": 1684156066045, "id": 1684156066045, - "date_created": { "type": 6, "value": 1684156066045 }, - "date_last_updated": { "type": 6, "value": 1684156066045 }, - "date_of_expiration": { "type": 6, "value": 1686748066045 }, + "date_created": { + "type": 6, + "value": 1684156066045 + }, + "date_last_updated": { + "type": 6, + "value": 1684156066045 + }, + "date_of_expiration": { + "type": 6, + "value": 1686748066045 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -58970,7 +75897,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156180281/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt032jh02wcoohx86fm9xrx", "revision_nr": 1, "created": 1697467102118, "modified": 1697467102118 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt032jh02wcoohx86fm9xrx", + "revision_nr": 1, + "created": 1697467102118, + "modified": 1697467102118 + } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156180281", @@ -58984,9 +75920,18 @@ "total_amount": 100, "history_id": 1684156180281, "id": 1684156180281, - "date_created": { "type": 6, "value": 1684156180281 }, - "date_last_updated": { "type": 6, "value": 1684156180281 }, - "date_of_expiration": { "type": 6, "value": 1686748180281 }, + "date_created": { + "type": 6, + "value": 1684156180281 + }, + "date_last_updated": { + "type": 6, + "value": 1684156180281 + }, + "date_of_expiration": { + "type": 6, + "value": 1686748180281 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -59011,7 +75956,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684157124109/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt032k902wfoohxcz00el77", "revision_nr": 1, "created": 1697467102145, "modified": 1697467102145 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt032k902wfoohxcz00el77", + "revision_nr": 1, + "created": 1697467102145, + "modified": 1697467102145 + } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684157124109", @@ -59025,15 +75979,30 @@ "total_amount": 100, "history_id": 1684157124109, "id": 1684157124109, - "date_created": { "type": 6, "value": 1684157124109 }, - "date_last_updated": { "type": 6, "value": 1684162160711 }, - "date_of_expiration": { "type": 6, "value": 1686749124109 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684162160711 }, - "money_release_date": { "type": 6, "value": 1684162160711 }, + "date_created": { + "type": 6, + "value": 1684157124109 + }, + "date_last_updated": { + "type": 6, + "value": 1684162160711 + }, + "date_of_expiration": { + "type": 6, + "value": 1686749124109 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684162160711 + }, + "money_release_date": { + "type": 6, + "value": 1684162160711 + }, "money_release_status": "approved", "wasDebited": true }, @@ -59079,9 +76048,18 @@ "original_amount": 487073, "total_amount": 487073, "id": 1684667280508, - "date_created": { "type": 6, "value": 1684667280508 }, - "date_last_updated": { "type": 6, "value": 1684667280508 }, - "date_of_expiration": { "type": 6, "value": 1684667280508 }, + "date_created": { + "type": 6, + "value": 1684667280508 + }, + "date_last_updated": { + "type": 6, + "value": 1684667280508 + }, + "date_of_expiration": { + "type": 6, + "value": 1684667280508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -59109,7 +76087,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685125796189/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt032lc02wkoohx9fx2csxx", "revision_nr": 1, "created": 1697467102184, "modified": 1697467102184 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt032lc02wkoohx9fx2csxx", + "revision_nr": 1, + "created": 1697467102184, + "modified": 1697467102184 + } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685125796189", @@ -59123,15 +76110,30 @@ "total_amount": 120, "history_id": 1685125796189, "id": 1685125796189, - "date_created": { "type": 6, "value": 1685125796189 }, - "date_last_updated": { "type": 6, "value": 1685184457369 }, - "date_of_expiration": { "type": 6, "value": 1687717796189 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685184457369 }, - "money_release_date": { "type": 6, "value": 1685184457369 }, + "date_created": { + "type": 6, + "value": 1685125796189 + }, + "date_last_updated": { + "type": 6, + "value": 1685184457369 + }, + "date_of_expiration": { + "type": 6, + "value": 1687717796189 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685184457369 + }, + "money_release_date": { + "type": 6, + "value": 1685184457369 + }, "money_release_status": "approved", "wasDebited": true }, @@ -59154,7 +76156,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685203490781/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt032m102wnoohxfpyzdfv4", "revision_nr": 1, "created": 1697467102211, "modified": 1697467102211 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt032m102wnoohxfpyzdfv4", + "revision_nr": 1, + "created": 1697467102211, + "modified": 1697467102211 + } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685203490781", @@ -59168,15 +76179,30 @@ "total_amount": 1410, "history_id": 1685203490781, "id": 1685203490781, - "date_created": { "type": 6, "value": 1685203490781 }, - "date_last_updated": { "type": 6, "value": 1685211156964 }, - "date_of_expiration": { "type": 6, "value": 1687795490781 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685211156964 }, - "money_release_date": { "type": 6, "value": 1685211156964 }, + "date_created": { + "type": 6, + "value": 1685203490781 + }, + "date_last_updated": { + "type": 6, + "value": 1685211156964 + }, + "date_of_expiration": { + "type": 6, + "value": 1687795490781 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685211156964 + }, + "money_release_date": { + "type": 6, + "value": 1685211156964 + }, "money_release_status": "approved", "wasDebited": true }, @@ -59222,9 +76248,18 @@ "original_amount": 5206344, "total_amount": 5206344, "id": 1685730135668, - "date_created": { "type": 6, "value": 1685730135668 }, - "date_last_updated": { "type": 6, "value": 1685730135668 }, - "date_of_expiration": { "type": 6, "value": 1685730135668 }, + "date_created": { + "type": 6, + "value": 1685730135668 + }, + "date_last_updated": { + "type": 6, + "value": 1685730135668 + }, + "date_of_expiration": { + "type": 6, + "value": 1685730135668 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -59252,7 +76287,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686621899168/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt032n802wsoohx792l3hmb", "revision_nr": 1, "created": 1697467102251, "modified": 1697467102251 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt032n802wsoohx792l3hmb", + "revision_nr": 1, + "created": 1697467102251, + "modified": 1697467102251 + } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686621899168", @@ -59266,15 +76310,30 @@ "total_amount": 100, "history_id": 1686621899168, "id": 1686621899168, - "date_created": { "type": 6, "value": 1686621899168 }, - "date_last_updated": { "type": 6, "value": 1686658529648 }, - "date_of_expiration": { "type": 6, "value": 1689213899168 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1686658529648 }, - "money_release_date": { "type": 6, "value": 1686658529648 }, + "date_created": { + "type": 6, + "value": 1686621899168 + }, + "date_last_updated": { + "type": 6, + "value": 1686658529648 + }, + "date_of_expiration": { + "type": 6, + "value": 1689213899168 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686658529648 + }, + "money_release_date": { + "type": 6, + "value": 1686658529648 + }, "money_release_status": "approved", "wasDebited": true }, @@ -59320,9 +76379,18 @@ "original_amount": 637246, "total_amount": 637246, "id": 1686792689847, - "date_created": { "type": 6, "value": 1686792689847 }, - "date_last_updated": { "type": 6, "value": 1686792689847 }, - "date_of_expiration": { "type": 6, "value": 1686792689847 }, + "date_created": { + "type": 6, + "value": 1686792689847 + }, + "date_last_updated": { + "type": 6, + "value": 1686792689847 + }, + "date_of_expiration": { + "type": 6, + "value": 1686792689847 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -59383,9 +76451,18 @@ "original_amount": 5832008, "total_amount": 5832008, "id": 1688230681708, - "date_created": { "type": 6, "value": 1688230681708 }, - "date_last_updated": { "type": 6, "value": 1688230681708 }, - "date_of_expiration": { "type": 6, "value": 1751389081708 }, + "date_created": { + "type": 6, + "value": 1688230681708 + }, + "date_last_updated": { + "type": 6, + "value": 1688230681708 + }, + "date_of_expiration": { + "type": 6, + "value": 1751389081708 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -59454,17 +76531,32 @@ "total_amount": 498655, "id": 1690233382656, "history_id": 1690233382656, - "date_created": { "type": 6, "value": 1690233382656 }, - "date_last_updated": { "type": 6, "value": 1690398784450 }, - "date_of_expiration": { "type": 6, "value": 1690233382656 }, + "date_created": { + "type": 6, + "value": 1690233382656 + }, + "date_last_updated": { + "type": 6, + "value": 1690398784450 + }, + "date_of_expiration": { + "type": 6, + "value": 1690233382656 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1690398784450 }, - "money_release_date": { "type": 6, "value": 1690398784450 }, + "date_approved": { + "type": 6, + "value": 1690398784450 + }, + "money_release_date": { + "type": 6, + "value": 1690398784450 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -59476,13 +76568,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history", - "content": { "type": 1, "value": {}, "revision": "lnt032ik02w6oohx3nq47qc2", "revision_nr": 1, "created": 1697467102346, "modified": 1697467102346 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt032ik02w6oohx3nq47qc2", + "revision_nr": 1, + "created": 1697467102346, + "modified": 1697467102346 + } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt032q202x2oohx9lfgcv8g", "revision_nr": 1, "created": 1697467102355, @@ -59493,7 +76596,13 @@ "path": "ivipcoin-db::__movement_wallet__/111597444051012800", "content": { "type": 1, - "value": { "dataModificacao": 1684155865709, "dateValidity": 1684155865709, "totalValue": 22.552945262588203, "currencyType": "USD", "balancesModificacao": 1691060735628 }, + "value": { + "dataModificacao": 1684155865709, + "dateValidity": 1684155865709, + "totalValue": 22.552945262588203, + "currencyType": "USD", + "balancesModificacao": 1691060735628 + }, "revision": "lnt032hu02w2oohxbxclhc65", "revision_nr": 1, "created": 1697467102363, @@ -59504,7 +76613,14 @@ "path": "ivipcoin-db::__movement_wallet__/112180841461099860", "content": { "type": 1, - "value": { "dataModificacao": 1689619740886, "dateValidity": 1689619740886, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1689619740886, + "dateValidity": 1689619740886, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt032qj02x3oohx1wsy5pk6", "revision_nr": 1, "created": 1697467102376, @@ -59515,7 +76631,14 @@ "path": "ivipcoin-db::__movement_wallet__/112268931101963340", "content": { "type": 1, - "value": { "dataModificacao": 1677432431553, "dateValidity": 1677432431553, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677432431553, + "dateValidity": 1677432431553, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt032qw02x4oohxankldjtg", "revision_nr": 1, "created": 1697467102388, @@ -59526,7 +76649,11 @@ "path": "ivipcoin-db::__movement_wallet__/112720380478065870/balances/IVIP", "content": { "type": 1, - "value": { "available": "5721757.00000000", "symbol": "IVIP", "value": 612.41 }, + "value": { + "available": "5721757.00000000", + "symbol": "IVIP", + "value": 612.41 + }, "revision": "lnt032r902x7oohxgvjl2zrz", "revision_nr": 1, "created": 1697467102399, @@ -59535,7 +76662,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/balances", - "content": { "type": 1, "value": {}, "revision": "lnt032r902x6oohx4yoccz9z", "revision_nr": 1, "created": 1697467102412, "modified": 1697467102412 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt032r902x6oohx4yoccz9z", + "revision_nr": 1, + "created": 1697467102412, + "modified": 1697467102412 + } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1677943939458/description", @@ -59550,7 +76684,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1677943939458/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt032s502xboohx2dw29bfw", "revision_nr": 1, "created": 1697467102431, "modified": 1697467102431 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt032s502xboohx2dw29bfw", + "revision_nr": 1, + "created": 1697467102431, + "modified": 1697467102431 + } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1677943939458", @@ -59564,15 +76707,30 @@ "total_amount": 1600, "history_id": 1677943939458, "id": 1677943939458, - "date_created": { "type": 6, "value": 1677943939458 }, - "date_last_updated": { "type": 6, "value": 1677962646599 }, - "date_of_expiration": { "type": 6, "value": 1680535939458 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677962646599 }, - "money_release_date": { "type": 6, "value": 1677962646599 }, + "date_created": { + "type": 6, + "value": 1677943939458 + }, + "date_last_updated": { + "type": 6, + "value": 1677962646599 + }, + "date_of_expiration": { + "type": 6, + "value": 1680535939458 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677962646599 + }, + "money_release_date": { + "type": 6, + "value": 1677962646599 + }, "money_release_status": "approved", "wasDebited": true }, @@ -59618,9 +76776,18 @@ "original_amount": 11445515, "total_amount": 11445515, "id": 1678154526038, - "date_created": { "type": 6, "value": 1678154526038 }, - "date_last_updated": { "type": 6, "value": 1678154526038 }, - "date_of_expiration": { "type": 6, "value": 1678154526038 }, + "date_created": { + "type": 6, + "value": 1678154526038 + }, + "date_last_updated": { + "type": 6, + "value": 1678154526038 + }, + "date_of_expiration": { + "type": 6, + "value": 1678154526038 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -59648,7 +76815,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1689270623353/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt032tl02xgoohx0evh00gj", "revision_nr": 1, "created": 1697467102481, "modified": 1697467102481 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt032tl02xgoohx0evh00gj", + "revision_nr": 1, + "created": 1697467102481, + "modified": 1697467102481 + } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1689270623353", @@ -59662,9 +76838,18 @@ "total_amount": 1766725, "history_id": 1689270623353, "id": 1689270623353, - "date_created": { "type": 6, "value": 1689270623353 }, - "date_last_updated": { "type": 6, "value": 1689270623353 }, - "date_of_expiration": { "type": 6, "value": 1689270623353 }, + "date_created": { + "type": 6, + "value": 1689270623353 + }, + "date_last_updated": { + "type": 6, + "value": 1689270623353 + }, + "date_of_expiration": { + "type": 6, + "value": 1689270623353 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -59731,17 +76916,32 @@ "total_amount": 1000, "id": 1690310464254, "history_id": 1690310464254, - "date_created": { "type": 6, "value": 1690310464254 }, - "date_last_updated": { "type": 6, "value": 1690393130972 }, - "date_of_expiration": { "type": 6, "value": 1690310464254 }, + "date_created": { + "type": 6, + "value": 1690310464254 + }, + "date_last_updated": { + "type": 6, + "value": 1690393130972 + }, + "date_of_expiration": { + "type": 6, + "value": 1690310464254 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1690393130972 }, - "money_release_date": { "type": 6, "value": 1690393130972 }, + "date_approved": { + "type": 6, + "value": 1690393130972 + }, + "money_release_date": { + "type": 6, + "value": 1690393130972 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -59777,7 +76977,11 @@ "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 171682.74 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 171682.74 + }, "revision": "lnt032vf02xqoohxfxfi3003", "revision_nr": 1, "created": 1697467102547, @@ -59786,7 +76990,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt032vf02xpoohx31qu84zt", "revision_nr": 1, "created": 1697467102555, "modified": 1697467102555 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt032vf02xpoohx31qu84zt", + "revision_nr": 1, + "created": 1697467102555, + "modified": 1697467102555 + } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details", @@ -59821,16 +77032,28 @@ "total_amount": 5551075.26, "id": "1695843073185", "history_id": "1695843073185", - "date_created": { "type": 6, "value": 1695843073185 }, - "date_last_updated": { "type": 6, "value": 1696513738903 }, - "date_of_expiration": { "type": 6, "value": 1695843073185 }, + "date_created": { + "type": 6, + "value": 1695843073185 + }, + "date_last_updated": { + "type": 6, + "value": 1696513738903 + }, + "date_of_expiration": { + "type": 6, + "value": 1695843073185 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_other_reason", - "money_release_date": { "type": 6, "value": 1696513738903 }, + "money_release_date": { + "type": 6, + "value": 1696513738903 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -59866,7 +77089,11 @@ "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 171682.74 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 171682.74 + }, "revision": "lnt032wt02xwoohxd1n93042", "revision_nr": 1, "created": 1697467102597, @@ -59875,7 +77102,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt032ws02xvoohx90tt75iy", "revision_nr": 1, "created": 1697467102605, "modified": 1697467102605 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt032ws02xvoohx90tt75iy", + "revision_nr": 1, + "created": 1697467102605, + "modified": 1697467102605 + } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details", @@ -59910,17 +77144,32 @@ "total_amount": 5551075.26, "id": "1695843125867", "history_id": "1695843125867", - "date_created": { "type": 6, "value": 1695843125867 }, - "date_last_updated": { "type": 6, "value": 1696288649131 }, - "date_of_expiration": { "type": 6, "value": 1695843125867 }, + "date_created": { + "type": 6, + "value": 1695843125867 + }, + "date_last_updated": { + "type": 6, + "value": 1696288649131 + }, + "date_of_expiration": { + "type": 6, + "value": 1695843125867 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1696288649131 }, - "money_release_date": { "type": 6, "value": 1696288649131 }, + "date_approved": { + "type": 6, + "value": 1696288649131 + }, + "money_release_date": { + "type": 6, + "value": 1696288649131 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -59932,13 +77181,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history", - "content": { "type": 1, "value": {}, "revision": "lnt032rw02x8oohxe8scchrk", "revision_nr": 1, "created": 1697467102629, "modified": 1697467102629 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt032rw02x8oohxe8scchrk", + "revision_nr": 1, + "created": 1697467102629, + "modified": 1697467102629 + } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt032xx02xxoohx1t0e7ue6", "revision_nr": 1, "created": 1697467102637, @@ -59949,7 +77209,16 @@ "path": "ivipcoin-db::__movement_wallet__/112720380478065870", "content": { "type": 1, - "value": { "dataModificacao": 1677943677925, "dateValidity": 1678919503018, "totalValue": 308.8, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697425200000 } }, + "value": { + "dataModificacao": 1677943677925, + "dateValidity": 1678919503018, + "totalValue": 308.8, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } + }, "revision": "lnt032r802x5oohxegx8ag5h", "revision_nr": 1, "created": 1697467102646, @@ -59960,7 +77229,11 @@ "path": "ivipcoin-db::__movement_wallet__/113397082035573860/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt032ye02xzoohx33bs9i14", "revision_nr": 1, "created": 1697467102656, @@ -59971,7 +77244,14 @@ "path": "ivipcoin-db::__movement_wallet__/113397082035573860", "content": { "type": 1, - "value": { "dataModificacao": 1684093885315, "dateValidity": 1684093885315, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684093885315, + "dateValidity": 1684093885315, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt032ye02xyoohxbojj61h2", "revision_nr": 1, "created": 1697467102665, @@ -59982,7 +77262,11 @@ "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/BNB", "content": { "type": 1, - "value": { "symbol": "BNB", "value": 329390, "available": "1000.00000000" }, + "value": { + "symbol": "BNB", + "value": 329390, + "available": "1000.00000000" + }, "revision": "lnt032yx02y2oohxe50oezs9", "revision_nr": 1, "created": 1697467102673, @@ -59993,7 +77277,11 @@ "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/BTC", "content": { "type": 1, - "value": { "symbol": "BTC", "value": 24969.54, "available": "1.00000000" }, + "value": { + "symbol": "BTC", + "value": 24969.54, + "available": "1.00000000" + }, "revision": "lnt032z502y3oohxhfyt33fw", "revision_nr": 1, "created": 1697467102681, @@ -60004,7 +77292,11 @@ "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/BUSD", "content": { "type": 1, - "value": { "symbol": "BUSD", "value": 10000, "available": "10000.00000000" }, + "value": { + "symbol": "BUSD", + "value": 10000, + "available": "10000.00000000" + }, "revision": "lnt032zd02y4oohx1pah5ces", "revision_nr": 1, "created": 1697467102691, @@ -60015,7 +77307,11 @@ "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/ETH", "content": { "type": 1, - "value": { "symbol": "ETH", "value": 168116, "available": "100.00000000" }, + "value": { + "symbol": "ETH", + "value": 168116, + "available": "100.00000000" + }, "revision": "lnt032zn02y5oohx5wf92slp", "revision_nr": 1, "created": 1697467102699, @@ -60026,7 +77322,11 @@ "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/LTC", "content": { "type": 1, - "value": { "symbol": "LTC", "value": 39525, "available": "500.00000000" }, + "value": { + "symbol": "LTC", + "value": 39525, + "available": "500.00000000" + }, "revision": "lnt032zv02y6oohxdpu98sl0", "revision_nr": 1, "created": 1697467102708, @@ -60037,7 +77337,11 @@ "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/TRX", "content": { "type": 1, - "value": { "symbol": "TRX", "value": 32965, "available": "500000.00000000" }, + "value": { + "symbol": "TRX", + "value": 32965, + "available": "500000.00000000" + }, "revision": "lnt0330402y7oohxclir0q9z", "revision_nr": 1, "created": 1697467102716, @@ -60048,7 +77352,11 @@ "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/USDT", "content": { "type": 1, - "value": { "symbol": "USDT", "value": 10020, "available": "10000.00000000" }, + "value": { + "symbol": "USDT", + "value": 10020, + "available": "10000.00000000" + }, "revision": "lnt0330c02y8oohxgbgg7x8b", "revision_nr": 1, "created": 1697467102725, @@ -60059,7 +77367,11 @@ "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/XRP", "content": { "type": 1, - "value": { "symbol": "XRP", "value": 18315, "available": "50000.00000000" }, + "value": { + "symbol": "XRP", + "value": 18315, + "available": "50000.00000000" + }, "revision": "lnt0330l02y9oohx1q994nn2", "revision_nr": 1, "created": 1697467102732, @@ -60068,13 +77380,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances", - "content": { "type": 1, "value": {}, "revision": "lnt032yx02y1oohx3scr4pf1", "revision_nr": 1, "created": 1697467102740, "modified": 1697467102740 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt032yx02y1oohx3scr4pf1", + "revision_nr": 1, + "created": 1697467102740, + "modified": 1697467102740 + } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800", "content": { "type": 1, - "value": { "dataModificacao": 1678997585705, "dateValidity": 1679015574916, "totalValue": 633300.54, "history": {}, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678997585705, + "dateValidity": 1679015574916, + "totalValue": 633300.54, + "history": {}, + "currencyType": "USD" + }, "revision": "lnt032yx02y0oohx51kedibo", "revision_nr": 1, "created": 1697467102748, @@ -60085,7 +77410,14 @@ "path": "ivipcoin-db::__movement_wallet__/113679410552544270", "content": { "type": 1, - "value": { "dataModificacao": 1677932902892, "dateValidity": 1678217961007, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677932902892, + "dateValidity": 1678217961007, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt0331802yaoohxboklfm8r", "revision_nr": 1, "created": 1697467102758, @@ -60096,7 +77428,14 @@ "path": "ivipcoin-db::__movement_wallet__/113719047968885220", "content": { "type": 1, - "value": { "dataModificacao": 1678200529926, "dateValidity": 1678214929961, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678200529926, + "dateValidity": 1678214929961, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt0331i02yboohxcwnra0mt", "revision_nr": 1, "created": 1697467102765, @@ -60107,7 +77446,14 @@ "path": "ivipcoin-db::__movement_wallet__/114964316693074270", "content": { "type": 1, - "value": { "dataModificacao": 1680104445044, "dateValidity": 1680104445044, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1680104445044, + "dateValidity": 1680104445044, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt0331p02ycoohxafyvd9ku", "revision_nr": 1, "created": 1697467102774, @@ -60118,7 +77464,11 @@ "path": "ivipcoin-db::__movement_wallet__/115436385305746960/balances/IVIP", "content": { "type": 1, - "value": { "available": "1000000.88000000", "symbol": "IVIP", "value": 106.42 }, + "value": { + "available": "1000000.88000000", + "symbol": "IVIP", + "value": 106.42 + }, "revision": "lnt0331z02yfoohx66j36tg7", "revision_nr": 1, "created": 1697467102783, @@ -60127,7 +77477,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/balances", - "content": { "type": 1, "value": {}, "revision": "lnt0331z02yeoohxf20c36du", "revision_nr": 1, "created": 1697467102791, "modified": 1697467102791 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0331z02yeoohxf20c36du", + "revision_nr": 1, + "created": 1697467102791, + "modified": 1697467102791 + } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689207673127/description", @@ -60142,7 +77499,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689207673127/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0332n02yjoohx96s7hmt9", "revision_nr": 1, "created": 1697467102808, "modified": 1697467102808 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0332n02yjoohx96s7hmt9", + "revision_nr": 1, + "created": 1697467102808, + "modified": 1697467102808 + } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689207673127", @@ -60156,15 +77522,30 @@ "total_amount": 1500, "history_id": 1689207673127, "id": 1689207673127, - "date_created": { "type": 6, "value": 1689207673127 }, - "date_last_updated": { "type": 6, "value": 1689250350894 }, - "date_of_expiration": { "type": 6, "value": 1691799673127 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689250350894 }, - "money_release_date": { "type": 6, "value": 1689250350894 }, + "date_created": { + "type": 6, + "value": 1689207673127 + }, + "date_last_updated": { + "type": 6, + "value": 1689250350894 + }, + "date_of_expiration": { + "type": 6, + "value": 1691799673127 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689250350894 + }, + "money_release_date": { + "type": 6, + "value": 1689250350894 + }, "money_release_status": "approved", "wasDebited": true }, @@ -60210,9 +77591,18 @@ "original_amount": 593666, "total_amount": 593666, "id": 1689260591470, - "date_created": { "type": 6, "value": 1689260591470 }, - "date_last_updated": { "type": 6, "value": 1689260591470 }, - "date_of_expiration": { "type": 6, "value": 1689260591470 }, + "date_created": { + "type": 6, + "value": 1689260591470 + }, + "date_last_updated": { + "type": 6, + "value": 1689260591470 + }, + "date_of_expiration": { + "type": 6, + "value": 1689260591470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -60231,7 +77621,13 @@ "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1692464251151 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692464251151 + } + }, "revision": "lnt0333l02ynoohx0hw9hq08", "revision_nr": 1, "created": 1697467102843, @@ -60293,8 +77689,14 @@ "total_amount": 650, "id": 1689872251156, "history_id": 1689872251156, - "date_created": { "type": 6, "value": 1689872251156 }, - "date_last_updated": { "type": 6, "value": 1689872251156 }, + "date_created": { + "type": 6, + "value": 1689872251156 + }, + "date_last_updated": { + "type": 6, + "value": 1689872251156 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -60312,7 +77714,13 @@ "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1692903106238 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692903106238 + } + }, "revision": "lnt0334s02ysoohx4629f2z5", "revision_nr": 1, "created": 1697467102883, @@ -60374,16 +77782,28 @@ "total_amount": 650, "id": 1690311106238, "history_id": 1690311106238, - "date_created": { "type": 6, "value": 1690311106238 }, - "date_last_updated": { "type": 6, "value": 1690311305225 }, + "date_created": { + "type": 6, + "value": 1690311106238 + }, + "date_last_updated": { + "type": 6, + "value": 1690311305225 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1690311305225 }, - "money_release_date": { "type": 6, "value": 1690311305225 }, + "date_approved": { + "type": 6, + "value": 1690311305225 + }, + "money_release_date": { + "type": 6, + "value": 1690311305225 + }, "money_release_status": "approved", "wasDebited": true }, @@ -60429,9 +77849,18 @@ "original_amount": 526109, "total_amount": 526109, "id": 1690311787862, - "date_created": { "type": 6, "value": 1690311787862 }, - "date_last_updated": { "type": 6, "value": 1690311787862 }, - "date_of_expiration": { "type": 6, "value": 1690311787862 }, + "date_created": { + "type": 6, + "value": 1690311787862 + }, + "date_last_updated": { + "type": 6, + "value": 1690311787862 + }, + "date_of_expiration": { + "type": 6, + "value": 1690311787862 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -60501,9 +77930,18 @@ "total_amount": 1119775, "id": 1691353182696, "history_id": 1691353182696, - "date_created": { "type": 6, "value": 1691353182696 }, - "date_last_updated": { "type": 6, "value": 1691353182696 }, - "date_of_expiration": { "type": 6, "value": 1694031582695 }, + "date_created": { + "type": 6, + "value": 1691353182696 + }, + "date_last_updated": { + "type": 6, + "value": 1691353182696 + }, + "date_of_expiration": { + "type": 6, + "value": 1694031582695 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -60521,7 +77959,13 @@ "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694348197423 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694348197423 + } + }, "revision": "lnt0337j02z3oohx1gs8h1kd", "revision_nr": 1, "created": 1697467102983, @@ -60583,16 +78027,28 @@ "total_amount": 500, "id": 1691756197423, "history_id": 1691756197423, - "date_created": { "type": 6, "value": 1691756197423 }, - "date_last_updated": { "type": 6, "value": 1691760960390 }, + "date_created": { + "type": 6, + "value": 1691756197423 + }, + "date_last_updated": { + "type": 6, + "value": 1691760960390 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691760960390 }, - "money_release_date": { "type": 6, "value": 1691760960390 }, + "date_approved": { + "type": 6, + "value": 1691760960390 + }, + "money_release_date": { + "type": 6, + "value": 1691760960390 + }, "money_release_status": "approved", "wasDebited": true }, @@ -60646,9 +78102,18 @@ "total_amount": 917399, "id": 1691761354889, "history_id": 1691761354889, - "date_created": { "type": 6, "value": 1691761354889 }, - "date_last_updated": { "type": 6, "value": 1691761354889 }, - "date_of_expiration": { "type": 6, "value": 1691761354889 }, + "date_created": { + "type": 6, + "value": 1691761354889 + }, + "date_last_updated": { + "type": 6, + "value": 1691761354889 + }, + "date_of_expiration": { + "type": 6, + "value": 1691761354889 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -60718,9 +78183,18 @@ "total_amount": 1142170.5, "id": "1694032195852", "history_id": "1694032195852", - "date_created": { "type": 6, "value": 1694032195852 }, - "date_last_updated": { "type": 6, "value": 1694032195852 }, - "date_of_expiration": { "type": 6, "value": 1694032195852 }, + "date_created": { + "type": 6, + "value": 1694032195852 + }, + "date_last_updated": { + "type": 6, + "value": 1694032195852 + }, + "date_of_expiration": { + "type": 6, + "value": 1694032195852 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -60789,9 +78263,18 @@ "total_amount": 2059569, "id": "1694041733454", "history_id": "1694041733454", - "date_created": { "type": 6, "value": 1694041733454 }, - "date_last_updated": { "type": 6, "value": 1694041733454 }, - "date_of_expiration": { "type": 6, "value": 1696633733454 }, + "date_created": { + "type": 6, + "value": 1694041733454 + }, + "date_last_updated": { + "type": 6, + "value": 1694041733454 + }, + "date_of_expiration": { + "type": 6, + "value": 1696633733454 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -60861,9 +78344,18 @@ "total_amount": 2100760.38, "id": "1696633733454", "history_id": "1696633733454", - "date_created": { "type": 6, "value": 1696655091607 }, - "date_last_updated": { "type": 6, "value": 1696655091607 }, - "date_of_expiration": { "type": 6, "value": 1696655091607 }, + "date_created": { + "type": 6, + "value": 1696655091607 + }, + "date_last_updated": { + "type": 6, + "value": 1696655091607 + }, + "date_of_expiration": { + "type": 6, + "value": 1696655091607 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -60933,9 +78425,18 @@ "total_amount": 1100760, "id": "1696668184975", "history_id": "1696668184975", - "date_created": { "type": 6, "value": 1696668184975 }, - "date_last_updated": { "type": 6, "value": 1696668184975 }, - "date_of_expiration": { "type": 6, "value": 1699346584935 }, + "date_created": { + "type": 6, + "value": 1696668184975 + }, + "date_last_updated": { + "type": 6, + "value": 1696668184975 + }, + "date_of_expiration": { + "type": 6, + "value": 1699346584935 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -60953,7 +78454,13 @@ "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699795525577 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699795525577 + } + }, "revision": "lnt033eb02zroohxd5v1bb08", "revision_nr": 1, "created": 1697467103227, @@ -61016,16 +78523,28 @@ "total_amount": 1600, "id": "1697203525578", "history_id": "1697203525578", - "date_created": { "type": 6, "value": 1697203525578 }, - "date_last_updated": { "type": 6, "value": 1697203941571 }, + "date_created": { + "type": 6, + "value": 1697203525578 + }, + "date_last_updated": { + "type": 6, + "value": 1697203941571 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1697203941571 }, - "money_release_date": { "type": 6, "value": 1697203941571 }, + "date_approved": { + "type": 6, + "value": 1697203941571 + }, + "money_release_date": { + "type": 6, + "value": 1697203941571 + }, "money_release_status": "approved", "wasDebited": true }, @@ -61080,9 +78599,18 @@ "total_amount": 2947170, "id": "1697204057820", "history_id": "1697204057820", - "date_created": { "type": 6, "value": 1697204057820 }, - "date_last_updated": { "type": 6, "value": 1697204057820 }, - "date_of_expiration": { "type": 6, "value": 1697204057820 }, + "date_created": { + "type": 6, + "value": 1697204057820 + }, + "date_last_updated": { + "type": 6, + "value": 1697204057820 + }, + "date_of_expiration": { + "type": 6, + "value": 1697204057820 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -61099,13 +78627,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history", - "content": { "type": 1, "value": {}, "revision": "lnt0332f02ygoohxey146mz5", "revision_nr": 1, "created": 1697467103294, "modified": 1697467103294 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0332f02ygoohxey146mz5", + "revision_nr": 1, + "created": 1697467103294, + "modified": 1697467103294 + } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1695990240020 } }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1695990240020 + } + }, "revision": "lnt033ge02zyoohx9ihkcber", "revision_nr": 1, "created": 1697467103302, @@ -61116,7 +78659,16 @@ "path": "ivipcoin-db::__movement_wallet__/115436385305746960", "content": { "type": 1, - "value": { "dataModificacao": 1689197249139, "dateValidity": 1689197249139, "totalValue": 309.3, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697166000000 } }, + "value": { + "dataModificacao": 1689197249139, + "dateValidity": 1689197249139, + "totalValue": 309.3, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697166000000 + } + }, "revision": "lnt0331y02ydoohx5tru02rm", "revision_nr": 1, "created": 1697467103310, @@ -61127,7 +78679,14 @@ "path": "ivipcoin-db::__movement_wallet__/115766338093199020", "content": { "type": 1, - "value": { "dataModificacao": 1679078083825, "dateValidity": 1679078083825, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1679078083825, + "dateValidity": 1679078083825, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt033gu02zzoohx9x82bmp9", "revision_nr": 1, "created": 1697467103318, @@ -61138,7 +78697,11 @@ "path": "ivipcoin-db::__movement_wallet__/116261495252090180/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt033h20301oohx3zdb9fia", "revision_nr": 1, "created": 1697467103328, @@ -61149,7 +78712,11 @@ "path": "ivipcoin-db::__movement_wallet__/116261495252090180/balances/IVIP", "content": { "type": 1, - "value": { "available": "36743092.00000000", "symbol": "IVIP", "value": 7620.42 }, + "value": { + "available": "36743092.00000000", + "symbol": "IVIP", + "value": 7620.42 + }, "revision": "lnt033hc0303oohxf24p0nc4", "revision_nr": 1, "created": 1697467103339, @@ -61158,7 +78725,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/balances", - "content": { "type": 1, "value": {}, "revision": "lnt033hc0302oohx7dbaaqnj", "revision_nr": 1, "created": 1697467103347, "modified": 1697467103347 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt033hc0302oohx7dbaaqnj", + "revision_nr": 1, + "created": 1697467103347, + "modified": 1697467103347 + } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1685463962891/description", @@ -61173,7 +78747,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1685463962891/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033i30307oohxdwgm0w2r", "revision_nr": 1, "created": 1697467103364, "modified": 1697467103364 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033i30307oohxdwgm0w2r", + "revision_nr": 1, + "created": 1697467103364, + "modified": 1697467103364 + } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1685463962891", @@ -61187,15 +78770,30 @@ "total_amount": 10000, "history_id": 1685463962891, "id": 1685463962891, - "date_created": { "type": 6, "value": 1685463962891 }, - "date_last_updated": { "type": 6, "value": 1685468486567 }, - "date_of_expiration": { "type": 6, "value": 1688055962891 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685468486567 }, - "money_release_date": { "type": 6, "value": 1685468486567 }, + "date_created": { + "type": 6, + "value": 1685463962891 + }, + "date_last_updated": { + "type": 6, + "value": 1685468486567 + }, + "date_of_expiration": { + "type": 6, + "value": 1688055962891 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685468486567 + }, + "money_release_date": { + "type": 6, + "value": 1685468486567 + }, "money_release_status": "approved", "wasDebited": true }, @@ -61241,9 +78839,18 @@ "original_amount": 36743092, "total_amount": 36743092, "id": 1688996128425, - "date_created": { "type": 6, "value": 1688996128425 }, - "date_last_updated": { "type": 6, "value": 1688996128425 }, - "date_of_expiration": { "type": 6, "value": 1688996128425 }, + "date_created": { + "type": 6, + "value": 1688996128425 + }, + "date_last_updated": { + "type": 6, + "value": 1688996128425 + }, + "date_of_expiration": { + "type": 6, + "value": 1688996128425 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -61260,13 +78867,29 @@ }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history", - "content": { "type": 1, "value": {}, "revision": "lnt033hv0304oohxd9na4lpx", "revision_nr": 1, "created": 1697467103398, "modified": 1697467103398 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt033hv0304oohxd9na4lpx", + "revision_nr": 1, + "created": 1697467103398, + "modified": 1697467103398 + } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180", "content": { "type": 1, - "value": { "dataModificacao": 1685463582486, "dateValidity": 1685463582486, "totalValue": 5105.87, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696215600000 } }, + "value": { + "dataModificacao": 1685463582486, + "dateValidity": 1685463582486, + "totalValue": 5105.87, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696215600000 + } + }, "revision": "lnt033h20300oohx3hyx5vdy", "revision_nr": 1, "created": 1697467103406, @@ -61277,7 +78900,11 @@ "path": "ivipcoin-db::__movement_wallet__/116696192475580050/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt033jj030boohxa5sdg2ng", "revision_nr": 1, "created": 1697467103414, @@ -61288,7 +78915,13 @@ "path": "ivipcoin-db::__movement_wallet__/116696192475580050", "content": { "type": 1, - "value": { "dataModificacao": 1678753662620, "dateValidity": 1678768062657, "balances": {}, "history": {}, "totalValue": 0 }, + "value": { + "dataModificacao": 1678753662620, + "dateValidity": 1678768062657, + "balances": {}, + "history": {}, + "totalValue": 0 + }, "revision": "lnt033ji030aoohxdq757p74", "revision_nr": 1, "created": 1697467103423, @@ -61299,7 +78932,14 @@ "path": "ivipcoin-db::__movement_wallet__/117188412170673220", "content": { "type": 1, - "value": { "dataModificacao": 1678532146149, "dateValidity": 1678546546189, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678532146149, + "dateValidity": 1678546546189, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt033jz030coohx4ze8gwqo", "revision_nr": 1, "created": 1697467103431, @@ -61310,7 +78950,11 @@ "path": "ivipcoin-db::__movement_wallet__/117718803693710020/balances/IVIP", "content": { "type": 1, - "value": { "available": "0.70000000", "symbol": "IVIP", "value": 0.00037 }, + "value": { + "available": "0.70000000", + "symbol": "IVIP", + "value": 0.00037 + }, "revision": "lnt033k7030foohx6ii8bbq3", "revision_nr": 1, "created": 1697467103441, @@ -61319,7 +78963,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/balances", - "content": { "type": 1, "value": {}, "revision": "lnt033k7030eoohxhoy785fp", "revision_nr": 1, "created": 1697467103449, "modified": 1697467103449 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt033k7030eoohxhoy785fp", + "revision_nr": 1, + "created": 1697467103449, + "modified": 1697467103449 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1677877705308/description", @@ -61334,7 +78985,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1677877705308/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033kz030joohx9y9g386d", "revision_nr": 1, "created": 1697467103467, "modified": 1697467103467 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033kz030joohx9y9g386d", + "revision_nr": 1, + "created": 1697467103467, + "modified": 1697467103467 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1677877705308", @@ -61348,15 +79008,30 @@ "total_amount": 200, "history_id": 1677877705308, "id": 1677877705308, - "date_created": { "type": 6, "value": 1677877705308 }, - "date_last_updated": { "type": 6, "value": 1677878165656 }, - "date_of_expiration": { "type": 6, "value": 1680469705308 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677878165656 }, - "money_release_date": { "type": 6, "value": 1677878165656 }, + "date_created": { + "type": 6, + "value": 1677877705308 + }, + "date_last_updated": { + "type": 6, + "value": 1677878165656 + }, + "date_of_expiration": { + "type": 6, + "value": 1680469705308 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677878165656 + }, + "money_release_date": { + "type": 6, + "value": 1677878165656 + }, "money_release_status": "approved", "wasDebited": true }, @@ -61402,9 +79077,18 @@ "original_amount": 1428465, "total_amount": 1428465, "id": 1678145189537, - "date_created": { "type": 6, "value": 1678145189537 }, - "date_last_updated": { "type": 6, "value": 1678145189537 }, - "date_of_expiration": { "type": 6, "value": 1678145189537 }, + "date_created": { + "type": 6, + "value": 1678145189537 + }, + "date_last_updated": { + "type": 6, + "value": 1678145189537 + }, + "date_of_expiration": { + "type": 6, + "value": 1678145189537 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -61432,7 +79116,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1683395429062/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033m5030ooohx4tet4of0", "revision_nr": 1, "created": 1697467103512, "modified": 1697467103512 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033m5030ooohx4tet4of0", + "revision_nr": 1, + "created": 1697467103512, + "modified": 1697467103512 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1683395429062", @@ -61446,9 +79139,18 @@ "total_amount": 2000, "history_id": 1683395429062, "id": 1683395429062, - "date_created": { "type": 6, "value": 1683395429062 }, - "date_last_updated": { "type": 6, "value": 1683395429062 }, - "date_of_expiration": { "type": 6, "value": 1685987429062 }, + "date_created": { + "type": 6, + "value": 1683395429062 + }, + "date_last_updated": { + "type": 6, + "value": 1683395429062 + }, + "date_of_expiration": { + "type": 6, + "value": 1685987429062 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -61473,7 +79175,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684179573429/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033mx030roohx42bnfrgz", "revision_nr": 1, "created": 1697467103538, "modified": 1697467103538 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033mx030roohx42bnfrgz", + "revision_nr": 1, + "created": 1697467103538, + "modified": 1697467103538 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684179573429", @@ -61487,15 +79198,30 @@ "total_amount": 350, "history_id": 1684179573429, "id": 1684179573429, - "date_created": { "type": 6, "value": 1684179573429 }, - "date_last_updated": { "type": 6, "value": 1684181611494 }, - "date_of_expiration": { "type": 6, "value": 1686771573429 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684181611494 }, - "money_release_date": { "type": 6, "value": 1684181611494 }, + "date_created": { + "type": 6, + "value": 1684179573429 + }, + "date_last_updated": { + "type": 6, + "value": 1684181611494 + }, + "date_of_expiration": { + "type": 6, + "value": 1686771573429 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684181611494 + }, + "money_release_date": { + "type": 6, + "value": 1684181611494 + }, "money_release_status": "approved", "wasDebited": true }, @@ -61520,7 +79246,11 @@ "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 6.00%", "amount": 60 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 6.00%", + "amount": 60 + }, "revision": "lnt033nm030woohxgopcfr0o", "revision_nr": 1, "created": 1697467103563, @@ -61529,11 +79259,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt033nm030voohx817o9bsm", "revision_nr": 1, "created": 1697467103571, "modified": 1697467103571 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt033nm030voohx817o9bsm", + "revision_nr": 1, + "created": 1697467103571, + "modified": 1697467103571 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706/details", - "content": { "type": 1, "value": {}, "revision": "lnt033nm030uoohxbzvsafyy", "revision_nr": 1, "created": 1697467103579, "modified": 1697467103579 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt033nm030uoohxbzvsafyy", + "revision_nr": 1, + "created": 1697467103579, + "modified": 1697467103579 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706", @@ -61547,9 +79291,18 @@ "total_amount": 1060, "history_id": 1684182120706, "id": 1684182120706, - "date_created": { "type": 6, "value": 1684182120706 }, - "date_last_updated": { "type": 6, "value": 1684182120706 }, - "date_of_expiration": { "type": 6, "value": 1686774120706 }, + "date_created": { + "type": 6, + "value": 1684182120706 + }, + "date_last_updated": { + "type": 6, + "value": 1684182120706 + }, + "date_of_expiration": { + "type": 6, + "value": 1686774120706 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -61598,9 +79351,18 @@ "original_amount": 6575487, "total_amount": 6575487, "id": 1684624218931, - "date_created": { "type": 6, "value": 1684624218931 }, - "date_last_updated": { "type": 6, "value": 1684624218931 }, - "date_of_expiration": { "type": 6, "value": 1684624218931 }, + "date_created": { + "type": 6, + "value": 1684624218931 + }, + "date_last_updated": { + "type": 6, + "value": 1684624218931 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624218931 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -61628,7 +79390,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685388624157/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033pa0311oohx2ftw4e6w", "revision_nr": 1, "created": 1697467103625, "modified": 1697467103625 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033pa0311oohx2ftw4e6w", + "revision_nr": 1, + "created": 1697467103625, + "modified": 1697467103625 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685388624157", @@ -61642,9 +79413,18 @@ "total_amount": 2982650, "history_id": 1685388624157, "id": 1685388624157, - "date_created": { "type": 6, "value": 1685388624157 }, - "date_last_updated": { "type": 6, "value": 1685388624157 }, - "date_of_expiration": { "type": 6, "value": 1685388624157 }, + "date_created": { + "type": 6, + "value": 1685388624157 + }, + "date_last_updated": { + "type": 6, + "value": 1685388624157 + }, + "date_of_expiration": { + "type": 6, + "value": 1685388624157 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -61669,7 +79449,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685389940740/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033q20314oohx92ls7kv4", "revision_nr": 1, "created": 1697467103651, "modified": 1697467103651 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033q20314oohx92ls7kv4", + "revision_nr": 1, + "created": 1697467103651, + "modified": 1697467103651 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685389940740", @@ -61683,9 +79472,18 @@ "total_amount": 8003952, "history_id": 1685389940740, "id": 1685389940740, - "date_created": { "type": 6, "value": 1685389940740 }, - "date_last_updated": { "type": 6, "value": 1685389940740 }, - "date_of_expiration": { "type": 6, "value": 1685389940740 }, + "date_created": { + "type": 6, + "value": 1685389940740 + }, + "date_last_updated": { + "type": 6, + "value": 1685389940740 + }, + "date_of_expiration": { + "type": 6, + "value": 1685389940740 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -61743,9 +79541,18 @@ "original_amount": 3568754, "total_amount": 3568754, "id": 1685665639073, - "date_created": { "type": 6, "value": 1685665639073 }, - "date_last_updated": { "type": 6, "value": 1685665639073 }, - "date_of_expiration": { "type": 6, "value": 1688257639073 }, + "date_created": { + "type": 6, + "value": 1685665639073 + }, + "date_last_updated": { + "type": 6, + "value": 1685665639073 + }, + "date_of_expiration": { + "type": 6, + "value": 1688257639073 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -61806,9 +79613,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685668997292, - "date_created": { "type": 6, "value": 1685668997292 }, - "date_last_updated": { "type": 6, "value": 1685668997292 }, - "date_of_expiration": { "type": 6, "value": 1701480197292 }, + "date_created": { + "type": 6, + "value": 1685668997292 + }, + "date_last_updated": { + "type": 6, + "value": 1685668997292 + }, + "date_of_expiration": { + "type": 6, + "value": 1701480197292 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -61868,9 +79684,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685669010794, - "date_created": { "type": 6, "value": 1685669010794 }, - "date_last_updated": { "type": 6, "value": 1685669010794 }, - "date_of_expiration": { "type": 6, "value": 1717291410794 }, + "date_created": { + "type": 6, + "value": 1685669010794 + }, + "date_last_updated": { + "type": 6, + "value": 1685669010794 + }, + "date_of_expiration": { + "type": 6, + "value": 1717291410794 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -61930,9 +79755,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685669017906, - "date_created": { "type": 6, "value": 1685669017906 }, - "date_last_updated": { "type": 6, "value": 1685669017906 }, - "date_of_expiration": { "type": 6, "value": 1748827417906 }, + "date_created": { + "type": 6, + "value": 1685669017906 + }, + "date_last_updated": { + "type": 6, + "value": 1685669017906 + }, + "date_of_expiration": { + "type": 6, + "value": 1748827417906 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -61959,7 +79793,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686742076839/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033tp031joohx0keh7iux", "revision_nr": 1, "created": 1697467103781, "modified": 1697467103781 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033tp031joohx0keh7iux", + "revision_nr": 1, + "created": 1697467103781, + "modified": 1697467103781 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686742076839", @@ -61973,9 +79816,18 @@ "total_amount": 470112, "history_id": 1686742076839, "id": 1686742076839, - "date_created": { "type": 6, "value": 1686742076839 }, - "date_last_updated": { "type": 6, "value": 1686742076839 }, - "date_of_expiration": { "type": 6, "value": 1686742076839 }, + "date_created": { + "type": 6, + "value": 1686742076839 + }, + "date_last_updated": { + "type": 6, + "value": 1686742076839 + }, + "date_of_expiration": { + "type": 6, + "value": 1686742076839 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -62000,7 +79852,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831828859/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033ue031moohxhzyx4g1p", "revision_nr": 1, "created": 1697467103807, "modified": 1697467103807 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033ue031moohxhzyx4g1p", + "revision_nr": 1, + "created": 1697467103807, + "modified": 1697467103807 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831828859", @@ -62014,9 +79875,18 @@ "total_amount": 530, "history_id": 1686831828859, "id": 1686831828859, - "date_created": { "type": 6, "value": 1686831828859 }, - "date_last_updated": { "type": 6, "value": 1686831828859 }, - "date_of_expiration": { "type": 6, "value": 1689423828859 }, + "date_created": { + "type": 6, + "value": 1686831828859 + }, + "date_last_updated": { + "type": 6, + "value": 1686831828859 + }, + "date_of_expiration": { + "type": 6, + "value": 1689423828859 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -62041,7 +79911,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831937569/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033v5031poohxh2oj49r6", "revision_nr": 1, "created": 1697467103833, "modified": 1697467103833 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033v5031poohxh2oj49r6", + "revision_nr": 1, + "created": 1697467103833, + "modified": 1697467103833 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831937569", @@ -62055,15 +79934,30 @@ "total_amount": 530, "history_id": 1686831937569, "id": 1686831937569, - "date_created": { "type": 6, "value": 1686831937569 }, - "date_last_updated": { "type": 6, "value": 1686838238027 }, - "date_of_expiration": { "type": 6, "value": 1689423937569 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1686838238027 }, - "money_release_date": { "type": 6, "value": 1686838238027 }, + "date_created": { + "type": 6, + "value": 1686831937569 + }, + "date_last_updated": { + "type": 6, + "value": 1686838238027 + }, + "date_of_expiration": { + "type": 6, + "value": 1689423937569 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686838238027 + }, + "money_release_date": { + "type": 6, + "value": 1686838238027 + }, "money_release_status": "approved", "wasDebited": true }, @@ -62123,9 +80017,18 @@ "total_amount": 530, "id": 1686838699070, "contract_id": "1684182120706", - "date_created": { "type": 6, "value": 1686838699070 }, - "date_last_updated": { "type": 6, "value": 1686838699070 }, - "date_of_expiration": { "type": 6, "value": 1686838699070 }, + "date_created": { + "type": 6, + "value": 1686838699070 + }, + "date_last_updated": { + "type": 6, + "value": 1686838699070 + }, + "date_of_expiration": { + "type": 6, + "value": 1686838699070 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -62152,7 +80055,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838872989/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033wm031voohx3xyxeijv", "revision_nr": 1, "created": 1697467103888, "modified": 1697467103888 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033wm031voohx3xyxeijv", + "revision_nr": 1, + "created": 1697467103888, + "modified": 1697467103888 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838872989", @@ -62166,9 +80078,18 @@ "total_amount": 3897629, "history_id": 1686838872989, "id": 1686838872989, - "date_created": { "type": 6, "value": 1686838872989 }, - "date_last_updated": { "type": 6, "value": 1686838872989 }, - "date_of_expiration": { "type": 6, "value": 1686838872989 }, + "date_created": { + "type": 6, + "value": 1686838872989 + }, + "date_last_updated": { + "type": 6, + "value": 1686838872989 + }, + "date_of_expiration": { + "type": 6, + "value": 1686838872989 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -62226,9 +80147,18 @@ "original_amount": 3640129.08, "total_amount": 3640129.08, "id": 1688400243137, - "date_created": { "type": 6, "value": 1688400243137 }, - "date_last_updated": { "type": 6, "value": 1688400243137 }, - "date_of_expiration": { "type": 6, "value": 1688400243137 }, + "date_created": { + "type": 6, + "value": 1688400243137 + }, + "date_last_updated": { + "type": 6, + "value": 1688400243137 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400243137 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -62256,7 +80186,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688424411822/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033y10321oohxcal5el6t", "revision_nr": 1, "created": 1697467103939, "modified": 1697467103939 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033y10321oohxcal5el6t", + "revision_nr": 1, + "created": 1697467103939, + "modified": 1697467103939 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688424411822", @@ -62270,9 +80209,18 @@ "total_amount": 4926607, "history_id": 1688424411822, "id": 1688424411822, - "date_created": { "type": 6, "value": 1688424411822 }, - "date_last_updated": { "type": 6, "value": 1688424411822 }, - "date_of_expiration": { "type": 6, "value": 1688424411822 }, + "date_created": { + "type": 6, + "value": 1688424411822 + }, + "date_last_updated": { + "type": 6, + "value": 1688424411822 + }, + "date_of_expiration": { + "type": 6, + "value": 1688424411822 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -62297,7 +80245,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689020922030/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033yt0324oohx2lupf7g0", "revision_nr": 1, "created": 1697467103966, "modified": 1697467103966 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033yt0324oohx2lupf7g0", + "revision_nr": 1, + "created": 1697467103966, + "modified": 1697467103966 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689020922030", @@ -62311,15 +80268,30 @@ "total_amount": 1082278, "history_id": 1689020922030, "id": 1689020922030, - "date_created": { "type": 6, "value": 1689020922030 }, - "date_last_updated": { "type": 6, "value": 1689021819362 }, - "date_of_expiration": { "type": 6, "value": 1689020922030 }, + "date_created": { + "type": 6, + "value": 1689020922030 + }, + "date_last_updated": { + "type": 6, + "value": 1689021819362 + }, + "date_of_expiration": { + "type": 6, + "value": 1689020922030 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1689021819362 }, - "money_release_date": { "type": 6, "value": 1689021819362 }, + "date_approved": { + "type": 6, + "value": 1689021819362 + }, + "money_release_date": { + "type": 6, + "value": 1689021819362 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -62342,7 +80314,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689102393644/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033zi0327oohx15mr6xhj", "revision_nr": 1, "created": 1697467103991, "modified": 1697467103991 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033zi0327oohx15mr6xhj", + "revision_nr": 1, + "created": 1697467103991, + "modified": 1697467103991 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689102393644", @@ -62356,9 +80337,18 @@ "total_amount": 5031032, "history_id": 1689102393644, "id": 1689102393644, - "date_created": { "type": 6, "value": 1689102393644 }, - "date_last_updated": { "type": 6, "value": 1689102393644 }, - "date_of_expiration": { "type": 6, "value": 1689102393644 }, + "date_created": { + "type": 6, + "value": 1689102393644 + }, + "date_last_updated": { + "type": 6, + "value": 1689102393644 + }, + "date_of_expiration": { + "type": 6, + "value": 1689102393644 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -62383,7 +80373,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689189282410/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0340a032aoohx2tqthci1", "revision_nr": 1, "created": 1697467104018, "modified": 1697467104018 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0340a032aoohx2tqthci1", + "revision_nr": 1, + "created": 1697467104018, + "modified": 1697467104018 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689189282410", @@ -62397,9 +80396,18 @@ "total_amount": 5995148, "history_id": 1689189282410, "id": 1689189282410, - "date_created": { "type": 6, "value": 1689189282410 }, - "date_last_updated": { "type": 6, "value": 1689189282410 }, - "date_of_expiration": { "type": 6, "value": 1689189282410 }, + "date_created": { + "type": 6, + "value": 1689189282410 + }, + "date_last_updated": { + "type": 6, + "value": 1689189282410 + }, + "date_of_expiration": { + "type": 6, + "value": 1689189282410 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -62424,7 +80432,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689258056089/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03410032doohx3z8f1rh1", "revision_nr": 1, "created": 1697467104044, "modified": 1697467104044 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03410032doohx3z8f1rh1", + "revision_nr": 1, + "created": 1697467104044, + "modified": 1697467104044 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689258056089", @@ -62438,9 +80455,18 @@ "total_amount": 1000000, "history_id": 1689258056089, "id": 1689258056089, - "date_created": { "type": 6, "value": 1689258056089 }, - "date_last_updated": { "type": 6, "value": 1689258056089 }, - "date_of_expiration": { "type": 6, "value": 1689258056089 }, + "date_created": { + "type": 6, + "value": 1689258056089 + }, + "date_last_updated": { + "type": 6, + "value": 1689258056089 + }, + "date_of_expiration": { + "type": 6, + "value": 1689258056089 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -62465,7 +80491,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689390236969/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0341r032goohx4yn32f42", "revision_nr": 1, "created": 1697467104072, "modified": 1697467104072 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0341r032goohx4yn32f42", + "revision_nr": 1, + "created": 1697467104072, + "modified": 1697467104072 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689390236969", @@ -62479,9 +80514,18 @@ "total_amount": 530, "history_id": 1689390236969, "id": 1689390236969, - "date_created": { "type": 6, "value": 1689390236969 }, - "date_last_updated": { "type": 6, "value": 1689390236969 }, - "date_of_expiration": { "type": 6, "value": 1691982236969 }, + "date_created": { + "type": 6, + "value": 1689390236969 + }, + "date_last_updated": { + "type": 6, + "value": 1689390236969 + }, + "date_of_expiration": { + "type": 6, + "value": 1691982236969 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -62506,7 +80550,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689424277440/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0342h032joohx17gm1be6", "revision_nr": 1, "created": 1697467104098, "modified": 1697467104098 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0342h032joohx17gm1be6", + "revision_nr": 1, + "created": 1697467104098, + "modified": 1697467104098 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689424277440", @@ -62520,9 +80573,18 @@ "total_amount": 530, "history_id": 1689424277440, "id": 1689424277440, - "date_created": { "type": 6, "value": 1689424277440 }, - "date_last_updated": { "type": 6, "value": 1689424277440 }, - "date_of_expiration": { "type": 6, "value": 1692016277440 }, + "date_created": { + "type": 6, + "value": 1689424277440 + }, + "date_last_updated": { + "type": 6, + "value": 1689424277440 + }, + "date_of_expiration": { + "type": 6, + "value": 1692016277440 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -62547,7 +80609,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612021512/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03437032moohx48sr1jps", "revision_nr": 1, "created": 1697467104125, "modified": 1697467104125 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03437032moohx48sr1jps", + "revision_nr": 1, + "created": 1697467104125, + "modified": 1697467104125 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612021512", @@ -62561,15 +80632,30 @@ "total_amount": 530, "history_id": 1689612021512, "id": 1689612021512, - "date_created": { "type": 6, "value": 1689612021512 }, - "date_last_updated": { "type": 6, "value": 1690308352467 }, - "date_of_expiration": { "type": 6, "value": 1692204021512 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1690308352467 }, - "money_release_date": { "type": 6, "value": 1690308352467 }, + "date_created": { + "type": 6, + "value": 1689612021512 + }, + "date_last_updated": { + "type": 6, + "value": 1690308352467 + }, + "date_of_expiration": { + "type": 6, + "value": 1692204021512 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1690308352467 + }, + "money_release_date": { + "type": 6, + "value": 1690308352467 + }, "money_release_status": "approved", "wasDebited": true }, @@ -62592,7 +80678,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612840534/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03440032poohx855i1zz0", "revision_nr": 1, "created": 1697467104152, "modified": 1697467104152 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03440032poohx855i1zz0", + "revision_nr": 1, + "created": 1697467104152, + "modified": 1697467104152 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612840534", @@ -62606,9 +80701,18 @@ "total_amount": 2000000, "history_id": 1689612840534, "id": 1689612840534, - "date_created": { "type": 6, "value": 1689612840534 }, - "date_last_updated": { "type": 6, "value": 1689612840534 }, - "date_of_expiration": { "type": 6, "value": 1689612840534 }, + "date_created": { + "type": 6, + "value": 1689612840534 + }, + "date_last_updated": { + "type": 6, + "value": 1689612840534 + }, + "date_of_expiration": { + "type": 6, + "value": 1689612840534 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -62670,9 +80774,18 @@ "total_amount": 530, "id": 1690326796884, "contract_id": "1684182120706", - "date_created": { "type": 6, "value": 1690326796884 }, - "date_last_updated": { "type": 6, "value": 1690326796884 }, - "date_of_expiration": { "type": 6, "value": 1690326796884 }, + "date_created": { + "type": 6, + "value": 1690326796884 + }, + "date_last_updated": { + "type": 6, + "value": 1690326796884 + }, + "date_of_expiration": { + "type": 6, + "value": 1690326796884 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -62741,16 +80854,28 @@ "total_amount": 6990049, "id": 1690327152842, "history_id": 1690327152842, - "date_created": { "type": 6, "value": 1690327152842 }, - "date_last_updated": { "type": 6, "value": 1690392853723 }, - "date_of_expiration": { "type": 6, "value": 1690327152842 }, + "date_created": { + "type": 6, + "value": 1690327152842 + }, + "date_last_updated": { + "type": 6, + "value": 1690392853723 + }, + "date_of_expiration": { + "type": 6, + "value": 1690327152842 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_amount", - "money_release_date": { "type": 6, "value": 1690392853723 }, + "money_release_date": { + "type": 6, + "value": 1690392853723 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -62815,17 +80940,32 @@ "total_amount": 3280090, "id": 1690371637044, "history_id": 1690371637044, - "date_created": { "type": 6, "value": 1690371637044 }, - "date_last_updated": { "type": 6, "value": 1690392785648 }, - "date_of_expiration": { "type": 6, "value": 1690371637044 }, + "date_created": { + "type": 6, + "value": 1690371637044 + }, + "date_last_updated": { + "type": 6, + "value": 1690392785648 + }, + "date_of_expiration": { + "type": 6, + "value": 1690371637044 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1690392785648 }, - "money_release_date": { "type": 6, "value": 1690392785648 }, + "date_approved": { + "type": 6, + "value": 1690392785648 + }, + "money_release_date": { + "type": 6, + "value": 1690392785648 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -62890,9 +81030,18 @@ "total_amount": 3678031, "id": "1694007742356", "history_id": "1694007742356", - "date_created": { "type": 6, "value": 1694007742356 }, - "date_last_updated": { "type": 6, "value": 1694007742356 }, - "date_of_expiration": { "type": 6, "value": 1696599742356 }, + "date_created": { + "type": 6, + "value": 1694007742356 + }, + "date_last_updated": { + "type": 6, + "value": 1694007742356 + }, + "date_of_expiration": { + "type": 6, + "value": 1696599742356 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -62962,9 +81111,18 @@ "total_amount": 3751591.62, "id": "1696599770690", "history_id": "1696599770690", - "date_created": { "type": 6, "value": 1696599770690 }, - "date_last_updated": { "type": 6, "value": 1696599770690 }, - "date_of_expiration": { "type": 6, "value": 1696599770690 }, + "date_created": { + "type": 6, + "value": 1696599770690 + }, + "date_last_updated": { + "type": 6, + "value": 1696599770690 + }, + "date_of_expiration": { + "type": 6, + "value": 1696599770690 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63034,9 +81192,18 @@ "total_amount": 3783519, "id": "1696599812843", "history_id": "1696599812843", - "date_created": { "type": 6, "value": 1696599812843 }, - "date_last_updated": { "type": 6, "value": 1696599812843 }, - "date_of_expiration": { "type": 6, "value": 1699278212817 }, + "date_created": { + "type": 6, + "value": 1696599812843 + }, + "date_last_updated": { + "type": 6, + "value": 1696599812843 + }, + "date_of_expiration": { + "type": 6, + "value": 1699278212817 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63052,7 +81219,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history", - "content": { "type": 1, "value": {}, "revision": "lnt033kp030goohx89sk89ga", "revision_nr": 1, "created": 1697467104375, "modified": 1697467104375 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt033kp030goohx89sk89ga", + "revision_nr": 1, + "created": 1697467104375, + "modified": 1697467104375 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706/description", @@ -63069,7 +81243,11 @@ "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 6.00%", "amount": 60 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 6.00%", + "amount": 60 + }, "revision": "lnt034an033joohxb0md9n7p", "revision_nr": 1, "created": 1697467104392, @@ -63078,7 +81256,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706/costs", - "content": { "type": 2, "value": {}, "revision": "lnt034an033ioohx994ah7tt", "revision_nr": 1, "created": 1697467104401, "modified": 1697467104401 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt034an033ioohx994ah7tt", + "revision_nr": 1, + "created": 1697467104401, + "modified": 1697467104401 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706", @@ -63091,7 +81276,10 @@ "total_amount": 1060, "installments": 2, "installment_amount": 530, - "date_created": { "type": 6, "value": 1684182120706 }, + "date_created": { + "type": 6, + "value": 1684182120706 + }, "history_id": 1684182120706, "currency_id": "BRL", "status": "paid" @@ -63104,7 +81292,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt034af033foohx6eo73oyw", "revision_nr": 1, "created": 1697467104417, "modified": 1697467104417 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt034af033foohx6eo73oyw", + "revision_nr": 1, + "created": 1697467104417, + "modified": 1697467104417 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706/description", @@ -63121,7 +81316,11 @@ "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 6.00%", "amount": 60 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 6.00%", + "amount": 60 + }, "revision": "lnt034bu033ooohxewbe34ea", "revision_nr": 1, "created": 1697467104434, @@ -63130,7 +81329,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706/costs", - "content": { "type": 2, "value": {}, "revision": "lnt034bu033noohx9v35fa4u", "revision_nr": 1, "created": 1697467104444, "modified": 1697467104444 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt034bu033noohx9v35fa4u", + "revision_nr": 1, + "created": 1697467104444, + "modified": 1697467104444 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706", @@ -63143,7 +81349,10 @@ "total_amount": 1060, "installments": 2, "installment_amount": 530, - "date_created": { "type": 6, "value": 1684182120706 }, + "date_created": { + "type": 6, + "value": 1684182120706 + }, "history_id": 1684182120706, "currency_id": "BRL", "status": "paid" @@ -63156,17 +81365,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt034bl033koohx6s70e8bh", "revision_nr": 1, "created": 1697467104462, "modified": 1697467104462 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt034bl033koohx6s70e8bh", + "revision_nr": 1, + "created": 1697467104462, + "modified": 1697467104462 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt034af033eoohxhh55fyxk", "revision_nr": 1, "created": 1697467104470, "modified": 1697467104470 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt034af033eoohxhh55fyxk", + "revision_nr": 1, + "created": 1697467104470, + "modified": 1697467104470 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit", "content": { "type": 1, - "value": { "approvedLimit": 1000, "limitUsed": 0, "analysisRequested": { "type": 6, "value": 1683344368087 }, "lastReview": { "type": 6, "value": 1683344393183 } }, + "value": { + "approvedLimit": 1000, + "limitUsed": 0, + "analysisRequested": { + "type": 6, + "value": 1683344368087 + }, + "lastReview": { + "type": 6, + "value": 1683344393183 + } + }, "revision": "lnt034af033doohx2nyvboob", "revision_nr": 1, "created": 1697467104478, @@ -63177,7 +81411,16 @@ "path": "ivipcoin-db::__movement_wallet__/117718803693710020", "content": { "type": 1, - "value": { "dataModificacao": 1677877676290, "dateValidity": 1678707203279, "totalValue": 2242.137, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697338800000 } }, + "value": { + "dataModificacao": 1677877676290, + "dateValidity": 1678707203279, + "totalValue": 2242.137, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } + }, "revision": "lnt033k7030doohxhtz67mvp", "revision_nr": 1, "created": 1697467104487, @@ -63188,7 +81431,11 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260/balances/BRL", "content": { "type": 1, - "value": { "available": "5.00000000", "symbol": "BRL", "value": 0.98 }, + "value": { + "available": "5.00000000", + "symbol": "BRL", + "value": 0.98 + }, "revision": "lnt034dj033roohx2u75dtib", "revision_nr": 1, "created": 1697467104495, @@ -63199,7 +81446,11 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260/balances/IVIP", "content": { "type": 1, - "value": { "available": "0.20000000", "symbol": "IVIP", "value": 0.000021 }, + "value": { + "available": "0.20000000", + "symbol": "IVIP", + "value": 0.000021 + }, "revision": "lnt034dr033soohx3ytg6qbv", "revision_nr": 1, "created": 1697467104504, @@ -63208,7 +81459,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/balances", - "content": { "type": 1, "value": {}, "revision": "lnt034dj033qoohx10h978a3", "revision_nr": 1, "created": 1697467104513, "modified": 1697467104513 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt034dj033qoohx10h978a3", + "revision_nr": 1, + "created": 1697467104513, + "modified": 1697467104513 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684492352568/description", @@ -63223,7 +81481,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684492352568/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt034ej033woohxh5a4gxh5", "revision_nr": 1, "created": 1697467104531, "modified": 1697467104531 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt034ej033woohxh5a4gxh5", + "revision_nr": 1, + "created": 1697467104531, + "modified": 1697467104531 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684492352568", @@ -63237,15 +81504,30 @@ "total_amount": 200, "history_id": 1684492352568, "id": 1684492352568, - "date_created": { "type": 6, "value": 1684492352568 }, - "date_last_updated": { "type": 6, "value": 1684492507764 }, - "date_of_expiration": { "type": 6, "value": 1687084352568 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684492507764 }, - "money_release_date": { "type": 6, "value": 1684492507764 }, + "date_created": { + "type": 6, + "value": 1684492352568 + }, + "date_last_updated": { + "type": 6, + "value": 1684492507764 + }, + "date_of_expiration": { + "type": 6, + "value": 1687084352568 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684492507764 + }, + "money_release_date": { + "type": 6, + "value": 1684492507764 + }, "money_release_status": "approved", "wasDebited": true }, @@ -63291,9 +81573,18 @@ "original_amount": 974146, "total_amount": 974146, "id": 1684624220546, - "date_created": { "type": 6, "value": 1684624220546 }, - "date_last_updated": { "type": 6, "value": 1684624220546 }, - "date_of_expiration": { "type": 6, "value": 1684624220546 }, + "date_created": { + "type": 6, + "value": 1684624220546 + }, + "date_last_updated": { + "type": 6, + "value": 1684624220546 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624220546 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63323,7 +81614,11 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt034fs0343oohx8yfj46my", "revision_nr": 1, "created": 1697467104577, @@ -63332,11 +81627,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt034fs0342oohx6kje1q76", "revision_nr": 1, "created": 1697467104585, "modified": 1697467104585 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt034fs0342oohx6kje1q76", + "revision_nr": 1, + "created": 1697467104585, + "modified": 1697467104585 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623/details", - "content": { "type": 1, "value": {}, "revision": "lnt034fs0341oohxbav7eh3w", "revision_nr": 1, "created": 1697467104593, "modified": 1697467104593 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt034fs0341oohxbav7eh3w", + "revision_nr": 1, + "created": 1697467104593, + "modified": 1697467104593 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623", @@ -63350,9 +81659,18 @@ "total_amount": 1100, "history_id": 1684625319623, "id": 1684625319623, - "date_created": { "type": 6, "value": 1684625319623 }, - "date_last_updated": { "type": 6, "value": 1684625319623 }, - "date_of_expiration": { "type": 6, "value": 1687217319623 }, + "date_created": { + "type": 6, + "value": 1684625319623 + }, + "date_last_updated": { + "type": 6, + "value": 1684625319623 + }, + "date_of_expiration": { + "type": 6, + "value": 1687217319623 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -63401,9 +81719,18 @@ "original_amount": 4870731, "total_amount": 4870731, "id": 1684625351966, - "date_created": { "type": 6, "value": 1684625351966 }, - "date_last_updated": { "type": 6, "value": 1684625351966 }, - "date_of_expiration": { "type": 6, "value": 1684625351966 }, + "date_created": { + "type": 6, + "value": 1684625351966 + }, + "date_last_updated": { + "type": 6, + "value": 1684625351966 + }, + "date_of_expiration": { + "type": 6, + "value": 1684625351966 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63431,7 +81758,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685027205516/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt034hh0348oohxa70wc9o5", "revision_nr": 1, "created": 1697467104638, "modified": 1697467104638 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt034hh0348oohxa70wc9o5", + "revision_nr": 1, + "created": 1697467104638, + "modified": 1697467104638 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685027205516", @@ -63445,15 +81781,30 @@ "total_amount": 400, "history_id": 1685027205516, "id": 1685027205516, - "date_created": { "type": 6, "value": 1685027205516 }, - "date_last_updated": { "type": 6, "value": 1685312683393 }, - "date_of_expiration": { "type": 6, "value": 1687619205516 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685312683393 }, - "money_release_date": { "type": 6, "value": 1685312683393 }, + "date_created": { + "type": 6, + "value": 1685027205516 + }, + "date_last_updated": { + "type": 6, + "value": 1685312683393 + }, + "date_of_expiration": { + "type": 6, + "value": 1687619205516 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685312683393 + }, + "money_release_date": { + "type": 6, + "value": 1685312683393 + }, "money_release_status": "approved", "wasDebited": true }, @@ -63510,9 +81861,18 @@ "original_amount": 10000000, "total_amount": 10000000, "id": 1685234226998, - "date_created": { "type": 6, "value": 1685234226998 }, - "date_last_updated": { "type": 6, "value": 1685234226998 }, - "date_of_expiration": { "type": 6, "value": 1685234226998 }, + "date_created": { + "type": 6, + "value": 1685234226998 + }, + "date_last_updated": { + "type": 6, + "value": 1685234226998 + }, + "date_of_expiration": { + "type": 6, + "value": 1685234226998 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -63573,9 +81933,18 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1685456788341, - "date_created": { "type": 6, "value": 1685456788341 }, - "date_last_updated": { "type": 6, "value": 1685456788341 }, - "date_of_expiration": { "type": 6, "value": 1685456788341 }, + "date_created": { + "type": 6, + "value": 1685456788341 + }, + "date_last_updated": { + "type": 6, + "value": 1685456788341 + }, + "date_of_expiration": { + "type": 6, + "value": 1685456788341 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -63635,9 +82004,18 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1685665895143, - "date_created": { "type": 6, "value": 1685665895143 }, - "date_last_updated": { "type": 6, "value": 1685665895143 }, - "date_of_expiration": { "type": 6, "value": 1748824295143 }, + "date_created": { + "type": 6, + "value": 1685665895143 + }, + "date_last_updated": { + "type": 6, + "value": 1685665895143 + }, + "date_of_expiration": { + "type": 6, + "value": 1748824295143 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63697,9 +82075,18 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1685665913616, - "date_created": { "type": 6, "value": 1685665913616 }, - "date_last_updated": { "type": 6, "value": 1685665913616 }, - "date_of_expiration": { "type": 6, "value": 1717288313616 }, + "date_created": { + "type": 6, + "value": 1685665913616 + }, + "date_last_updated": { + "type": 6, + "value": 1685665913616 + }, + "date_of_expiration": { + "type": 6, + "value": 1717288313616 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63759,9 +82146,18 @@ "original_amount": 1844877, "total_amount": 1844877, "id": 1685665938582, - "date_created": { "type": 6, "value": 1685665938582 }, - "date_last_updated": { "type": 6, "value": 1685665938582 }, - "date_of_expiration": { "type": 6, "value": 1701477138582 }, + "date_created": { + "type": 6, + "value": 1685665938582 + }, + "date_last_updated": { + "type": 6, + "value": 1685665938582 + }, + "date_of_expiration": { + "type": 6, + "value": 1701477138582 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63822,9 +82218,18 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1685665980650, - "date_created": { "type": 6, "value": 1685665980650 }, - "date_last_updated": { "type": 6, "value": 1685665980650 }, - "date_of_expiration": { "type": 6, "value": 1688257980650 }, + "date_created": { + "type": 6, + "value": 1685665980650 + }, + "date_last_updated": { + "type": 6, + "value": 1685665980650 + }, + "date_of_expiration": { + "type": 6, + "value": 1688257980650 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63874,9 +82279,18 @@ "original_amount": 1403508, "total_amount": 1403508, "id": 1685743358755, - "date_created": { "type": 6, "value": 1685743358755 }, - "date_last_updated": { "type": 6, "value": 1685743358755 }, - "date_of_expiration": { "type": 6, "value": 1685743358755 }, + "date_created": { + "type": 6, + "value": 1685743358755 + }, + "date_last_updated": { + "type": 6, + "value": 1685743358755 + }, + "date_of_expiration": { + "type": 6, + "value": 1685743358755 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63904,7 +82318,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686581106502/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt034na034voohx43iga5av", "revision_nr": 1, "created": 1697467104847, "modified": 1697467104847 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt034na034voohx43iga5av", + "revision_nr": 1, + "created": 1697467104847, + "modified": 1697467104847 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686581106502", @@ -63918,15 +82341,30 @@ "total_amount": 250, "history_id": 1686581106502, "id": 1686581106502, - "date_created": { "type": 6, "value": 1686581106502 }, - "date_last_updated": { "type": 6, "value": 1686583207910 }, - "date_of_expiration": { "type": 6, "value": 1689173106502 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1686583207910 }, - "money_release_date": { "type": 6, "value": 1686583207910 }, + "date_created": { + "type": 6, + "value": 1686581106502 + }, + "date_last_updated": { + "type": 6, + "value": 1686583207910 + }, + "date_of_expiration": { + "type": 6, + "value": 1689173106502 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686583207910 + }, + "money_release_date": { + "type": 6, + "value": 1686583207910 + }, "money_release_status": "approved", "wasDebited": true }, @@ -63986,9 +82424,18 @@ "total_amount": 220, "id": 1686597954870, "contract_id": "1684625319623", - "date_created": { "type": 6, "value": 1686597954870 }, - "date_last_updated": { "type": 6, "value": 1686597954870 }, - "date_of_expiration": { "type": 6, "value": 1686597954870 }, + "date_created": { + "type": 6, + "value": 1686597954870 + }, + "date_last_updated": { + "type": 6, + "value": 1686597954870 + }, + "date_of_expiration": { + "type": 6, + "value": 1686597954870 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -64048,9 +82495,18 @@ "original_amount": 2000000, "total_amount": 2000000, "id": 1687313544975, - "date_created": { "type": 6, "value": 1687313544975 }, - "date_last_updated": { "type": 6, "value": 1687313544975 }, - "date_of_expiration": { "type": 6, "value": 1718935944975 }, + "date_created": { + "type": 6, + "value": 1687313544975 + }, + "date_last_updated": { + "type": 6, + "value": 1687313544975 + }, + "date_of_expiration": { + "type": 6, + "value": 1718935944975 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -64110,9 +82566,18 @@ "original_amount": 1020000, "total_amount": 1020000, "id": 1688400283150, - "date_created": { "type": 6, "value": 1688400283150 }, - "date_last_updated": { "type": 6, "value": 1688400283150 }, - "date_of_expiration": { "type": 6, "value": 1688400283150 }, + "date_created": { + "type": 6, + "value": 1688400283150 + }, + "date_last_updated": { + "type": 6, + "value": 1688400283150 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400283150 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -64173,9 +82638,18 @@ "original_amount": 3268385, "total_amount": 3268385, "id": 1688400827775, - "date_created": { "type": 6, "value": 1688400827775 }, - "date_last_updated": { "type": 6, "value": 1688400827775 }, - "date_of_expiration": { "type": 6, "value": 1691079227775 }, + "date_created": { + "type": 6, + "value": 1688400827775 + }, + "date_last_updated": { + "type": 6, + "value": 1688400827775 + }, + "date_of_expiration": { + "type": 6, + "value": 1691079227775 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -64202,7 +82676,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689085555442/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt034r2035aoohxfsrge6um", "revision_nr": 1, "created": 1697467104982, "modified": 1697467104982 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt034r2035aoohxfsrge6um", + "revision_nr": 1, + "created": 1697467104982, + "modified": 1697467104982 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689085555442", @@ -64216,15 +82699,30 @@ "total_amount": 200, "history_id": 1689085555442, "id": 1689085555442, - "date_created": { "type": 6, "value": 1689085555442 }, - "date_last_updated": { "type": 6, "value": 1689168403996 }, - "date_of_expiration": { "type": 6, "value": 1691677555442 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689168403996 }, - "money_release_date": { "type": 6, "value": 1689168403996 }, + "date_created": { + "type": 6, + "value": 1689085555442 + }, + "date_last_updated": { + "type": 6, + "value": 1689168403996 + }, + "date_of_expiration": { + "type": 6, + "value": 1691677555442 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689168403996 + }, + "money_release_date": { + "type": 6, + "value": 1689168403996 + }, "money_release_status": "approved", "wasDebited": true }, @@ -64284,9 +82782,18 @@ "total_amount": 220, "id": 1689168458989, "contract_id": "1684625319623", - "date_created": { "type": 6, "value": 1689168458989 }, - "date_last_updated": { "type": 6, "value": 1689168458989 }, - "date_of_expiration": { "type": 6, "value": 1689168458989 }, + "date_created": { + "type": 6, + "value": 1689168458989 + }, + "date_last_updated": { + "type": 6, + "value": 1689168458989 + }, + "date_of_expiration": { + "type": 6, + "value": 1689168458989 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -64346,9 +82853,18 @@ "original_amount": 3333752.7, "total_amount": 3333752.7, "id": 1691079300942, - "date_created": { "type": 6, "value": 1691079300942 }, - "date_last_updated": { "type": 6, "value": 1691079300942 }, - "date_of_expiration": { "type": 6, "value": 1691079300942 }, + "date_created": { + "type": 6, + "value": 1691079300942 + }, + "date_last_updated": { + "type": 6, + "value": 1691079300942 + }, + "date_of_expiration": { + "type": 6, + "value": 1691079300942 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -64418,9 +82934,18 @@ "total_amount": 1488875, "id": 1691084485881, "history_id": 1691084485881, - "date_created": { "type": 6, "value": 1691084485881 }, - "date_last_updated": { "type": 6, "value": 1691084485881 }, - "date_of_expiration": { "type": 6, "value": 1693762885881 }, + "date_created": { + "type": 6, + "value": 1691084485881 + }, + "date_last_updated": { + "type": 6, + "value": 1691084485881 + }, + "date_of_expiration": { + "type": 6, + "value": 1693762885881 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -64438,7 +82963,13 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694610080318 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694610080318 + } + }, "revision": "lnt034v9035moohx36l9hoiw", "revision_nr": 1, "created": 1697467105139, @@ -64500,16 +83031,28 @@ "total_amount": 250, "id": 1692018080319, "history_id": 1692018080319, - "date_created": { "type": 6, "value": 1692018080319 }, - "date_last_updated": { "type": 6, "value": 1692020547554 }, + "date_created": { + "type": 6, + "value": 1692018080319 + }, + "date_last_updated": { + "type": 6, + "value": 1692020547554 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1692020547554 }, - "money_release_date": { "type": 6, "value": 1692020547554 }, + "date_approved": { + "type": 6, + "value": 1692020547554 + }, + "money_release_date": { + "type": 6, + "value": 1692020547554 + }, "money_release_status": "approved", "wasDebited": true }, @@ -64569,9 +83112,18 @@ "total_amount": 220, "id": 1692288719964, "contract_id": "1684625319623", - "date_created": { "type": 6, "value": 1692288719964 }, - "date_last_updated": { "type": 6, "value": 1692288719964 }, - "date_of_expiration": { "type": 6, "value": 1692288719964 }, + "date_created": { + "type": 6, + "value": 1692288719964 + }, + "date_last_updated": { + "type": 6, + "value": 1692288719964 + }, + "date_of_expiration": { + "type": 6, + "value": 1692288719964 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -64640,9 +83192,18 @@ "total_amount": 1518652.5, "id": "1693763097865", "history_id": "1693763097865", - "date_created": { "type": 6, "value": 1693763097865 }, - "date_last_updated": { "type": 6, "value": 1693763097865 }, - "date_of_expiration": { "type": 6, "value": 1693763097865 }, + "date_created": { + "type": 6, + "value": 1693763097865 + }, + "date_last_updated": { + "type": 6, + "value": 1693763097865 + }, + "date_of_expiration": { + "type": 6, + "value": 1693763097865 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -64711,16 +83272,28 @@ "total_amount": 1487490, "id": "1693915531936", "history_id": "1693915531936", - "date_created": { "type": 6, "value": 1693915531936 }, - "date_last_updated": { "type": 6, "value": 1696424640989 }, - "date_of_expiration": { "type": 6, "value": 1696507531936 }, + "date_created": { + "type": 6, + "value": 1693915531936 + }, + "date_last_updated": { + "type": 6, + "value": 1696424640989 + }, + "date_of_expiration": { + "type": 6, + "value": 1696507531936 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": { "type": 6, "value": 1696424640989 }, + "money_release_date": { + "type": 6, + "value": 1696424640989 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -64734,7 +83307,13 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1696598496774 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1696598496774 + } + }, "revision": "lnt034zk0362oohxh70ffdg4", "revision_nr": 1, "created": 1697467105289, @@ -64796,16 +83375,28 @@ "total_amount": 220, "id": "1694006496775", "history_id": "1694006496775", - "date_created": { "type": 6, "value": 1694006496775 }, - "date_last_updated": { "type": 6, "value": 1694007160077 }, + "date_created": { + "type": 6, + "value": 1694006496775 + }, + "date_last_updated": { + "type": 6, + "value": 1694007160077 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694007160077 }, - "money_release_date": { "type": 6, "value": 1694007160077 }, + "date_approved": { + "type": 6, + "value": 1694007160077 + }, + "money_release_date": { + "type": 6, + "value": 1694007160077 + }, "money_release_status": "approved", "wasDebited": true }, @@ -64872,9 +83463,18 @@ "total_amount": 220, "id": "1694572285717", "history_id": "1694572285717", - "date_created": { "type": 6, "value": 1694572285717 }, - "date_last_updated": { "type": 6, "value": 1694572285717 }, - "date_of_expiration": { "type": 6, "value": 1694572285717 }, + "date_created": { + "type": 6, + "value": 1694572285717 + }, + "date_last_updated": { + "type": 6, + "value": 1694572285717 + }, + "date_of_expiration": { + "type": 6, + "value": 1694572285717 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -64944,9 +83544,18 @@ "total_amount": 40, "id": "1696081581090", "history_id": "1696081581090", - "date_created": { "type": 6, "value": 1696081581090 }, - "date_last_updated": { "type": 6, "value": 1696081581090 }, - "date_of_expiration": { "type": 6, "value": 1722347181089 }, + "date_created": { + "type": 6, + "value": 1696081581090 + }, + "date_last_updated": { + "type": 6, + "value": 1696081581090 + }, + "date_of_expiration": { + "type": 6, + "value": 1722347181089 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -64964,7 +83573,13 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698673702609 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698673702609 + } + }, "revision": "lnt0352w036foohxhdmc3py1", "revision_nr": 1, "created": 1697467105409, @@ -65027,16 +83642,28 @@ "total_amount": 225, "id": "1696081702609", "history_id": "1696081702609", - "date_created": { "type": 6, "value": 1696081702609 }, - "date_last_updated": { "type": 6, "value": 1696085552609 }, + "date_created": { + "type": 6, + "value": 1696081702609 + }, + "date_last_updated": { + "type": 6, + "value": 1696085552609 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1696085552609 }, - "money_release_date": { "type": 6, "value": 1696085552609 }, + "date_approved": { + "type": 6, + "value": 1696085552609 + }, + "money_release_date": { + "type": 6, + "value": 1696085552609 + }, "money_release_status": "approved", "wasDebited": true }, @@ -65104,9 +83731,18 @@ "total_amount": 220, "id": "1696085699487", "history_id": "1696085699487", - "date_created": { "type": 6, "value": 1696085699487 }, - "date_last_updated": { "type": 6, "value": 1696085699487 }, - "date_of_expiration": { "type": 6, "value": 1696085699487 }, + "date_created": { + "type": 6, + "value": 1696085699487 + }, + "date_last_updated": { + "type": 6, + "value": 1696085699487 + }, + "date_of_expiration": { + "type": 6, + "value": 1696085699487 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -65176,9 +83812,18 @@ "total_amount": 31163, "id": "1696349167615", "history_id": "1696349167615", - "date_created": { "type": 6, "value": 1696349167615 }, - "date_last_updated": { "type": 6, "value": 1696349167615 }, - "date_of_expiration": { "type": 6, "value": 1759507567614 }, + "date_created": { + "type": 6, + "value": 1696349167615 + }, + "date_last_updated": { + "type": 6, + "value": 1696349167615 + }, + "date_of_expiration": { + "type": 6, + "value": 1759507567614 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -65248,9 +83893,18 @@ "total_amount": 1487490, "id": "1696462181596", "history_id": "1696462181596", - "date_created": { "type": 6, "value": 1696462181596 }, - "date_last_updated": { "type": 6, "value": 1696462181596 }, - "date_of_expiration": { "type": 6, "value": 1699140581513 }, + "date_created": { + "type": 6, + "value": 1696462181596 + }, + "date_last_updated": { + "type": 6, + "value": 1696462181596 + }, + "date_of_expiration": { + "type": 6, + "value": 1699140581513 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -65266,7 +83920,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history", - "content": { "type": 1, "value": {}, "revision": "lnt034e9033toohx15f273lb", "revision_nr": 1, "created": 1697467105563, "modified": 1697467105563 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt034e9033toohx15f273lb", + "revision_nr": 1, + "created": 1697467105563, + "modified": 1697467105563 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623/description", @@ -65283,7 +83944,11 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt0357q0371oohx7unhgrh2", "revision_nr": 1, "created": 1697467105582, @@ -65292,7 +83957,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0357q0370oohx28ke82p5", "revision_nr": 1, "created": 1697467105591, "modified": 1697467105591 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0357q0370oohx28ke82p5", + "revision_nr": 1, + "created": 1697467105591, + "modified": 1697467105591 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623", @@ -65305,7 +83977,10 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1684625319623 }, + "date_created": { + "type": 6, + "value": 1684625319623 + }, "history_id": 1684625319623, "currency_id": "BRL", "status": "paid" @@ -65318,7 +83993,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt0357f036xoohxaopz611g", "revision_nr": 1, "created": 1697467105608, "modified": 1697467105608 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0357f036xoohxaopz611g", + "revision_nr": 1, + "created": 1697467105608, + "modified": 1697467105608 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623/description", @@ -65335,7 +84017,11 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt0358y0376oohxaabh3chz", "revision_nr": 1, "created": 1697467105628, @@ -65344,7 +84030,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0358x0375oohxdh7mawsq", "revision_nr": 1, "created": 1697467105636, "modified": 1697467105636 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0358x0375oohxdh7mawsq", + "revision_nr": 1, + "created": 1697467105636, + "modified": 1697467105636 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623", @@ -65357,7 +84050,10 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1684625319623 }, + "date_created": { + "type": 6, + "value": 1684625319623 + }, "history_id": 1684625319623, "currency_id": "BRL", "status": "paid" @@ -65370,7 +84066,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt0358o0372oohxe298a4ga", "revision_nr": 1, "created": 1697467105654, "modified": 1697467105654 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0358o0372oohxe298a4ga", + "revision_nr": 1, + "created": 1697467105654, + "modified": 1697467105654 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623/description", @@ -65387,7 +84090,11 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt035a7037boohxfzfae6d8", "revision_nr": 1, "created": 1697467105671, @@ -65396,7 +84103,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623/costs", - "content": { "type": 2, "value": {}, "revision": "lnt035a7037aoohxhe79ho2w", "revision_nr": 1, "created": 1697467105679, "modified": 1697467105679 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt035a7037aoohxhe79ho2w", + "revision_nr": 1, + "created": 1697467105679, + "modified": 1697467105679 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623", @@ -65409,7 +84123,10 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1684625319623 }, + "date_created": { + "type": 6, + "value": 1684625319623 + }, "history_id": 1684625319623, "currency_id": "BRL", "status": "paid" @@ -65422,7 +84139,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308", - "content": { "type": 1, "value": {}, "revision": "lnt0359y0377oohxbvee0vio", "revision_nr": 1, "created": 1697467105698, "modified": 1697467105698 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0359y0377oohxbvee0vio", + "revision_nr": 1, + "created": 1697467105698, + "modified": 1697467105698 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623/description", @@ -65439,7 +84163,11 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt035bg037goohx1ox145tf", "revision_nr": 1, "created": 1697467105717, @@ -65448,7 +84176,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623/costs", - "content": { "type": 2, "value": {}, "revision": "lnt035bg037foohx16ydc6fx", "revision_nr": 1, "created": 1697467105725, "modified": 1697467105725 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt035bg037foohx16ydc6fx", + "revision_nr": 1, + "created": 1697467105725, + "modified": 1697467105725 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623", @@ -65461,11 +84196,17 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1684625319623 }, + "date_created": { + "type": 6, + "value": 1684625319623 + }, "history_id": 1684625319623, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1694572285736 } + "date_last_updated": { + "type": 6, + "value": 1694572285736 + } }, "revision": "lnt035b6037doohx5op6eluw", "revision_nr": 1, @@ -65475,7 +84216,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309", - "content": { "type": 1, "value": {}, "revision": "lnt035b6037coohx3ujlgpc6", "revision_nr": 1, "created": 1697467105743, "modified": 1697467105743 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt035b6037coohx3ujlgpc6", + "revision_nr": 1, + "created": 1697467105743, + "modified": 1697467105743 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623/description", @@ -65492,7 +84240,11 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt035co037loohxg61hdfww", "revision_nr": 1, "created": 1697467105762, @@ -65501,7 +84253,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623/costs", - "content": { "type": 2, "value": {}, "revision": "lnt035co037koohx3pztfk4e", "revision_nr": 1, "created": 1697467105772, "modified": 1697467105772 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt035co037koohx3pztfk4e", + "revision_nr": 1, + "created": 1697467105772, + "modified": 1697467105772 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623", @@ -65514,11 +84273,17 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1684625319623 }, + "date_created": { + "type": 6, + "value": 1684625319623 + }, "history_id": 1684625319623, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1696085699499 } + "date_last_updated": { + "type": 6, + "value": 1696085699499 + } }, "revision": "lnt035cf037ioohx85oi0xny", "revision_nr": 1, @@ -65528,17 +84293,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310", - "content": { "type": 1, "value": {}, "revision": "lnt035cf037hoohx85xm83ml", "revision_nr": 1, "created": 1697467105790, "modified": 1697467105790 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt035cf037hoohx85xm83ml", + "revision_nr": 1, + "created": 1697467105790, + "modified": 1697467105790 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt0357f036woohx6m75fc66", "revision_nr": 1, "created": 1697467105798, "modified": 1697467105798 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0357f036woohx6m75fc66", + "revision_nr": 1, + "created": 1697467105798, + "modified": 1697467105798 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit", "content": { "type": 1, - "value": { "approvedLimit": 1000, "limitUsed": 400, "analysisRequested": { "type": 6, "value": 1684618378558 }, "lastReview": { "type": 6, "value": 1684618429410 } }, + "value": { + "approvedLimit": 1000, + "limitUsed": 400, + "analysisRequested": { + "type": 6, + "value": 1684618378558 + }, + "lastReview": { + "type": 6, + "value": 1684618429410 + } + }, "revision": "lnt0357f036voohxh5l9gdvs", "revision_nr": 1, "created": 1697467105809, @@ -65549,7 +84339,16 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260", "content": { "type": 1, - "value": { "dataModificacao": 1684492261254, "dateValidity": 1684492261254, "totalValue": 1371.271, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697338800000 } }, + "value": { + "dataModificacao": 1684492261254, + "dateValidity": 1684492261254, + "totalValue": 1371.271, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } + }, "revision": "lnt034dj033poohxb7f3bbhh", "revision_nr": 1, "created": 1697467105817, @@ -65560,7 +84359,14 @@ "path": "ivipcoin-db::__movement_wallet__/120996359783253070", "content": { "type": 1, - "value": { "dataModificacao": 1678148092390, "dateValidity": 1678198916837, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678148092390, + "dateValidity": 1678198916837, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt035ei037moohxbwhme7im", "revision_nr": 1, "created": 1697467105827, @@ -65571,7 +84377,11 @@ "path": "ivipcoin-db::__movement_wallet__/121847634268578820/balances/BRL", "content": { "type": 1, - "value": { "available": "9.00000000", "symbol": "BRL", "value": 1.74 }, + "value": { + "available": "9.00000000", + "symbol": "BRL", + "value": 1.74 + }, "revision": "lnt035es037poohx9j13gfpi", "revision_nr": 1, "created": 1697467105836, @@ -65582,7 +84392,11 @@ "path": "ivipcoin-db::__movement_wallet__/121847634268578820/balances/IVIP", "content": { "type": 1, - "value": { "available": "443235.00000000", "symbol": "IVIP", "value": 70.34 }, + "value": { + "available": "443235.00000000", + "symbol": "IVIP", + "value": 70.34 + }, "revision": "lnt035f0037qoohx40c45uql", "revision_nr": 1, "created": 1697467105845, @@ -65591,7 +84405,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/balances", - "content": { "type": 1, "value": {}, "revision": "lnt035es037ooohxgrwq0jgo", "revision_nr": 1, "created": 1697467105853, "modified": 1697467105853 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt035es037ooohxgrwq0jgo", + "revision_nr": 1, + "created": 1697467105853, + "modified": 1697467105853 + } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684273040978/description", @@ -65606,7 +84427,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684273040978/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt035fq037uoohxf0pd4igq", "revision_nr": 1, "created": 1697467105872, "modified": 1697467105872 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt035fq037uoohxf0pd4igq", + "revision_nr": 1, + "created": 1697467105872, + "modified": 1697467105872 + } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684273040978", @@ -65620,15 +84450,30 @@ "total_amount": 100, "history_id": 1684273040978, "id": 1684273040978, - "date_created": { "type": 6, "value": 1684273040978 }, - "date_last_updated": { "type": 6, "value": 1684331134751 }, - "date_of_expiration": { "type": 6, "value": 1686865040978 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684331134751 }, - "money_release_date": { "type": 6, "value": 1684331134751 }, + "date_created": { + "type": 6, + "value": 1684273040978 + }, + "date_last_updated": { + "type": 6, + "value": 1684331134751 + }, + "date_of_expiration": { + "type": 6, + "value": 1686865040978 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684331134751 + }, + "money_release_date": { + "type": 6, + "value": 1684331134751 + }, "money_release_status": "approved", "wasDebited": true }, @@ -65674,9 +84519,18 @@ "original_amount": 97852, "total_amount": 97852, "id": 1684624212629, - "date_created": { "type": 6, "value": 1684624212629 }, - "date_last_updated": { "type": 6, "value": 1684624212629 }, - "date_of_expiration": { "type": 6, "value": 1684624212629 }, + "date_created": { + "type": 6, + "value": 1684624212629 + }, + "date_last_updated": { + "type": 6, + "value": 1684624212629 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624212629 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -65727,9 +84581,18 @@ "original_amount": 345383, "total_amount": 345383, "id": 1684624265601, - "date_created": { "type": 6, "value": 1684624265601 }, - "date_last_updated": { "type": 6, "value": 1684624265601 }, - "date_of_expiration": { "type": 6, "value": 1684624265601 }, + "date_created": { + "type": 6, + "value": 1684624265601 + }, + "date_last_updated": { + "type": 6, + "value": 1684624265601 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624265601 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -65800,9 +84663,18 @@ "total_amount": 1000, "id": "1696563980031", "history_id": "1696563980031", - "date_created": { "type": 6, "value": 1696563980031 }, - "date_last_updated": { "type": 6, "value": 1696563980031 }, - "date_of_expiration": { "type": 6, "value": 1699242379931 }, + "date_created": { + "type": 6, + "value": 1696563980031 + }, + "date_last_updated": { + "type": 6, + "value": 1696563980031 + }, + "date_of_expiration": { + "type": 6, + "value": 1699242379931 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -65818,13 +84690,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history", - "content": { "type": 1, "value": {}, "revision": "lnt035fh037roohx2cmbbu0d", "revision_nr": 1, "created": 1697467105965, "modified": 1697467105965 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt035fh037roohx2cmbbu0d", + "revision_nr": 1, + "created": 1697467105965, + "modified": 1697467105965 + } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt035il0383oohxesxd91ug", "revision_nr": 1, "created": 1697467105975, @@ -65835,7 +84718,16 @@ "path": "ivipcoin-db::__movement_wallet__/121847634268578820", "content": { "type": 1, - "value": { "dataModificacao": 1684189916126, "dateValidity": 1684189916126, "totalValue": 20.09, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696561200000 } }, + "value": { + "dataModificacao": 1684189916126, + "dateValidity": 1684189916126, + "totalValue": 20.09, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } + }, "revision": "lnt035er037noohx4dpwcxtr", "revision_nr": 1, "created": 1697467105983, @@ -65846,7 +84738,13 @@ "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693581922792 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693581922792 + } + }, "revision": "lnt035j30387oohxfpeqgxjn", "revision_nr": 1, "created": 1697467105994, @@ -65908,16 +84806,28 @@ "total_amount": 100, "id": 1690989922793, "history_id": 1690989922793, - "date_created": { "type": 6, "value": 1690989922793 }, - "date_last_updated": { "type": 6, "value": 1691006114626 }, + "date_created": { + "type": 6, + "value": 1690989922793 + }, + "date_last_updated": { + "type": 6, + "value": 1691006114626 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691006114626 }, - "money_release_date": { "type": 6, "value": 1691006114626 }, + "date_approved": { + "type": 6, + "value": 1691006114626 + }, + "money_release_date": { + "type": 6, + "value": 1691006114626 + }, "money_release_status": "approved", "wasDebited": true }, @@ -65971,9 +84881,18 @@ "total_amount": 108815, "id": 1691006310448, "history_id": 1691006310448, - "date_created": { "type": 6, "value": 1691006310448 }, - "date_last_updated": { "type": 6, "value": 1691006310448 }, - "date_of_expiration": { "type": 6, "value": 1691006310448 }, + "date_created": { + "type": 6, + "value": 1691006310448 + }, + "date_last_updated": { + "type": 6, + "value": 1691006310448 + }, + "date_of_expiration": { + "type": 6, + "value": 1691006310448 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -66043,9 +84962,18 @@ "total_amount": 108815, "id": 1691006485984, "history_id": 1691006485984, - "date_created": { "type": 6, "value": 1691006485984 }, - "date_last_updated": { "type": 6, "value": 1691006485984 }, - "date_of_expiration": { "type": 6, "value": 1754164885917 }, + "date_created": { + "type": 6, + "value": 1691006485984 + }, + "date_last_updated": { + "type": 6, + "value": 1691006485984 + }, + "date_of_expiration": { + "type": 6, + "value": 1754164885917 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -66063,7 +84991,13 @@ "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694177260996 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694177260996 + } + }, "revision": "lnt035m7038joohx23g4f7tq", "revision_nr": 1, "created": 1697467106104, @@ -66125,16 +85059,28 @@ "total_amount": 50, "id": 1691585260996, "history_id": 1691585260996, - "date_created": { "type": 6, "value": 1691585260996 }, - "date_last_updated": { "type": 6, "value": 1691589440313 }, + "date_created": { + "type": 6, + "value": 1691585260996 + }, + "date_last_updated": { + "type": 6, + "value": 1691589440313 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691589440313 }, - "money_release_date": { "type": 6, "value": 1691589440313 }, + "date_approved": { + "type": 6, + "value": 1691589440313 + }, + "money_release_date": { + "type": 6, + "value": 1691589440313 + }, "money_release_status": "approved", "wasDebited": true }, @@ -66188,9 +85134,18 @@ "total_amount": 76363, "id": 1691589566120, "history_id": 1691589566120, - "date_created": { "type": 6, "value": 1691589566120 }, - "date_last_updated": { "type": 6, "value": 1691589566120 }, - "date_of_expiration": { "type": 6, "value": 1691589566120 }, + "date_created": { + "type": 6, + "value": 1691589566120 + }, + "date_last_updated": { + "type": 6, + "value": 1691589566120 + }, + "date_of_expiration": { + "type": 6, + "value": 1691589566120 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -66260,9 +85215,18 @@ "total_amount": 20000, "id": 1691589908652, "history_id": 1691589908652, - "date_created": { "type": 6, "value": 1691589908652 }, - "date_last_updated": { "type": 6, "value": 1691589908652 }, - "date_of_expiration": { "type": 6, "value": 1694268308648 }, + "date_created": { + "type": 6, + "value": 1691589908652 + }, + "date_last_updated": { + "type": 6, + "value": 1691589908652 + }, + "date_of_expiration": { + "type": 6, + "value": 1694268308648 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -66331,9 +85295,18 @@ "total_amount": 20400, "id": "1694268632615", "history_id": "1694268632615", - "date_created": { "type": 6, "value": 1694268632615 }, - "date_last_updated": { "type": 6, "value": 1694268632615 }, - "date_of_expiration": { "type": 6, "value": 1694268632615 }, + "date_created": { + "type": 6, + "value": 1694268632615 + }, + "date_last_updated": { + "type": 6, + "value": 1694268632615 + }, + "date_of_expiration": { + "type": 6, + "value": 1694268632615 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -66402,16 +85375,28 @@ "total_amount": 63131, "id": "1694304834658", "history_id": "1694304834658", - "date_created": { "type": 6, "value": 1694304834658 }, - "date_last_updated": { "type": 6, "value": 1696462319684 }, - "date_of_expiration": { "type": 6, "value": 1696896834657 }, + "date_created": { + "type": 6, + "value": 1694304834658 + }, + "date_last_updated": { + "type": 6, + "value": 1696462319684 + }, + "date_of_expiration": { + "type": 6, + "value": 1696896834657 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": { "type": 6, "value": 1696462319684 }, + "money_release_date": { + "type": 6, + "value": 1696462319684 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -66425,7 +85410,13 @@ "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697308841417 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697308841417 + } + }, "revision": "lnt035rd0393oohx6kc036th", "revision_nr": 1, "created": 1697467106290, @@ -66487,16 +85478,28 @@ "total_amount": 20, "id": "1694716841418", "history_id": "1694716841418", - "date_created": { "type": 6, "value": 1694716841418 }, - "date_last_updated": { "type": 6, "value": 1694718639334 }, + "date_created": { + "type": 6, + "value": 1694716841418 + }, + "date_last_updated": { + "type": 6, + "value": 1694718639334 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694718639334 }, - "money_release_date": { "type": 6, "value": 1694718639334 }, + "date_approved": { + "type": 6, + "value": 1694718639334 + }, + "money_release_date": { + "type": 6, + "value": 1694718639334 + }, "money_release_status": "approved", "wasDebited": true }, @@ -66550,9 +85553,18 @@ "total_amount": 22823, "id": "1694723873975", "history_id": "1694723873975", - "date_created": { "type": 6, "value": 1694723873975 }, - "date_last_updated": { "type": 6, "value": 1694723873975 }, - "date_of_expiration": { "type": 6, "value": 1694723873975 }, + "date_created": { + "type": 6, + "value": 1694723873975 + }, + "date_last_updated": { + "type": 6, + "value": 1694723873975 + }, + "date_of_expiration": { + "type": 6, + "value": 1694723873975 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -66571,7 +85583,13 @@ "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697477737888 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697477737888 + } + }, "revision": "lnt035tf039boohx9a0r1ccz", "revision_nr": 1, "created": 1697467106364, @@ -66633,8 +85651,14 @@ "total_amount": 28.17, "id": "1694885737888", "history_id": "1694885737888", - "date_created": { "type": 6, "value": 1694885737888 }, - "date_last_updated": { "type": 6, "value": 1694885737888 }, + "date_created": { + "type": 6, + "value": 1694885737888 + }, + "date_last_updated": { + "type": 6, + "value": 1694885737888 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -66652,7 +85676,13 @@ "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697743250157 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697743250157 + } + }, "revision": "lnt035ur039goohxfvvzekif", "revision_nr": 1, "created": 1697467106411, @@ -66714,16 +85744,28 @@ "total_amount": 29370, "id": "1695151250157", "history_id": "1695151250157", - "date_created": { "type": 6, "value": 1695151250157 }, - "date_last_updated": { "type": 6, "value": 1695156966903 }, + "date_created": { + "type": 6, + "value": 1695151250157 + }, + "date_last_updated": { + "type": 6, + "value": 1695156966903 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1695156966903 }, - "money_release_date": { "type": 6, "value": 1695156966903 }, + "date_approved": { + "type": 6, + "value": 1695156966903 + }, + "money_release_date": { + "type": 6, + "value": 1695156966903 + }, "money_release_status": "approved", "wasDebited": true }, @@ -66788,16 +85830,28 @@ "total_amount": 36455, "id": "1695152833307", "history_id": "1695152833307", - "date_created": { "type": 6, "value": 1695152833307 }, - "date_last_updated": { "type": 6, "value": 1695678283636 }, - "date_of_expiration": { "type": 6, "value": 1710877633306 }, + "date_created": { + "type": 6, + "value": 1695152833307 + }, + "date_last_updated": { + "type": 6, + "value": 1695678283636 + }, + "date_of_expiration": { + "type": 6, + "value": 1710877633306 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": { "type": 6, "value": 1695678283636 }, + "money_release_date": { + "type": 6, + "value": 1695678283636 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -66862,16 +85916,28 @@ "total_amount": 29370, "id": "1695158486667", "history_id": "1695158486667", - "date_created": { "type": 6, "value": 1695158486667 }, - "date_last_updated": { "type": 6, "value": 1695678321877 }, - "date_of_expiration": { "type": 6, "value": 1726780886665 }, + "date_created": { + "type": 6, + "value": 1695158486667 + }, + "date_last_updated": { + "type": 6, + "value": 1695678321877 + }, + "date_of_expiration": { + "type": 6, + "value": 1726780886665 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": { "type": 6, "value": 1695678321877 }, + "money_release_date": { + "type": 6, + "value": 1695678321877 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -66937,9 +86003,18 @@ "total_amount": 128956, "id": "1696466013923", "history_id": "1696466013923", - "date_created": { "type": 6, "value": 1696466013923 }, - "date_last_updated": { "type": 6, "value": 1696466013923 }, - "date_of_expiration": { "type": 6, "value": 1699144413853 }, + "date_created": { + "type": 6, + "value": 1696466013923 + }, + "date_last_updated": { + "type": 6, + "value": 1696466013923 + }, + "date_of_expiration": { + "type": 6, + "value": 1699144413853 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -66955,13 +86030,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history", - "content": { "type": 1, "value": {}, "revision": "lnt035j30385oohxdjbe4hkx", "revision_nr": 1, "created": 1697467106572, "modified": 1697467106572 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt035j30385oohxdjbe4hkx", + "revision_nr": 1, + "created": 1697467106572, + "modified": 1697467106572 + } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt035zg039woohxgifwg0ym", "revision_nr": 1, "created": 1697467106580, @@ -66972,7 +86058,16 @@ "path": "ivipcoin-db::__movement_wallet__/122764830599810350", "content": { "type": 1, - "value": { "dataModificacao": 1690989855646, "dateValidity": 1690989855726, "balances": {}, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697338800000 } }, + "value": { + "dataModificacao": 1690989855646, + "dateValidity": 1690989855726, + "balances": {}, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } + }, "revision": "lnt035j30384oohxeeg13cf7", "revision_nr": 1, "created": 1697467106589, @@ -66983,7 +86078,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/balances/IVIP", "content": { "type": 1, - "value": { "available": "7503835.00000000", "symbol": "IVIP", "value": 789.35 }, + "value": { + "available": "7503835.00000000", + "symbol": "IVIP", + "value": 789.35 + }, "revision": "lnt035zx039zoohxc84fa7m6", "revision_nr": 1, "created": 1697467106598, @@ -66992,7 +86091,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/balances", - "content": { "type": 1, "value": {}, "revision": "lnt035zx039yoohx732i9hy6", "revision_nr": 1, "created": 1697467106608, "modified": 1697467106608 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt035zx039yoohx732i9hy6", + "revision_nr": 1, + "created": 1697467106608, + "modified": 1697467106608 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/description", @@ -67042,7 +86148,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 1.00%", "amount": 5 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 1.00%", + "amount": 5 + }, "revision": "lnt0361k03a8oohxcdf9cxk6", "revision_nr": 1, "created": 1697467106657, @@ -67051,21 +86161,52 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0361k03a7oohx6dn7hckf", "revision_nr": 1, "created": 1697467106666, "modified": 1697467106666 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0361k03a7oohx6dn7hckf", + "revision_nr": 1, + "created": 1697467106666, + "modified": 1697467106666 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/bank_info/collector", - "content": { "type": 1, "value": { "account_holder_name": "IVIPCOIN LTDA" }, "revision": "lnt0362203aaoohx1ak56llp", "revision_nr": 1, "created": 1697467106679, "modified": 1697467106679 } + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "lnt0362203aaoohx1ak56llp", + "revision_nr": 1, + "created": 1697467106679, + "modified": 1697467106679 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt0362203a9oohxcidzawq0", "revision_nr": 1, "created": 1697467106691, "modified": 1697467106691 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt0362203a9oohxcidzawq0", + "revision_nr": 1, + "created": 1697467106691, + "modified": 1697467106691 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 505, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 505, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt0360p03a3oohxdfpadx2n", "revision_nr": 1, "created": 1697467106700, @@ -67084,16 +86225,31 @@ "total_amount": 505, "history_id": 1679152509855, "id": 55900907390, - "date_created": { "type": 6, "value": 1679152510620 }, - "date_last_updated": { "type": 6, "value": 1679153713000 }, - "date_of_expiration": { "type": 6, "value": 1679238910378 }, + "date_created": { + "type": 6, + "value": 1679152510620 + }, + "date_last_updated": { + "type": 6, + "value": 1679153713000 + }, + "date_of_expiration": { + "type": 6, + "value": 1679238910378 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679153713000 }, - "money_release_date": { "type": 6, "value": 1679153713000 }, + "date_approved": { + "type": 6, + "value": 1679153713000 + }, + "money_release_date": { + "type": 6, + "value": 1679153713000 + }, "wasDebited": true }, "revision": "lnt0360g03a1oohxf6pnbrj4", @@ -67115,7 +86271,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679153875722/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0363i03adoohx8x9edquh", "revision_nr": 1, "created": 1697467106727, "modified": 1697467106727 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0363i03adoohx8x9edquh", + "revision_nr": 1, + "created": 1697467106727, + "modified": 1697467106727 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679153875722", @@ -67129,9 +86294,18 @@ "total_amount": 505, "history_id": 1679153875722, "id": 1679153875722, - "date_created": { "type": 6, "value": 1679153875722 }, - "date_last_updated": { "type": 6, "value": 1679153875722 }, - "date_of_expiration": { "type": 6, "value": 1681745875722 }, + "date_created": { + "type": 6, + "value": 1679153875722 + }, + "date_last_updated": { + "type": 6, + "value": 1679153875722 + }, + "date_of_expiration": { + "type": 6, + "value": 1681745875722 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -67156,7 +86330,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679154208055/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0364b03agoohxhsmp2o1s", "revision_nr": 1, "created": 1697467106758, "modified": 1697467106758 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0364b03agoohxhsmp2o1s", + "revision_nr": 1, + "created": 1697467106758, + "modified": 1697467106758 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679154208055", @@ -67170,9 +86353,18 @@ "total_amount": 505, "history_id": 1679154208055, "id": 1679154208055, - "date_created": { "type": 6, "value": 1679154208055 }, - "date_last_updated": { "type": 6, "value": 1679154208055 }, - "date_of_expiration": { "type": 6, "value": 1681746208055 }, + "date_created": { + "type": 6, + "value": 1679154208055 + }, + "date_last_updated": { + "type": 6, + "value": 1679154208055 + }, + "date_of_expiration": { + "type": 6, + "value": 1681746208055 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -67199,7 +86391,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt0365403aloohx174z9dvw", "revision_nr": 1, "created": 1697467106785, @@ -67208,11 +86404,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0365403akoohx24dhhrgu", "revision_nr": 1, "created": 1697467106794, "modified": 1697467106794 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0365403akoohx24dhhrgu", + "revision_nr": 1, + "created": 1697467106794, + "modified": 1697467106794 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490/details", - "content": { "type": 1, "value": {}, "revision": "lnt0365303ajoohx5yx9alvc", "revision_nr": 1, "created": 1697467106803, "modified": 1697467106803 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0365303ajoohx5yx9alvc", + "revision_nr": 1, + "created": 1697467106803, + "modified": 1697467106803 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490", @@ -67226,9 +86436,18 @@ "total_amount": 1100, "history_id": 1679263150490, "id": 1679263150490, - "date_created": { "type": 6, "value": 1679263150490 }, - "date_last_updated": { "type": 6, "value": 1679263150490 }, - "date_of_expiration": { "type": 6, "value": 1681855150490 }, + "date_created": { + "type": 6, + "value": 1679263150490 + }, + "date_last_updated": { + "type": 6, + "value": 1679263150490 + }, + "date_of_expiration": { + "type": 6, + "value": 1681855150490 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -67277,9 +86496,18 @@ "original_amount": 11643076, "total_amount": 11643076, "id": 1679266956838, - "date_created": { "type": 6, "value": 1679266956838 }, - "date_last_updated": { "type": 6, "value": 1679266956838 }, - "date_of_expiration": { "type": 6, "value": 1679266956838 }, + "date_created": { + "type": 6, + "value": 1679266956838 + }, + "date_last_updated": { + "type": 6, + "value": 1679266956838 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266956838 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -67342,7 +86570,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 1.00%", "amount": 15 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 1.00%", + "amount": 15 + }, "revision": "lnt0367q03avoohxgzzt4qoj", "revision_nr": 1, "created": 1697467106879, @@ -67351,13 +86583,22 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0367q03auoohxf8sk4trf", "revision_nr": 1, "created": 1697467106889, "modified": 1697467106889 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0367q03auoohxf8sk4trf", + "revision_nr": 1, + "created": 1697467106889, + "modified": 1697467106889 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, "revision": "lnt0368903axoohx9ucvd0s5", "revision_nr": 1, "created": 1697467106898, @@ -67366,13 +86607,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt0368903awoohx7zqz1dw2", "revision_nr": 1, "created": 1697467106907, "modified": 1697467106907 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt0368903awoohx7zqz1dw2", + "revision_nr": 1, + "created": 1697467106907, + "modified": 1697467106907 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 1515, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 1515, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt0366y03aqoohx9r2jaxb7", "revision_nr": 1, "created": 1697467106916, @@ -67391,9 +86647,18 @@ "total_amount": 1515, "history_id": 1679696530924, "id": 1313587077, - "date_created": { "type": 6, "value": 1679696531656 }, - "date_last_updated": { "type": 6, "value": 1679696531656 }, - "date_of_expiration": { "type": 6, "value": 1679782931438 }, + "date_created": { + "type": 6, + "value": 1679696531656 + }, + "date_last_updated": { + "type": 6, + "value": 1679696531656 + }, + "date_of_expiration": { + "type": 6, + "value": 1679782931438 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -67419,7 +86684,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696876215/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0369j03b0oohxetc9frcl", "revision_nr": 1, "created": 1697467106945, "modified": 1697467106945 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0369j03b0oohxetc9frcl", + "revision_nr": 1, + "created": 1697467106945, + "modified": 1697467106945 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696876215", @@ -67433,15 +86707,30 @@ "total_amount": 1500, "history_id": 1679696876215, "id": 1679696876215, - "date_created": { "type": 6, "value": 1679696876215 }, - "date_last_updated": { "type": 6, "value": 1679697420511 }, - "date_of_expiration": { "type": 6, "value": 1682288876215 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679697420511 }, - "money_release_date": { "type": 6, "value": 1679697420511 }, + "date_created": { + "type": 6, + "value": 1679696876215 + }, + "date_last_updated": { + "type": 6, + "value": 1679697420511 + }, + "date_of_expiration": { + "type": 6, + "value": 1682288876215 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679697420511 + }, + "money_release_date": { + "type": 6, + "value": 1679697420511 + }, "money_release_status": "approved", "wasDebited": true }, @@ -67464,7 +86753,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679698976004/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt036ad03b3oohxa0b4f305", "revision_nr": 1, "created": 1697467106974, "modified": 1697467106974 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt036ad03b3oohxa0b4f305", + "revision_nr": 1, + "created": 1697467106974, + "modified": 1697467106974 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679698976004", @@ -67478,15 +86776,30 @@ "total_amount": 500, "history_id": 1679698976004, "id": 1679698976004, - "date_created": { "type": 6, "value": 1679698976004 }, - "date_last_updated": { "type": 6, "value": 1679699560373 }, - "date_of_expiration": { "type": 6, "value": 1682290976004 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679699560373 }, - "money_release_date": { "type": 6, "value": 1679699560373 }, + "date_created": { + "type": 6, + "value": 1679698976004 + }, + "date_last_updated": { + "type": 6, + "value": 1679699560373 + }, + "date_of_expiration": { + "type": 6, + "value": 1682290976004 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679699560373 + }, + "money_release_date": { + "type": 6, + "value": 1679699560373 + }, "money_release_status": "approved", "wasDebited": true }, @@ -67532,9 +86845,18 @@ "original_amount": 10651254, "total_amount": 10651254, "id": 1679872088470, - "date_created": { "type": 6, "value": 1679872088470 }, - "date_last_updated": { "type": 6, "value": 1679872088470 }, - "date_of_expiration": { "type": 6, "value": 1679872088470 }, + "date_created": { + "type": 6, + "value": 1679872088470 + }, + "date_last_updated": { + "type": 6, + "value": 1679872088470 + }, + "date_of_expiration": { + "type": 6, + "value": 1679872088470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -67562,7 +86884,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1680996986540/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt036bo03b8oohxaq97f2w4", "revision_nr": 1, "created": 1697467107022, "modified": 1697467107022 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt036bo03b8oohxaq97f2w4", + "revision_nr": 1, + "created": 1697467107022, + "modified": 1697467107022 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1680996986540", @@ -67576,15 +86907,30 @@ "total_amount": 500, "history_id": 1680996986540, "id": 1680996986540, - "date_created": { "type": 6, "value": 1680996986540 }, - "date_last_updated": { "type": 6, "value": 1681057774524 }, - "date_of_expiration": { "type": 6, "value": 1683588986540 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1681057774524 }, - "money_release_date": { "type": 6, "value": 1681057774524 }, + "date_created": { + "type": 6, + "value": 1680996986540 + }, + "date_last_updated": { + "type": 6, + "value": 1681057774524 + }, + "date_of_expiration": { + "type": 6, + "value": 1683588986540 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1681057774524 + }, + "money_release_date": { + "type": 6, + "value": 1681057774524 + }, "money_release_status": "approved", "wasDebited": true }, @@ -67644,9 +86990,18 @@ "total_amount": 220, "id": 1682640956216, "contract_id": "1679263150490", - "date_created": { "type": 6, "value": 1682640956216 }, - "date_last_updated": { "type": 6, "value": 1682640956216 }, - "date_of_expiration": { "type": 6, "value": 1682640956216 }, + "date_created": { + "type": 6, + "value": 1682640956216 + }, + "date_last_updated": { + "type": 6, + "value": 1682640956216 + }, + "date_of_expiration": { + "type": 6, + "value": 1682640956216 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -67710,9 +87065,18 @@ "total_amount": 220, "id": 1683194553322, "contract_id": "1679263150490", - "date_created": { "type": 6, "value": 1683194553322 }, - "date_last_updated": { "type": 6, "value": 1683194553322 }, - "date_of_expiration": { "type": 6, "value": 1683194553322 }, + "date_created": { + "type": 6, + "value": 1683194553322 + }, + "date_last_updated": { + "type": 6, + "value": 1683194553322 + }, + "date_of_expiration": { + "type": 6, + "value": 1683194553322 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -67773,9 +87137,18 @@ "original_amount": 1510, "total_amount": 1510, "id": 1684019013862, - "date_created": { "type": 6, "value": 1684019013862 }, - "date_last_updated": { "type": 6, "value": 1684019013862 }, - "date_of_expiration": { "type": 6, "value": 1684019013862 }, + "date_created": { + "type": 6, + "value": 1684019013862 + }, + "date_last_updated": { + "type": 6, + "value": 1684019013862 + }, + "date_of_expiration": { + "type": 6, + "value": 1684019013862 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -67839,9 +87212,18 @@ "total_amount": 220, "id": 1684155209634, "contract_id": "1679263150490", - "date_created": { "type": 6, "value": 1684155209634 }, - "date_last_updated": { "type": 6, "value": 1684155209634 }, - "date_of_expiration": { "type": 6, "value": 1684155209634 }, + "date_created": { + "type": 6, + "value": 1684155209634 + }, + "date_last_updated": { + "type": 6, + "value": 1684155209634 + }, + "date_of_expiration": { + "type": 6, + "value": 1684155209634 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -67870,7 +87252,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 48 + }, "revision": "lnt036fn03bpoohx06l69qem", "revision_nr": 1, "created": 1697467107164, @@ -67879,11 +87265,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt036fn03booohx8m2cf8ol", "revision_nr": 1, "created": 1697467107173, "modified": 1697467107173 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt036fn03booohx8m2cf8ol", + "revision_nr": 1, + "created": 1697467107173, + "modified": 1697467107173 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574/details", - "content": { "type": 1, "value": {}, "revision": "lnt036fn03bnoohxdi2s55bn", "revision_nr": 1, "created": 1697467107183, "modified": 1697467107183 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt036fn03bnoohxdi2s55bn", + "revision_nr": 1, + "created": 1697467107183, + "modified": 1697467107183 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574", @@ -67897,9 +87297,18 @@ "total_amount": 648, "history_id": 1684158510574, "id": 1684158510574, - "date_created": { "type": 6, "value": 1684158510574 }, - "date_last_updated": { "type": 6, "value": 1684158510574 }, - "date_of_expiration": { "type": 6, "value": 1686750510574 }, + "date_created": { + "type": 6, + "value": 1684158510574 + }, + "date_last_updated": { + "type": 6, + "value": 1684158510574 + }, + "date_of_expiration": { + "type": 6, + "value": 1686750510574 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -67959,9 +87368,18 @@ "original_amount": 5, "total_amount": 5, "id": 1684348943785, - "date_created": { "type": 6, "value": 1684348943785 }, - "date_last_updated": { "type": 6, "value": 1684348943785 }, - "date_of_expiration": { "type": 6, "value": 1684348943785 }, + "date_created": { + "type": 6, + "value": 1684348943785 + }, + "date_last_updated": { + "type": 6, + "value": 1684348943785 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348943785 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -68022,9 +87440,18 @@ "original_amount": 416.90000000000003, "total_amount": 416.90000000000003, "id": 1684624245338, - "date_created": { "type": 6, "value": 1684624245338 }, - "date_last_updated": { "type": 6, "value": 1684624245338 }, - "date_of_expiration": { "type": 6, "value": 1684624245338 }, + "date_created": { + "type": 6, + "value": 1684624245338 + }, + "date_last_updated": { + "type": 6, + "value": 1684624245338 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624245338 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -68074,9 +87501,18 @@ "original_amount": 11552888, "total_amount": 11552888, "id": 1684624330381, - "date_created": { "type": 6, "value": 1684624330381 }, - "date_last_updated": { "type": 6, "value": 1684624330381 }, - "date_of_expiration": { "type": 6, "value": 1684624330381 }, + "date_created": { + "type": 6, + "value": 1684624330381 + }, + "date_last_updated": { + "type": 6, + "value": 1684624330381 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624330381 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -68104,7 +87540,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686781360635/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt036j203c0oohx0oo604xu", "revision_nr": 1, "created": 1697467107287, "modified": 1697467107287 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt036j203c0oohx0oo604xu", + "revision_nr": 1, + "created": 1697467107287, + "modified": 1697467107287 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686781360635", @@ -68118,9 +87563,18 @@ "total_amount": 100, "history_id": 1686781360635, "id": 1686781360635, - "date_created": { "type": 6, "value": 1686781360635 }, - "date_last_updated": { "type": 6, "value": 1686781360635 }, - "date_of_expiration": { "type": 6, "value": 1689373360635 }, + "date_created": { + "type": 6, + "value": 1686781360635 + }, + "date_last_updated": { + "type": 6, + "value": 1686781360635 + }, + "date_of_expiration": { + "type": 6, + "value": 1689373360635 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -68145,7 +87599,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686838534175/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt036jw03c3oohxduaw15g1", "revision_nr": 1, "created": 1697467107317, "modified": 1697467107317 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt036jw03c3oohxduaw15g1", + "revision_nr": 1, + "created": 1697467107317, + "modified": 1697467107317 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686838534175", @@ -68159,15 +87622,30 @@ "total_amount": 162, "history_id": 1686838534175, "id": 1686838534175, - "date_created": { "type": 6, "value": 1686838534175 }, - "date_last_updated": { "type": 6, "value": 1686839135258 }, - "date_of_expiration": { "type": 6, "value": 1689430534175 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1686839135258 }, - "money_release_date": { "type": 6, "value": 1686839135258 }, + "date_created": { + "type": 6, + "value": 1686838534175 + }, + "date_last_updated": { + "type": 6, + "value": 1686839135258 + }, + "date_of_expiration": { + "type": 6, + "value": 1689430534175 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686839135258 + }, + "money_release_date": { + "type": 6, + "value": 1686839135258 + }, "money_release_status": "approved", "wasDebited": true }, @@ -68227,9 +87705,18 @@ "total_amount": 162, "id": 1686839367288, "contract_id": "1684158510574", - "date_created": { "type": 6, "value": 1686839367288 }, - "date_last_updated": { "type": 6, "value": 1686839367288 }, - "date_of_expiration": { "type": 6, "value": 1686839367288 }, + "date_created": { + "type": 6, + "value": 1686839367288 + }, + "date_last_updated": { + "type": 6, + "value": 1686839367288 + }, + "date_of_expiration": { + "type": 6, + "value": 1686839367288 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -68289,9 +87776,18 @@ "original_amount": 5132122, "total_amount": 5132122, "id": 1687526304583, - "date_created": { "type": 6, "value": 1687526304583 }, - "date_last_updated": { "type": 6, "value": 1687526304583 }, - "date_of_expiration": { "type": 6, "value": 1750684704583 }, + "date_created": { + "type": 6, + "value": 1687526304583 + }, + "date_last_updated": { + "type": 6, + "value": 1687526304583 + }, + "date_of_expiration": { + "type": 6, + "value": 1750684704583 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -68310,7 +87806,13 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693646965462 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693646965462 + } + }, "revision": "lnt036lz03cboohx0d1rhih6", "revision_nr": 1, "created": 1697467107394, @@ -68372,16 +87874,28 @@ "total_amount": 510, "id": 1691054965462, "history_id": 1691054965462, - "date_created": { "type": 6, "value": 1691054965462 }, - "date_last_updated": { "type": 6, "value": 1691089636675 }, + "date_created": { + "type": 6, + "value": 1691054965462 + }, + "date_last_updated": { + "type": 6, + "value": 1691089636675 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691089636675 }, - "money_release_date": { "type": 6, "value": 1691089636675 }, + "date_approved": { + "type": 6, + "value": 1691089636675 + }, + "money_release_date": { + "type": 6, + "value": 1691089636675 + }, "money_release_status": "approved", "wasDebited": true }, @@ -68395,7 +87909,13 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694044211694 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694044211694 + } + }, "revision": "lnt036na03cgoohx0ssgg39l", "revision_nr": 1, "created": 1697467107442, @@ -68457,16 +87977,28 @@ "total_amount": 300, "id": 1691452211694, "history_id": 1691452211694, - "date_created": { "type": 6, "value": 1691452211694 }, - "date_last_updated": { "type": 6, "value": 1691455199247 }, + "date_created": { + "type": 6, + "value": 1691452211694 + }, + "date_last_updated": { + "type": 6, + "value": 1691455199247 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691455199247 }, - "money_release_date": { "type": 6, "value": 1691455199247 }, + "date_approved": { + "type": 6, + "value": 1691455199247 + }, + "money_release_date": { + "type": 6, + "value": 1691455199247 + }, "money_release_status": "approved", "wasDebited": true }, @@ -68502,7 +88034,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 750698.52 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 750698.52 + }, "revision": "lnt036p603cpoohxgky9gpyx", "revision_nr": 1, "created": 1697467107508, @@ -68511,7 +88047,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt036p603cooohx7ms7fj7x", "revision_nr": 1, "created": 1697467107517, "modified": 1697467107517 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt036p603cooohx7ms7fj7x", + "revision_nr": 1, + "created": 1697467107517, + "modified": 1697467107517 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details", @@ -68545,17 +88088,32 @@ "total_amount": 24272585.48, "id": 1692030522501, "history_id": 1692030522501, - "date_created": { "type": 6, "value": 1692030522501 }, - "date_last_updated": { "type": 6, "value": 1692031200472 }, - "date_of_expiration": { "type": 6, "value": 1692030522501 }, + "date_created": { + "type": 6, + "value": 1692030522501 + }, + "date_last_updated": { + "type": 6, + "value": 1692031200472 + }, + "date_of_expiration": { + "type": 6, + "value": 1692030522501 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1692031200472 }, - "money_release_date": { "type": 6, "value": 1692031200472 }, + "date_approved": { + "type": 6, + "value": 1692031200472 + }, + "money_release_date": { + "type": 6, + "value": 1692031200472 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -68569,7 +88127,13 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697750847215 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697750847215 + } + }, "revision": "lnt036q803croohx28ji0012", "revision_nr": 1, "created": 1697467107545, @@ -68631,16 +88195,28 @@ "total_amount": 150, "id": "1695158847215", "history_id": "1695158847215", - "date_created": { "type": 6, "value": 1695158847215 }, - "date_last_updated": { "type": 6, "value": 1695159625727 }, + "date_created": { + "type": 6, + "value": 1695158847215 + }, + "date_last_updated": { + "type": 6, + "value": 1695159625727 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1695159625727 }, - "money_release_date": { "type": 6, "value": 1695159625727 }, + "date_approved": { + "type": 6, + "value": 1695159625727 + }, + "money_release_date": { + "type": 6, + "value": 1695159625727 + }, "money_release_status": "approved", "wasDebited": true }, @@ -68707,9 +88283,18 @@ "total_amount": 220, "id": "1695159884735", "history_id": "1695159884735", - "date_created": { "type": 6, "value": 1695159884735 }, - "date_last_updated": { "type": 6, "value": 1695159884735 }, - "date_of_expiration": { "type": 6, "value": 1695159884735 }, + "date_created": { + "type": 6, + "value": 1695159884735 + }, + "date_last_updated": { + "type": 6, + "value": 1695159884735 + }, + "date_of_expiration": { + "type": 6, + "value": 1695159884735 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -68780,9 +88365,18 @@ "total_amount": 162, "id": "1695159884797", "history_id": "1695159884797", - "date_created": { "type": 6, "value": 1695159884797 }, - "date_last_updated": { "type": 6, "value": 1695159884797 }, - "date_of_expiration": { "type": 6, "value": 1695159884797 }, + "date_created": { + "type": 6, + "value": 1695159884797 + }, + "date_last_updated": { + "type": 6, + "value": 1695159884797 + }, + "date_of_expiration": { + "type": 6, + "value": 1695159884797 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -68853,9 +88447,18 @@ "total_amount": 220, "id": "1695159884893", "history_id": "1695159884893", - "date_created": { "type": 6, "value": 1695159884893 }, - "date_last_updated": { "type": 6, "value": 1695159884893 }, - "date_of_expiration": { "type": 6, "value": 1695159884893 }, + "date_created": { + "type": 6, + "value": 1695159884893 + }, + "date_last_updated": { + "type": 6, + "value": 1695159884893 + }, + "date_of_expiration": { + "type": 6, + "value": 1695159884893 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -68926,9 +88529,18 @@ "total_amount": 162, "id": "1695159884951", "history_id": "1695159884951", - "date_created": { "type": 6, "value": 1695159884951 }, - "date_last_updated": { "type": 6, "value": 1695159884951 }, - "date_of_expiration": { "type": 6, "value": 1695159884951 }, + "date_created": { + "type": 6, + "value": 1695159884951 + }, + "date_last_updated": { + "type": 6, + "value": 1695159884951 + }, + "date_of_expiration": { + "type": 6, + "value": 1695159884951 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -68999,9 +88611,18 @@ "total_amount": 162, "id": "1695159885077", "history_id": "1695159885077", - "date_created": { "type": 6, "value": 1695159885077 }, - "date_last_updated": { "type": 6, "value": 1695159885077 }, - "date_of_expiration": { "type": 6, "value": 1695159885077 }, + "date_created": { + "type": 6, + "value": 1695159885077 + }, + "date_last_updated": { + "type": 6, + "value": 1695159885077 + }, + "date_of_expiration": { + "type": 6, + "value": 1695159885077 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -69019,7 +88640,13 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698764022012 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698764022012 + } + }, "revision": "lnt036x403dgoohx0o3y28km", "revision_nr": 1, "created": 1697467107794, @@ -69082,8 +88709,14 @@ "total_amount": 100000, "id": "1696172022012", "history_id": "1696172022012", - "date_created": { "type": 6, "value": 1696172022012 }, - "date_last_updated": { "type": 6, "value": 1696172022012 }, + "date_created": { + "type": 6, + "value": 1696172022012 + }, + "date_last_updated": { + "type": 6, + "value": 1696172022012 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -69101,7 +88734,13 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699705029373 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699705029373 + } + }, "revision": "lnt036yh03dloohx8wwp9p9l", "revision_nr": 1, "created": 1697467107842, @@ -69164,16 +88803,28 @@ "total_amount": 2500, "id": "1697113029373", "history_id": "1697113029373", - "date_created": { "type": 6, "value": 1697113029373 }, - "date_last_updated": { "type": 6, "value": 1697113404981 }, + "date_created": { + "type": 6, + "value": 1697113029373 + }, + "date_last_updated": { + "type": 6, + "value": 1697113404981 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1697113404981 }, - "money_release_date": { "type": 6, "value": 1697113404981 }, + "date_approved": { + "type": 6, + "value": 1697113404981 + }, + "money_release_date": { + "type": 6, + "value": 1697113404981 + }, "money_release_status": "approved", "wasDebited": true }, @@ -69228,9 +88879,18 @@ "total_amount": 3812023, "id": "1697159292046", "history_id": "1697159292046", - "date_created": { "type": 6, "value": 1697159292046 }, - "date_last_updated": { "type": 6, "value": 1697159292046 }, - "date_of_expiration": { "type": 6, "value": 1697159292046 }, + "date_created": { + "type": 6, + "value": 1697159292046 + }, + "date_last_updated": { + "type": 6, + "value": 1697159292046 + }, + "date_of_expiration": { + "type": 6, + "value": 1697159292046 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -69247,7 +88907,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history", - "content": { "type": 1, "value": {}, "revision": "lnt0360g03a0oohx9sar73dn", "revision_nr": 1, "created": 1697467107919, "modified": 1697467107919 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0360g03a0oohx9sar73dn", + "revision_nr": 1, + "created": 1697467107919, + "modified": 1697467107919 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490/description", @@ -69264,7 +88931,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt0371503dyoohx77zodkq3", "revision_nr": 1, "created": 1697467107939, @@ -69273,7 +88944,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0371503dxoohx8x4g9o7m", "revision_nr": 1, "created": 1697467107948, "modified": 1697467107948 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0371503dxoohx8x4g9o7m", + "revision_nr": 1, + "created": 1697467107948, + "modified": 1697467107948 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490", @@ -69286,7 +88964,10 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1679263150490 }, + "date_created": { + "type": 6, + "value": 1679263150490 + }, "history_id": 1679263150490, "currency_id": "BRL", "status": "paid" @@ -69299,7 +88980,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304", - "content": { "type": 1, "value": {}, "revision": "lnt0370v03duoohx98j73tka", "revision_nr": 1, "created": 1697467107969, "modified": 1697467107969 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0370v03duoohx98j73tka", + "revision_nr": 1, + "created": 1697467107969, + "modified": 1697467107969 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490/description", @@ -69316,7 +89004,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt0372i03e3oohxhl4a5oiu", "revision_nr": 1, "created": 1697467107988, @@ -69325,7 +89017,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0372i03e2oohx780jb28q", "revision_nr": 1, "created": 1697467107997, "modified": 1697467107997 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0372i03e2oohx780jb28q", + "revision_nr": 1, + "created": 1697467107997, + "modified": 1697467107997 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490", @@ -69338,7 +89037,10 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1679263150490 }, + "date_created": { + "type": 6, + "value": 1679263150490 + }, "history_id": 1679263150490, "currency_id": "BRL", "status": "paid" @@ -69351,7 +89053,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305", - "content": { "type": 1, "value": {}, "revision": "lnt0372903dzoohxekvrgsvi", "revision_nr": 1, "created": 1697467108016, "modified": 1697467108016 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0372903dzoohxekvrgsvi", + "revision_nr": 1, + "created": 1697467108016, + "modified": 1697467108016 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490/description", @@ -69368,7 +89077,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt0373v03e8oohxeqgddfsk", "revision_nr": 1, "created": 1697467108036, @@ -69377,7 +89090,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0373v03e7oohxbgy2fkqp", "revision_nr": 1, "created": 1697467108045, "modified": 1697467108045 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0373v03e7oohxbgy2fkqp", + "revision_nr": 1, + "created": 1697467108045, + "modified": 1697467108045 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490", @@ -69390,7 +89110,10 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1679263150490 }, + "date_created": { + "type": 6, + "value": 1679263150490 + }, "history_id": 1679263150490, "currency_id": "BRL", "status": "paid" @@ -69416,7 +89139,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 48 + }, "revision": "lnt0374x03ecoohxcoag0c65", "revision_nr": 1, "created": 1697467108076, @@ -69425,7 +89152,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0374x03eboohx0wv39bvc", "revision_nr": 1, "created": 1697467108085, "modified": 1697467108085 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0374x03eboohx0wv39bvc", + "revision_nr": 1, + "created": 1697467108085, + "modified": 1697467108085 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574", @@ -69438,7 +89172,10 @@ "total_amount": 648, "installments": 4, "installment_amount": 162, - "date_created": { "type": 6, "value": 1684158510574 }, + "date_created": { + "type": 6, + "value": 1684158510574 + }, "history_id": 1684158510574, "currency_id": "BRL", "status": "paid" @@ -69451,7 +89188,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt0373k03e4oohx5h96fhzl", "revision_nr": 1, "created": 1697467108103, "modified": 1697467108103 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0373k03e4oohx5h96fhzl", + "revision_nr": 1, + "created": 1697467108103, + "modified": 1697467108103 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490/description", @@ -69468,7 +89212,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt0376803ehoohx9wnq5d2l", "revision_nr": 1, "created": 1697467108122, @@ -69477,7 +89225,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0376803egoohx682bfdbn", "revision_nr": 1, "created": 1697467108131, "modified": 1697467108131 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0376803egoohx682bfdbn", + "revision_nr": 1, + "created": 1697467108131, + "modified": 1697467108131 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490", @@ -69490,11 +89245,17 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1679263150490 }, + "date_created": { + "type": 6, + "value": 1679263150490 + }, "history_id": 1679263150490, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1695159884751 } + "date_last_updated": { + "type": 6, + "value": 1695159884751 + } }, "revision": "lnt0375z03eeoohx417f72ia", "revision_nr": 1, @@ -69517,7 +89278,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 48 + }, "revision": "lnt0377b03eloohx0kbea77y", "revision_nr": 1, "created": 1697467108160, @@ -69526,7 +89291,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0377b03ekoohx49mueevh", "revision_nr": 1, "created": 1697467108169, "modified": 1697467108169 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0377b03ekoohx49mueevh", + "revision_nr": 1, + "created": 1697467108169, + "modified": 1697467108169 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574", @@ -69539,11 +89311,17 @@ "total_amount": 648, "installments": 4, "installment_amount": 162, - "date_created": { "type": 6, "value": 1684158510574 }, + "date_created": { + "type": 6, + "value": 1684158510574 + }, "history_id": 1684158510574, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1695159884809 } + "date_last_updated": { + "type": 6, + "value": 1695159884809 + } }, "revision": "lnt0377203eioohx4dpfc7e5", "revision_nr": 1, @@ -69553,7 +89331,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt0375z03edoohxdxs10r1u", "revision_nr": 1, "created": 1697467108189, "modified": 1697467108189 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0375z03edoohxdxs10r1u", + "revision_nr": 1, + "created": 1697467108189, + "modified": 1697467108189 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490/description", @@ -69570,7 +89355,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt0378m03eqoohx9cizd2z3", "revision_nr": 1, "created": 1697467108209, @@ -69579,7 +89368,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0378m03epoohxdn4s68ne", "revision_nr": 1, "created": 1697467108218, "modified": 1697467108218 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0378m03epoohxdn4s68ne", + "revision_nr": 1, + "created": 1697467108218, + "modified": 1697467108218 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490", @@ -69592,11 +89388,17 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1679263150490 }, + "date_created": { + "type": 6, + "value": 1679263150490 + }, "history_id": 1679263150490, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1695159884904 } + "date_last_updated": { + "type": 6, + "value": 1695159884904 + } }, "revision": "lnt0378d03enoohxdtdl2fci", "revision_nr": 1, @@ -69619,7 +89421,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 48 + }, "revision": "lnt0379p03euoohx0h1wcy1z", "revision_nr": 1, "created": 1697467108246, @@ -69628,7 +89434,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0379o03etoohx9yqod8k1", "revision_nr": 1, "created": 1697467108256, "modified": 1697467108256 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0379o03etoohx9yqod8k1", + "revision_nr": 1, + "created": 1697467108256, + "modified": 1697467108256 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574", @@ -69641,11 +89454,17 @@ "total_amount": 648, "installments": 4, "installment_amount": 162, - "date_created": { "type": 6, "value": 1684158510574 }, + "date_created": { + "type": 6, + "value": 1684158510574 + }, "history_id": 1684158510574, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1695159884962 } + "date_last_updated": { + "type": 6, + "value": 1695159884962 + } }, "revision": "lnt0379f03eroohxbp6yc5pv", "revision_nr": 1, @@ -69655,7 +89474,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308", - "content": { "type": 1, "value": {}, "revision": "lnt0378d03emoohx2prjfbpy", "revision_nr": 1, "created": 1697467108276, "modified": 1697467108276 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0378d03emoohx2prjfbpy", + "revision_nr": 1, + "created": 1697467108276, + "modified": 1697467108276 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574/description", @@ -69672,7 +89498,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 48 + }, "revision": "lnt037b203ezoohx5uaq9ygs", "revision_nr": 1, "created": 1697467108295, @@ -69681,7 +89511,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574/costs", - "content": { "type": 2, "value": {}, "revision": "lnt037b203eyoohxdg3td4ht", "revision_nr": 1, "created": 1697467108306, "modified": 1697467108306 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt037b203eyoohxdg3td4ht", + "revision_nr": 1, + "created": 1697467108306, + "modified": 1697467108306 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574", @@ -69694,11 +89531,17 @@ "total_amount": 648, "installments": 4, "installment_amount": 162, - "date_created": { "type": 6, "value": 1684158510574 }, + "date_created": { + "type": 6, + "value": 1684158510574 + }, "history_id": 1684158510574, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1695159885096 } + "date_last_updated": { + "type": 6, + "value": 1695159885096 + } }, "revision": "lnt037as03ewoohx7xx9fu7z", "revision_nr": 1, @@ -69708,17 +89551,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309", - "content": { "type": 1, "value": {}, "revision": "lnt037as03evoohx10wd800q", "revision_nr": 1, "created": 1697467108325, "modified": 1697467108325 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt037as03evoohx10wd800q", + "revision_nr": 1, + "created": 1697467108325, + "modified": 1697467108325 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt0370v03dtoohxaf215u6p", "revision_nr": 1, "created": 1697467108334, "modified": 1697467108334 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0370v03dtoohxaf215u6p", + "revision_nr": 1, + "created": 1697467108334, + "modified": 1697467108334 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit", "content": { "type": 1, - "value": { "approvedLimit": 1000, "limitUsed": 850, "analysisRequested": { "type": 6, "value": 1679157145695 }, "lastReview": { "type": 6, "value": 1679261263210 } }, + "value": { + "approvedLimit": 1000, + "limitUsed": 850, + "analysisRequested": { + "type": 6, + "value": 1679157145695 + }, + "lastReview": { + "type": 6, + "value": 1679261263210 + } + }, "revision": "lnt0370v03dsoohxdf33d0y8", "revision_nr": 1, "created": 1697467108343, @@ -69729,7 +89597,16 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830", "content": { "type": 1, - "value": { "dataModificacao": 1679152336550, "dateValidity": 1679152336550, "totalValue": 1379.3, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697252400000 } }, + "value": { + "dataModificacao": 1679152336550, + "dateValidity": 1679152336550, + "totalValue": 1379.3, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697252400000 + } + }, "revision": "lnt035zx039xoohx96sjaa71", "revision_nr": 1, "created": 1697467108352, @@ -69749,7 +89626,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677727950406/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt037d603f4oohx6bzi3v0f", "revision_nr": 1, "created": 1697467108373, "modified": 1697467108373 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt037d603f4oohx6bzi3v0f", + "revision_nr": 1, + "created": 1697467108373, + "modified": 1697467108373 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677727950406", @@ -69763,15 +89649,30 @@ "total_amount": 1500, "history_id": 1677727950406, "id": 1677727950406, - "date_created": { "type": 6, "value": 1677727950406 }, - "date_last_updated": { "type": 6, "value": 1677728283262 }, - "date_of_expiration": { "type": 6, "value": 1680319950406 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677728283262 }, - "money_release_date": { "type": 6, "value": 1677728283262 }, + "date_created": { + "type": 6, + "value": 1677727950406 + }, + "date_last_updated": { + "type": 6, + "value": 1677728283262 + }, + "date_of_expiration": { + "type": 6, + "value": 1680319950406 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677728283262 + }, + "money_release_date": { + "type": 6, + "value": 1677728283262 + }, "money_release_status": "approved", "wasDebited": true }, @@ -69794,7 +89695,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677797747321/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt037e103f7oohx5qf530bm", "revision_nr": 1, "created": 1697467108402, "modified": 1697467108402 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt037e103f7oohx5qf530bm", + "revision_nr": 1, + "created": 1697467108402, + "modified": 1697467108402 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677797747321", @@ -69808,15 +89718,30 @@ "total_amount": 100, "history_id": 1677797747321, "id": 1677797747321, - "date_created": { "type": 6, "value": 1677797747321 }, - "date_last_updated": { "type": 6, "value": 1677803124428 }, - "date_of_expiration": { "type": 6, "value": 1680389747321 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677803124428 }, - "money_release_date": { "type": 6, "value": 1677803124428 }, + "date_created": { + "type": 6, + "value": 1677797747321 + }, + "date_last_updated": { + "type": 6, + "value": 1677803124428 + }, + "date_of_expiration": { + "type": 6, + "value": 1680389747321 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677803124428 + }, + "money_release_date": { + "type": 6, + "value": 1677803124428 + }, "money_release_status": "approved", "wasDebited": true }, @@ -69839,7 +89764,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678363438960/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt037et03faoohxb7ks3qv7", "revision_nr": 1, "created": 1697467108431, "modified": 1697467108431 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt037et03faoohxb7ks3qv7", + "revision_nr": 1, + "created": 1697467108431, + "modified": 1697467108431 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678363438960", @@ -69853,14 +89787,26 @@ "total_amount": 1000, "history_id": 1678363438960, "id": 1678363438960, - "date_created": { "type": 6, "value": 1678363438960 }, - "date_last_updated": { "type": 6, "value": 1678711461621 }, - "date_of_expiration": { "type": 6, "value": 1680955438960 }, + "date_created": { + "type": 6, + "value": 1678363438960 + }, + "date_last_updated": { + "type": 6, + "value": 1678711461621 + }, + "date_of_expiration": { + "type": 6, + "value": 1680955438960 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678711461621 }, + "money_release_date": { + "type": 6, + "value": 1678711461621 + }, "money_release_status": "rejected" }, "revision": "lnt037ek03f8oohx4evjcm2f", @@ -69905,9 +89851,18 @@ "original_amount": 11439584, "total_amount": 11439584, "id": 1678155991324, - "date_created": { "type": 6, "value": 1678155991324 }, - "date_last_updated": { "type": 6, "value": 1678155991324 }, - "date_of_expiration": { "type": 6, "value": 1678155991324 }, + "date_created": { + "type": 6, + "value": 1678155991324 + }, + "date_last_updated": { + "type": 6, + "value": 1678155991324 + }, + "date_of_expiration": { + "type": 6, + "value": 1678155991324 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -69970,7 +89925,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 1.9800000000000002 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 1.9800000000000002 + }, "revision": "lnt037gz03fkoohxbfdf01g1", "revision_nr": 1, "created": 1697467108510, @@ -69979,13 +89938,22 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt037gz03fjoohxb4trfecy", "revision_nr": 1, "created": 1697467108519, "modified": 1697467108519 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt037gz03fjoohxb4trfecy", + "revision_nr": 1, + "created": 1697467108519, + "modified": 1697467108519 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, "revision": "lnt037hj03fmoohx7agd53o9", "revision_nr": 1, "created": 1697467108530, @@ -69994,13 +89962,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt037hj03floohxgk3mhffc", "revision_nr": 1, "created": 1697467108539, "modified": 1697467108539 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt037hj03floohxgk3mhffc", + "revision_nr": 1, + "created": 1697467108539, + "modified": 1697467108539 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 201.98, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 201.98, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt037g703ffoohx29mx1h7u", "revision_nr": 1, "created": 1697467108548, @@ -70019,9 +90002,18 @@ "total_amount": 201.98, "history_id": 1677377774383, "id": 55108764779, - "date_created": { "type": 6, "value": 1677377775134 }, - "date_last_updated": { "type": 6, "value": 1677377775134 }, - "date_of_expiration": { "type": 6, "value": 1677464174923 }, + "date_created": { + "type": 6, + "value": 1677377775134 + }, + "date_last_updated": { + "type": 6, + "value": 1677377775134 + }, + "date_of_expiration": { + "type": 6, + "value": 1677464174923 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -70049,7 +90041,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt037iy03froohxe1db3i5d", "revision_nr": 1, "created": 1697467108579, @@ -70058,11 +90054,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt037iy03fqoohx835x1me2", "revision_nr": 1, "created": 1697467108589, "modified": 1697467108589 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt037iy03fqoohx835x1me2", + "revision_nr": 1, + "created": 1697467108589, + "modified": 1697467108589 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609/details", - "content": { "type": 1, "value": {}, "revision": "lnt037ix03fpoohx3u05hqbx", "revision_nr": 1, "created": 1697467108598, "modified": 1697467108598 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt037ix03fpoohx3u05hqbx", + "revision_nr": 1, + "created": 1697467108598, + "modified": 1697467108598 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609", @@ -70076,9 +90086,18 @@ "total_amount": 3600, "history_id": 1679262602609, "id": 1679262602609, - "date_created": { "type": 6, "value": 1679262602609 }, - "date_last_updated": { "type": 6, "value": 1679262602609 }, - "date_of_expiration": { "type": 6, "value": 1681854602609 }, + "date_created": { + "type": 6, + "value": 1679262602609 + }, + "date_last_updated": { + "type": 6, + "value": 1679262602609 + }, + "date_of_expiration": { + "type": 6, + "value": 1681854602609 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -70127,9 +90146,18 @@ "original_amount": 17473846, "total_amount": 17473846, "id": 1679266870095, - "date_created": { "type": 6, "value": 1679266870095 }, - "date_last_updated": { "type": 6, "value": 1679266870095 }, - "date_of_expiration": { "type": 6, "value": 1679266870095 }, + "date_created": { + "type": 6, + "value": 1679266870095 + }, + "date_last_updated": { + "type": 6, + "value": 1679266870095 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266870095 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70159,7 +90187,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt037ku03fyoohx0fegafh5", "revision_nr": 1, "created": 1697467108648, @@ -70168,11 +90200,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt037ku03fxoohxhjhocfai", "revision_nr": 1, "created": 1697467108658, "modified": 1697467108658 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt037ku03fxoohxhjhocfai", + "revision_nr": 1, + "created": 1697467108658, + "modified": 1697467108658 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362/details", - "content": { "type": 1, "value": {}, "revision": "lnt037ku03fwoohxb6lo75ls", "revision_nr": 1, "created": 1697467108667, "modified": 1697467108667 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt037ku03fwoohxb6lo75ls", + "revision_nr": 1, + "created": 1697467108667, + "modified": 1697467108667 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362", @@ -70186,15 +90232,30 @@ "total_amount": 3600, "history_id": 1678654062362, "id": 1678654062362, - "date_created": { "type": 6, "value": 1678654062362 }, - "date_last_updated": { "type": 6, "value": 1679405448783 }, - "date_of_expiration": { "type": 6, "value": 1681246062362 }, + "date_created": { + "type": 6, + "value": 1678654062362 + }, + "date_last_updated": { + "type": 6, + "value": 1679405448783 + }, + "date_of_expiration": { + "type": 6, + "value": 1681246062362 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679405448783 }, - "money_release_date": { "type": 6, "value": 1679405448783 }, + "date_approved": { + "type": 6, + "value": 1679405448783 + }, + "money_release_date": { + "type": 6, + "value": 1679405448783 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -70217,7 +90278,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679871546323/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt037m903g1oohxa07wcgen", "revision_nr": 1, "created": 1697467108699, "modified": 1697467108699 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt037m903g1oohxa07wcgen", + "revision_nr": 1, + "created": 1697467108699, + "modified": 1697467108699 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679871546323", @@ -70231,9 +90301,18 @@ "total_amount": 100, "history_id": 1679871546323, "id": 1679871546323, - "date_created": { "type": 6, "value": 1679871546323 }, - "date_last_updated": { "type": 6, "value": 1679871546323 }, - "date_of_expiration": { "type": 6, "value": 1682463546323 }, + "date_created": { + "type": 6, + "value": 1679871546323 + }, + "date_last_updated": { + "type": 6, + "value": 1679871546323 + }, + "date_of_expiration": { + "type": 6, + "value": 1682463546323 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -70258,7 +90337,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682619072709/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt037n103g4oohxbyjx7ks0", "revision_nr": 1, "created": 1697467108727, "modified": 1697467108727 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt037n103g4oohxbyjx7ks0", + "revision_nr": 1, + "created": 1697467108727, + "modified": 1697467108727 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682619072709", @@ -70272,15 +90360,30 @@ "total_amount": 360, "history_id": 1682619072709, "id": 1682619072709, - "date_created": { "type": 6, "value": 1682619072709 }, - "date_last_updated": { "type": 6, "value": 1682620234522 }, - "date_of_expiration": { "type": 6, "value": 1685211072709 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1682620234522 }, - "money_release_date": { "type": 6, "value": 1682620234522 }, + "date_created": { + "type": 6, + "value": 1682619072709 + }, + "date_last_updated": { + "type": 6, + "value": 1682620234522 + }, + "date_of_expiration": { + "type": 6, + "value": 1685211072709 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1682620234522 + }, + "money_release_date": { + "type": 6, + "value": 1682620234522 + }, "money_release_status": "approved", "wasDebited": true }, @@ -70340,9 +90443,18 @@ "total_amount": 360, "id": 1682620551210, "contract_id": "1679262602609", - "date_created": { "type": 6, "value": 1682620551210 }, - "date_last_updated": { "type": 6, "value": 1682620551210 }, - "date_of_expiration": { "type": 6, "value": 1682620551210 }, + "date_created": { + "type": 6, + "value": 1682620551210 + }, + "date_last_updated": { + "type": 6, + "value": 1682620551210 + }, + "date_of_expiration": { + "type": 6, + "value": 1682620551210 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -70369,7 +90481,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683422461919/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt037oo03gaoohx39gcdhx1", "revision_nr": 1, "created": 1697467108786, "modified": 1697467108786 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt037oo03gaoohx39gcdhx1", + "revision_nr": 1, + "created": 1697467108786, + "modified": 1697467108786 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683422461919", @@ -70383,15 +90504,30 @@ "total_amount": 200, "history_id": 1683422461919, "id": 1683422461919, - "date_created": { "type": 6, "value": 1683422461919 }, - "date_last_updated": { "type": 6, "value": 1683459942487 }, - "date_of_expiration": { "type": 6, "value": 1686014461919 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1683459942487 }, - "money_release_date": { "type": 6, "value": 1683459942487 }, + "date_created": { + "type": 6, + "value": 1683422461919 + }, + "date_last_updated": { + "type": 6, + "value": 1683459942487 + }, + "date_of_expiration": { + "type": 6, + "value": 1686014461919 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683459942487 + }, + "money_release_date": { + "type": 6, + "value": 1683459942487 + }, "money_release_status": "approved", "wasDebited": true }, @@ -70414,7 +90550,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947136546/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt037pi03gdoohx4ffta4wq", "revision_nr": 1, "created": 1697467108815, "modified": 1697467108815 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt037pi03gdoohx4ffta4wq", + "revision_nr": 1, + "created": 1697467108815, + "modified": 1697467108815 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947136546", @@ -70428,15 +90573,30 @@ "total_amount": 200, "history_id": 1683947136546, "id": 1683947136546, - "date_created": { "type": 6, "value": 1683947136546 }, - "date_last_updated": { "type": 6, "value": 1683947355818 }, - "date_of_expiration": { "type": 6, "value": 1686539136546 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1683947355818 }, - "money_release_date": { "type": 6, "value": 1683947355818 }, + "date_created": { + "type": 6, + "value": 1683947136546 + }, + "date_last_updated": { + "type": 6, + "value": 1683947355818 + }, + "date_of_expiration": { + "type": 6, + "value": 1686539136546 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683947355818 + }, + "money_release_date": { + "type": 6, + "value": 1683947355818 + }, "money_release_status": "approved", "wasDebited": true }, @@ -70496,9 +90656,18 @@ "total_amount": 360, "id": 1683947563493, "contract_id": "1679262602609", - "date_created": { "type": 6, "value": 1683947563493 }, - "date_last_updated": { "type": 6, "value": 1683947563493 }, - "date_of_expiration": { "type": 6, "value": 1683947563493 }, + "date_created": { + "type": 6, + "value": 1683947563493 + }, + "date_last_updated": { + "type": 6, + "value": 1683947563493 + }, + "date_of_expiration": { + "type": 6, + "value": 1683947563493 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -70525,7 +90694,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683948027523/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt037r303gjoohxea7t1dx3", "revision_nr": 1, "created": 1697467108873, "modified": 1697467108873 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt037r303gjoohxea7t1dx3", + "revision_nr": 1, + "created": 1697467108873, + "modified": 1697467108873 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683948027523", @@ -70539,15 +90717,30 @@ "total_amount": 66.32, "history_id": 1683948027523, "id": 1683948027523, - "date_created": { "type": 6, "value": 1683948027523 }, - "date_last_updated": { "type": 6, "value": 1683948080092 }, - "date_of_expiration": { "type": 6, "value": 1686540027523 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1683948080092 }, - "money_release_date": { "type": 6, "value": 1683948080092 }, + "date_created": { + "type": 6, + "value": 1683948027523 + }, + "date_last_updated": { + "type": 6, + "value": 1683948080092 + }, + "date_of_expiration": { + "type": 6, + "value": 1686540027523 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683948080092 + }, + "money_release_date": { + "type": 6, + "value": 1683948080092 + }, "money_release_status": "approved", "wasDebited": true }, @@ -70593,9 +90786,18 @@ "original_amount": 574594, "total_amount": 574594, "id": 1684018958560, - "date_created": { "type": 6, "value": 1684018958560 }, - "date_last_updated": { "type": 6, "value": 1684018958560 }, - "date_of_expiration": { "type": 6, "value": 1684018958560 }, + "date_created": { + "type": 6, + "value": 1684018958560 + }, + "date_last_updated": { + "type": 6, + "value": 1684018958560 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018958560 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70623,7 +90825,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684158010439/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt037sh03gooohx6j1se1cr", "revision_nr": 1, "created": 1697467108923, "modified": 1697467108923 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt037sh03gooohx6j1se1cr", + "revision_nr": 1, + "created": 1697467108923, + "modified": 1697467108923 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684158010439", @@ -70637,15 +90848,30 @@ "total_amount": 130, "history_id": 1684158010439, "id": 1684158010439, - "date_created": { "type": 6, "value": 1684158010439 }, - "date_last_updated": { "type": 6, "value": 1684163590445 }, - "date_of_expiration": { "type": 6, "value": 1686750010439 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684163590445 }, - "money_release_date": { "type": 6, "value": 1684163590445 }, + "date_created": { + "type": 6, + "value": 1684158010439 + }, + "date_last_updated": { + "type": 6, + "value": 1684163590445 + }, + "date_of_expiration": { + "type": 6, + "value": 1686750010439 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684163590445 + }, + "money_release_date": { + "type": 6, + "value": 1684163590445 + }, "money_release_status": "approved", "wasDebited": true }, @@ -70668,7 +90894,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684458859068/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt037tb03groohxdqaydqau", "revision_nr": 1, "created": 1697467108954, "modified": 1697467108954 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt037tb03groohxdqaydqau", + "revision_nr": 1, + "created": 1697467108954, + "modified": 1697467108954 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684458859068", @@ -70682,15 +90917,30 @@ "total_amount": 55, "history_id": 1684458859068, "id": 1684458859068, - "date_created": { "type": 6, "value": 1684458859068 }, - "date_last_updated": { "type": 6, "value": 1684459557882 }, - "date_of_expiration": { "type": 6, "value": 1687050859068 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684459557882 }, - "money_release_date": { "type": 6, "value": 1684459557882 }, + "date_created": { + "type": 6, + "value": 1684458859068 + }, + "date_last_updated": { + "type": 6, + "value": 1684459557882 + }, + "date_of_expiration": { + "type": 6, + "value": 1687050859068 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684459557882 + }, + "money_release_date": { + "type": 6, + "value": 1684459557882 + }, "money_release_status": "approved", "wasDebited": true }, @@ -70736,9 +90986,18 @@ "original_amount": 901085, "total_amount": 901085, "id": 1684624396163, - "date_created": { "type": 6, "value": 1684624396163 }, - "date_last_updated": { "type": 6, "value": 1684624396163 }, - "date_of_expiration": { "type": 6, "value": 1684624396163 }, + "date_created": { + "type": 6, + "value": 1684624396163 + }, + "date_last_updated": { + "type": 6, + "value": 1684624396163 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624396163 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70799,9 +91058,18 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1685667418933, - "date_created": { "type": 6, "value": 1685667418933 }, - "date_last_updated": { "type": 6, "value": 1685667418933 }, - "date_of_expiration": { "type": 6, "value": 1748825818933 }, + "date_created": { + "type": 6, + "value": 1685667418933 + }, + "date_last_updated": { + "type": 6, + "value": 1685667418933 + }, + "date_of_expiration": { + "type": 6, + "value": 1748825818933 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70862,9 +91130,18 @@ "original_amount": 4000000, "total_amount": 4000000, "id": 1685668065254, - "date_created": { "type": 6, "value": 1685668065254 }, - "date_last_updated": { "type": 6, "value": 1685668065254 }, - "date_of_expiration": { "type": 6, "value": 1717290465254 }, + "date_created": { + "type": 6, + "value": 1685668065254 + }, + "date_last_updated": { + "type": 6, + "value": 1685668065254 + }, + "date_of_expiration": { + "type": 6, + "value": 1717290465254 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70924,9 +91201,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685668086801, - "date_created": { "type": 6, "value": 1685668086801 }, - "date_last_updated": { "type": 6, "value": 1685668086801 }, - "date_of_expiration": { "type": 6, "value": 1688260086801 }, + "date_created": { + "type": 6, + "value": 1685668086801 + }, + "date_last_updated": { + "type": 6, + "value": 1685668086801 + }, + "date_of_expiration": { + "type": 6, + "value": 1688260086801 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70986,9 +91272,18 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1685668239552, - "date_created": { "type": 6, "value": 1685668239552 }, - "date_last_updated": { "type": 6, "value": 1685668239552 }, - "date_of_expiration": { "type": 6, "value": 1701479439552 }, + "date_created": { + "type": 6, + "value": 1685668239552 + }, + "date_last_updated": { + "type": 6, + "value": 1685668239552 + }, + "date_of_expiration": { + "type": 6, + "value": 1701479439552 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71015,7 +91310,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686858477834/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt037y203h8oohxhw2c3lsr", "revision_nr": 1, "created": 1697467109126, "modified": 1697467109126 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt037y203h8oohxhw2c3lsr", + "revision_nr": 1, + "created": 1697467109126, + "modified": 1697467109126 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686858477834", @@ -71029,15 +91333,30 @@ "total_amount": 400, "history_id": 1686858477834, "id": 1686858477834, - "date_created": { "type": 6, "value": 1686858477834 }, - "date_last_updated": { "type": 6, "value": 1686859225618 }, - "date_of_expiration": { "type": 6, "value": 1689450477834 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1686859225618 }, - "money_release_date": { "type": 6, "value": 1686859225618 }, + "date_created": { + "type": 6, + "value": 1686858477834 + }, + "date_last_updated": { + "type": 6, + "value": 1686859225618 + }, + "date_of_expiration": { + "type": 6, + "value": 1689450477834 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686859225618 + }, + "money_release_date": { + "type": 6, + "value": 1686859225618 + }, "money_release_status": "approved", "wasDebited": true }, @@ -71097,9 +91416,18 @@ "total_amount": 360, "id": 1686859298764, "contract_id": "1679262602609", - "date_created": { "type": 6, "value": 1686859298764 }, - "date_last_updated": { "type": 6, "value": 1686859298764 }, - "date_of_expiration": { "type": 6, "value": 1686859298764 }, + "date_created": { + "type": 6, + "value": 1686859298764 + }, + "date_last_updated": { + "type": 6, + "value": 1686859298764 + }, + "date_of_expiration": { + "type": 6, + "value": 1686859298764 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -71149,9 +91477,18 @@ "original_amount": 256510, "total_amount": 256510, "id": 1686859421606, - "date_created": { "type": 6, "value": 1686859421606 }, - "date_last_updated": { "type": 6, "value": 1686859421606 }, - "date_of_expiration": { "type": 6, "value": 1686859421606 }, + "date_created": { + "type": 6, + "value": 1686859421606 + }, + "date_last_updated": { + "type": 6, + "value": 1686859421606 + }, + "date_of_expiration": { + "type": 6, + "value": 1686859421606 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71212,9 +91549,18 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1688400452024, - "date_created": { "type": 6, "value": 1688400452024 }, - "date_last_updated": { "type": 6, "value": 1688400452024 }, - "date_of_expiration": { "type": 6, "value": 1688400452024 }, + "date_created": { + "type": 6, + "value": 1688400452024 + }, + "date_last_updated": { + "type": 6, + "value": 1688400452024 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400452024 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71275,9 +91621,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1688403103597, - "date_created": { "type": 6, "value": 1688403103597 }, - "date_last_updated": { "type": 6, "value": 1688403103597 }, - "date_of_expiration": { "type": 6, "value": 1691081503597 }, + "date_created": { + "type": 6, + "value": 1688403103597 + }, + "date_last_updated": { + "type": 6, + "value": 1688403103597 + }, + "date_of_expiration": { + "type": 6, + "value": 1691081503597 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71304,7 +91659,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688735047266/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0381z03hmoohx91pbfbdd", "revision_nr": 1, "created": 1697467109265, "modified": 1697467109265 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0381z03hmoohx91pbfbdd", + "revision_nr": 1, + "created": 1697467109265, + "modified": 1697467109265 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688735047266", @@ -71318,9 +91682,18 @@ "total_amount": 8000000, "history_id": 1688735047266, "id": 1688735047266, - "date_created": { "type": 6, "value": 1688735047266 }, - "date_last_updated": { "type": 6, "value": 1688735047266 }, - "date_of_expiration": { "type": 6, "value": 1688735047266 }, + "date_created": { + "type": 6, + "value": 1688735047266 + }, + "date_last_updated": { + "type": 6, + "value": 1688735047266 + }, + "date_of_expiration": { + "type": 6, + "value": 1688735047266 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -71345,7 +91718,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1689292258052/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0382u03hpoohxaxyd0t4f", "revision_nr": 1, "created": 1697467109296, "modified": 1697467109296 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0382u03hpoohxaxyd0t4f", + "revision_nr": 1, + "created": 1697467109296, + "modified": 1697467109296 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1689292258052", @@ -71359,9 +91741,18 @@ "total_amount": 11000000, "history_id": 1689292258052, "id": 1689292258052, - "date_created": { "type": 6, "value": 1689292258052 }, - "date_last_updated": { "type": 6, "value": 1689292258052 }, - "date_of_expiration": { "type": 6, "value": 1689292258052 }, + "date_created": { + "type": 6, + "value": 1689292258052 + }, + "date_last_updated": { + "type": 6, + "value": 1689292258052 + }, + "date_of_expiration": { + "type": 6, + "value": 1689292258052 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -71419,9 +91810,18 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1691081627683, - "date_created": { "type": 6, "value": 1691081627683 }, - "date_last_updated": { "type": 6, "value": 1691081627683 }, - "date_of_expiration": { "type": 6, "value": 1691081627683 }, + "date_created": { + "type": 6, + "value": 1691081627683 + }, + "date_last_updated": { + "type": 6, + "value": 1691081627683 + }, + "date_of_expiration": { + "type": 6, + "value": 1691081627683 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71491,9 +91891,18 @@ "total_amount": 8000000, "id": 1691082859805, "history_id": 1691082859805, - "date_created": { "type": 6, "value": 1691082859805 }, - "date_last_updated": { "type": 6, "value": 1691082859805 }, - "date_of_expiration": { "type": 6, "value": 1693761259804 }, + "date_created": { + "type": 6, + "value": 1691082859805 + }, + "date_last_updated": { + "type": 6, + "value": 1691082859805 + }, + "date_of_expiration": { + "type": 6, + "value": 1693761259804 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71511,7 +91920,13 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694126049576 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694126049576 + } + }, "revision": "lnt0385d03hyoohx4ty4htq2", "revision_nr": 1, "created": 1697467109388, @@ -71573,16 +91988,28 @@ "total_amount": 360, "id": 1691534049577, "history_id": 1691534049577, - "date_created": { "type": 6, "value": 1691534049577 }, - "date_last_updated": { "type": 6, "value": 1691536908177 }, + "date_created": { + "type": 6, + "value": 1691534049577 + }, + "date_last_updated": { + "type": 6, + "value": 1691536908177 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691536908177 }, - "money_release_date": { "type": 6, "value": 1691536908177 }, + "date_approved": { + "type": 6, + "value": 1691536908177 + }, + "money_release_date": { + "type": 6, + "value": 1691536908177 + }, "money_release_status": "approved", "wasDebited": true }, @@ -71647,9 +92074,18 @@ "total_amount": 8160000, "id": "1693761380582", "history_id": "1693761380582", - "date_created": { "type": 6, "value": 1693761380582 }, - "date_last_updated": { "type": 6, "value": 1693761380582 }, - "date_of_expiration": { "type": 6, "value": 1693761380582 }, + "date_created": { + "type": 6, + "value": 1693761380582 + }, + "date_last_updated": { + "type": 6, + "value": 1693761380582 + }, + "date_of_expiration": { + "type": 6, + "value": 1693761380582 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71718,9 +92154,18 @@ "total_amount": 8000000, "id": "1693780032051", "history_id": "1693780032051", - "date_created": { "type": 6, "value": 1693780032051 }, - "date_last_updated": { "type": 6, "value": 1693780032051 }, - "date_of_expiration": { "type": 6, "value": 1696372032050 }, + "date_created": { + "type": 6, + "value": 1693780032051 + }, + "date_last_updated": { + "type": 6, + "value": 1693780032051 + }, + "date_of_expiration": { + "type": 6, + "value": 1696372032050 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71738,7 +92183,13 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697914050195 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697914050195 + } + }, "revision": "lnt0388x03iboohxc2fbfxz2", "revision_nr": 1, "created": 1697467109515, @@ -71800,16 +92251,28 @@ "total_amount": 720, "id": "1695322050196", "history_id": "1695322050196", - "date_created": { "type": 6, "value": 1695322050196 }, - "date_last_updated": { "type": 6, "value": 1695406105258 }, + "date_created": { + "type": 6, + "value": 1695322050196 + }, + "date_last_updated": { + "type": 6, + "value": 1695406105258 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1695406105258 }, - "money_release_date": { "type": 6, "value": 1695406105258 }, + "date_approved": { + "type": 6, + "value": 1695406105258 + }, + "money_release_date": { + "type": 6, + "value": 1695406105258 + }, "money_release_status": "approved", "wasDebited": true }, @@ -71876,9 +92339,18 @@ "total_amount": 360, "id": "1695423451385", "history_id": "1695423451385", - "date_created": { "type": 6, "value": 1695423451385 }, - "date_last_updated": { "type": 6, "value": 1695423451385 }, - "date_of_expiration": { "type": 6, "value": 1695423451385 }, + "date_created": { + "type": 6, + "value": 1695423451385 + }, + "date_last_updated": { + "type": 6, + "value": 1695423451385 + }, + "date_of_expiration": { + "type": 6, + "value": 1695423451385 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -71949,9 +92421,18 @@ "total_amount": 360, "id": "1695423451505", "history_id": "1695423451505", - "date_created": { "type": 6, "value": 1695423451505 }, - "date_last_updated": { "type": 6, "value": 1695423451505 }, - "date_of_expiration": { "type": 6, "value": 1695423451505 }, + "date_created": { + "type": 6, + "value": 1695423451505 + }, + "date_last_updated": { + "type": 6, + "value": 1695423451505 + }, + "date_of_expiration": { + "type": 6, + "value": 1695423451505 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -72022,9 +92503,18 @@ "total_amount": 360, "id": "1695423451671", "history_id": "1695423451671", - "date_created": { "type": 6, "value": 1695423451671 }, - "date_last_updated": { "type": 6, "value": 1695423451671 }, - "date_of_expiration": { "type": 6, "value": 1695423451671 }, + "date_created": { + "type": 6, + "value": 1695423451671 + }, + "date_last_updated": { + "type": 6, + "value": 1695423451671 + }, + "date_of_expiration": { + "type": 6, + "value": 1695423451671 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -72094,9 +92584,18 @@ "total_amount": 8160000, "id": "1696380984974", "history_id": "1696380984974", - "date_created": { "type": 6, "value": 1696380984974 }, - "date_last_updated": { "type": 6, "value": 1696380984974 }, - "date_of_expiration": { "type": 6, "value": 1696380984974 }, + "date_created": { + "type": 6, + "value": 1696380984974 + }, + "date_last_updated": { + "type": 6, + "value": 1696380984974 + }, + "date_of_expiration": { + "type": 6, + "value": 1696380984974 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -72166,9 +92665,18 @@ "total_amount": 8160000, "id": "1696380984991", "history_id": "1696380984991", - "date_created": { "type": 6, "value": 1696380984991 }, - "date_last_updated": { "type": 6, "value": 1696380984991 }, - "date_of_expiration": { "type": 6, "value": 1696380984991 }, + "date_created": { + "type": 6, + "value": 1696380984991 + }, + "date_last_updated": { + "type": 6, + "value": 1696380984991 + }, + "date_of_expiration": { + "type": 6, + "value": 1696380984991 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -72238,9 +92746,18 @@ "total_amount": 8160000, "id": "1696380985024", "history_id": "1696380985024", - "date_created": { "type": 6, "value": 1696380985024 }, - "date_last_updated": { "type": 6, "value": 1696380985024 }, - "date_of_expiration": { "type": 6, "value": 1696380985024 }, + "date_created": { + "type": 6, + "value": 1696380985024 + }, + "date_last_updated": { + "type": 6, + "value": 1696380985024 + }, + "date_of_expiration": { + "type": 6, + "value": 1696380985024 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -72310,9 +92827,18 @@ "total_amount": 8160000, "id": "1696380985244", "history_id": "1696380985244", - "date_created": { "type": 6, "value": 1696380985244 }, - "date_last_updated": { "type": 6, "value": 1696380985244 }, - "date_of_expiration": { "type": 6, "value": 1696380985244 }, + "date_created": { + "type": 6, + "value": 1696380985244 + }, + "date_last_updated": { + "type": 6, + "value": 1696380985244 + }, + "date_of_expiration": { + "type": 6, + "value": 1696380985244 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -72382,9 +92908,18 @@ "total_amount": 8160000, "id": "1696384232144", "history_id": "1696384232144", - "date_created": { "type": 6, "value": 1696384232144 }, - "date_last_updated": { "type": 6, "value": 1696384232144 }, - "date_of_expiration": { "type": 6, "value": 1696384232144 }, + "date_created": { + "type": 6, + "value": 1696384232144 + }, + "date_last_updated": { + "type": 6, + "value": 1696384232144 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384232144 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -72454,9 +92989,18 @@ "total_amount": 8160000, "id": "1696384243583", "history_id": "1696384243583", - "date_created": { "type": 6, "value": 1696384243583 }, - "date_last_updated": { "type": 6, "value": 1696384243583 }, - "date_of_expiration": { "type": 6, "value": 1696384243583 }, + "date_created": { + "type": 6, + "value": 1696384243583 + }, + "date_last_updated": { + "type": 6, + "value": 1696384243583 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384243583 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -72526,9 +93070,18 @@ "total_amount": 8160000, "id": "1696384243588", "history_id": "1696384243588", - "date_created": { "type": 6, "value": 1696384243588 }, - "date_last_updated": { "type": 6, "value": 1696384243588 }, - "date_of_expiration": { "type": 6, "value": 1696384243588 }, + "date_created": { + "type": 6, + "value": 1696384243588 + }, + "date_last_updated": { + "type": 6, + "value": 1696384243588 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384243588 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -72598,9 +93151,18 @@ "total_amount": 8000000, "id": "1696406601868", "history_id": "1696406601868", - "date_created": { "type": 6, "value": 1696406601868 }, - "date_last_updated": { "type": 6, "value": 1696406601868 }, - "date_of_expiration": { "type": 6, "value": 1699085001847 }, + "date_created": { + "type": 6, + "value": 1696406601868 + }, + "date_last_updated": { + "type": 6, + "value": 1696406601868 + }, + "date_of_expiration": { + "type": 6, + "value": 1699085001847 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -72616,7 +93178,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history", - "content": { "type": 1, "value": {}, "revision": "lnt037cw03f1oohx7thn5p78", "revision_nr": 1, "created": 1697467110013, "modified": 1697467110013 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt037cw03f1oohx7thn5p78", + "revision_nr": 1, + "created": 1697467110013, + "modified": 1697467110013 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609/description", @@ -72633,7 +93202,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt038nc03jtoohx0bocg7ga", "revision_nr": 1, "created": 1697467110034, @@ -72642,7 +93215,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609/costs", - "content": { "type": 2, "value": {}, "revision": "lnt038nc03jsoohx587k7dh6", "revision_nr": 1, "created": 1697467110044, "modified": 1697467110044 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt038nc03jsoohx587k7dh6", + "revision_nr": 1, + "created": 1697467110044, + "modified": 1697467110044 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609", @@ -72655,7 +93235,10 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { "type": 6, "value": 1679262602609 }, + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid" @@ -72668,7 +93251,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304", - "content": { "type": 1, "value": {}, "revision": "lnt038n103jpoohxctej7npg", "revision_nr": 1, "created": 1697467110063, "modified": 1697467110063 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt038n103jpoohxctej7npg", + "revision_nr": 1, + "created": 1697467110063, + "modified": 1697467110063 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609/description", @@ -72685,7 +93275,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt038oq03jyoohxb9kbbgdg", "revision_nr": 1, "created": 1697467110084, @@ -72694,7 +93288,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609/costs", - "content": { "type": 2, "value": {}, "revision": "lnt038oq03jxoohx7uqtace4", "revision_nr": 1, "created": 1697467110095, "modified": 1697467110095 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt038oq03jxoohx7uqtace4", + "revision_nr": 1, + "created": 1697467110095, + "modified": 1697467110095 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609", @@ -72707,7 +93308,10 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { "type": 6, "value": 1679262602609 }, + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid" @@ -72720,7 +93324,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305", - "content": { "type": 1, "value": {}, "revision": "lnt038of03juoohx9zm568od", "revision_nr": 1, "created": 1697467110114, "modified": 1697467110114 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt038of03juoohx9zm568od", + "revision_nr": 1, + "created": 1697467110114, + "modified": 1697467110114 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609/description", @@ -72737,7 +93348,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt038q403k3oohxdgj5dcn7", "revision_nr": 1, "created": 1697467110133, @@ -72746,7 +93361,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609/costs", - "content": { "type": 2, "value": {}, "revision": "lnt038q403k2oohxchutbj79", "revision_nr": 1, "created": 1697467110145, "modified": 1697467110145 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt038q403k2oohxchutbj79", + "revision_nr": 1, + "created": 1697467110145, + "modified": 1697467110145 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609", @@ -72759,7 +93381,10 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { "type": 6, "value": 1679262602609 }, + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid" @@ -72772,7 +93397,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt038pu03jzoohxeyv0bhc4", "revision_nr": 1, "created": 1697467110164, "modified": 1697467110164 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt038pu03jzoohxeyv0bhc4", + "revision_nr": 1, + "created": 1697467110164, + "modified": 1697467110164 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609/description", @@ -72789,7 +93421,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt038ri03k8oohxfmwx8rsd", "revision_nr": 1, "created": 1697467110184, @@ -72798,7 +93434,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609/costs", - "content": { "type": 2, "value": {}, "revision": "lnt038ri03k7oohx06f26fh6", "revision_nr": 1, "created": 1697467110194, "modified": 1697467110194 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt038ri03k7oohx06f26fh6", + "revision_nr": 1, + "created": 1697467110194, + "modified": 1697467110194 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609", @@ -72811,11 +93454,17 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { "type": 6, "value": 1679262602609 }, + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1695423451406 } + "date_last_updated": { + "type": 6, + "value": 1695423451406 + } }, "revision": "lnt038r803k5oohx46ji4yu9", "revision_nr": 1, @@ -72825,7 +93474,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt038r803k4oohx4uuycsnd", "revision_nr": 1, "created": 1697467110214, "modified": 1697467110214 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt038r803k4oohx4uuycsnd", + "revision_nr": 1, + "created": 1697467110214, + "modified": 1697467110214 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609/description", @@ -72842,7 +93498,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt038sw03kdoohx0uqd8xjt", "revision_nr": 1, "created": 1697467110234, @@ -72851,7 +93511,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609/costs", - "content": { "type": 2, "value": {}, "revision": "lnt038sw03kcoohxfrj7gqja", "revision_nr": 1, "created": 1697467110243, "modified": 1697467110243 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt038sw03kcoohxfrj7gqja", + "revision_nr": 1, + "created": 1697467110243, + "modified": 1697467110243 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609", @@ -72864,11 +93531,17 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { "type": 6, "value": 1679262602609 }, + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1695423451526 } + "date_last_updated": { + "type": 6, + "value": 1695423451526 + } }, "revision": "lnt038sm03kaoohxg56lb151", "revision_nr": 1, @@ -72878,7 +93551,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308", - "content": { "type": 1, "value": {}, "revision": "lnt038sm03k9oohx2yn4buf5", "revision_nr": 1, "created": 1697467110264, "modified": 1697467110264 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt038sm03k9oohx2yn4buf5", + "revision_nr": 1, + "created": 1697467110264, + "modified": 1697467110264 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609/description", @@ -72895,7 +93575,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt038ub03kioohxai5s8qyv", "revision_nr": 1, "created": 1697467110285, @@ -72904,7 +93588,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609/costs", - "content": { "type": 2, "value": {}, "revision": "lnt038ub03khoohxfq9qhh5j", "revision_nr": 1, "created": 1697467110294, "modified": 1697467110294 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt038ub03khoohxfq9qhh5j", + "revision_nr": 1, + "created": 1697467110294, + "modified": 1697467110294 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609", @@ -72917,11 +93608,17 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { "type": 6, "value": 1679262602609 }, + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1695423451684 } + "date_last_updated": { + "type": 6, + "value": 1695423451684 + } }, "revision": "lnt038u003kfoohxhzak3dkp", "revision_nr": 1, @@ -72931,7 +93628,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309", - "content": { "type": 1, "value": {}, "revision": "lnt038u003keoohxgawuh9t9", "revision_nr": 1, "created": 1697467110313, "modified": 1697467110313 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt038u003keoohxgawuh9t9", + "revision_nr": 1, + "created": 1697467110313, + "modified": 1697467110313 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609/description", @@ -72948,7 +93652,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt038vo03knoohx9sol2i60", "revision_nr": 1, "created": 1697467110333, @@ -72957,7 +93665,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609/costs", - "content": { "type": 2, "value": {}, "revision": "lnt038vo03kmoohxdm977kt9", "revision_nr": 1, "created": 1697467110344, "modified": 1697467110344 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt038vo03kmoohxdm977kt9", + "revision_nr": 1, + "created": 1697467110344, + "modified": 1697467110344 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609", @@ -72970,7 +93685,10 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { "type": 6, "value": 1679262602609 }, + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL" }, @@ -72982,7 +93700,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310", - "content": { "type": 1, "value": {}, "revision": "lnt038vd03kjoohxed5fdimh", "revision_nr": 1, "created": 1697467110363, "modified": 1697467110363 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt038vd03kjoohxed5fdimh", + "revision_nr": 1, + "created": 1697467110363, + "modified": 1697467110363 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609/description", @@ -72999,7 +93724,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt038x103ksoohxcqtc6n7e", "revision_nr": 1, "created": 1697467110382, @@ -73008,7 +93737,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609/costs", - "content": { "type": 2, "value": {}, "revision": "lnt038x103kroohx7vzy5ami", "revision_nr": 1, "created": 1697467110394, "modified": 1697467110394 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt038x103kroohx7vzy5ami", + "revision_nr": 1, + "created": 1697467110394, + "modified": 1697467110394 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609", @@ -73021,7 +93757,10 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { "type": 6, "value": 1679262602609 }, + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL" }, @@ -73033,7 +93772,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311", - "content": { "type": 1, "value": {}, "revision": "lnt038wr03kooohxh7rpbzqv", "revision_nr": 1, "created": 1697467110414, "modified": 1697467110414 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt038wr03kooohxh7rpbzqv", + "revision_nr": 1, + "created": 1697467110414, + "modified": 1697467110414 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609/description", @@ -73050,7 +93796,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt038yg03kxoohx5gyoavij", "revision_nr": 1, "created": 1697467110434, @@ -73059,7 +93809,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609/costs", - "content": { "type": 2, "value": {}, "revision": "lnt038yg03kwoohxet8sbll8", "revision_nr": 1, "created": 1697467110445, "modified": 1697467110445 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt038yg03kwoohxet8sbll8", + "revision_nr": 1, + "created": 1697467110445, + "modified": 1697467110445 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609", @@ -73072,7 +93829,10 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { "type": 6, "value": 1679262602609 }, + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL" }, @@ -73084,7 +93844,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312", - "content": { "type": 1, "value": {}, "revision": "lnt038y603ktoohx7oa60b5q", "revision_nr": 1, "created": 1697467110466, "modified": 1697467110466 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt038y603ktoohx7oa60b5q", + "revision_nr": 1, + "created": 1697467110466, + "modified": 1697467110466 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609/description", @@ -73101,7 +93868,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt038zv03l2oohxba2877rj", "revision_nr": 1, "created": 1697467110485, @@ -73110,7 +93881,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609/costs", - "content": { "type": 2, "value": {}, "revision": "lnt038zv03l1oohxbi10g564", "revision_nr": 1, "created": 1697467110495, "modified": 1697467110495 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt038zv03l1oohxbi10g564", + "revision_nr": 1, + "created": 1697467110495, + "modified": 1697467110495 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609", @@ -73123,7 +93901,10 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { "type": 6, "value": 1679262602609 }, + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL" }, @@ -73135,17 +93916,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401", - "content": { "type": 1, "value": {}, "revision": "lnt038zm03kyoohx49c4bl1p", "revision_nr": 1, "created": 1697467110516, "modified": 1697467110516 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt038zm03kyoohx49c4bl1p", + "revision_nr": 1, + "created": 1697467110516, + "modified": 1697467110516 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt038n103jooohx8kbw74nm", "revision_nr": 1, "created": 1697467110527, "modified": 1697467110527 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt038n103jooohx8kbw74nm", + "revision_nr": 1, + "created": 1697467110527, + "modified": 1697467110527 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit", "content": { "type": 1, - "value": { "approvedLimit": 3000, "limitUsed": 2100, "analysisRequested": { "type": 6, "value": 1679184639579 }, "lastReview": { "type": 6, "value": 1679260956380 } }, + "value": { + "approvedLimit": 3000, + "limitUsed": 2100, + "analysisRequested": { + "type": 6, + "value": 1679184639579 + }, + "lastReview": { + "type": 6, + "value": 1679260956380 + } + }, "revision": "lnt038n103jnoohxfhp56gyy", "revision_nr": 1, "created": 1697467110537, @@ -73156,7 +93962,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/balances/IVIP", "content": { "type": 1, - "value": { "available": "9285619.00000000", "symbol": "IVIP", "value": 990 }, + "value": { + "available": "9285619.00000000", + "symbol": "IVIP", + "value": 990 + }, "revision": "lnt0391l03l4oohx2uge02jc", "revision_nr": 1, "created": 1697467110546, @@ -73165,7 +93975,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/balances", - "content": { "type": 1, "value": {}, "revision": "lnt0391l03l3oohx3ah484f7", "revision_nr": 1, "created": 1697467110556, "modified": 1697467110556 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0391l03l3oohx3ah484f7", + "revision_nr": 1, + "created": 1697467110556, + "modified": 1697467110556 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460", @@ -73176,7 +93993,10 @@ "dateValidity": 1679033074324, "totalValue": 3498.3833869132864, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1697425200000 } + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } }, "revision": "lnt037cw03f0oohxap91hd62", "revision_nr": 1, @@ -73188,7 +94008,11 @@ "path": "ivipcoin-db::__movement_wallet__/126091022706906300/balances/BRL", "content": { "type": 1, - "value": { "symbol": "BRL", "available": "454.90000000", "value": 90.844 }, + "value": { + "symbol": "BRL", + "available": "454.90000000", + "value": 90.844 + }, "revision": "lnt0392f03l7oohx7kw18d8y", "revision_nr": 1, "created": 1697467110577, @@ -73197,7 +94021,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/balances", - "content": { "type": 1, "value": {}, "revision": "lnt0392f03l6oohxeklxhztm", "revision_nr": 1, "created": 1697467110588, "modified": 1697467110588 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0392f03l6oohxeklxhztm", + "revision_nr": 1, + "created": 1697467110588, + "modified": 1697467110588 + } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266939492/description", @@ -73246,9 +94077,18 @@ "original_amount": 7, "total_amount": 7, "id": 1679266939492, - "date_created": { "type": 6, "value": 1679266939492 }, - "date_last_updated": { "type": 6, "value": 1679266939492 }, - "date_of_expiration": { "type": 6, "value": 1679266939492 }, + "date_created": { + "type": 6, + "value": 1679266939492 + }, + "date_last_updated": { + "type": 6, + "value": 1679266939492 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266939492 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73309,9 +94149,18 @@ "original_amount": 50, "total_amount": 50, "id": 1679266973884, - "date_created": { "type": 6, "value": 1679266973884 }, - "date_last_updated": { "type": 6, "value": 1679266973884 }, - "date_of_expiration": { "type": 6, "value": 1679266973884 }, + "date_created": { + "type": 6, + "value": 1679266973884 + }, + "date_last_updated": { + "type": 6, + "value": 1679266973884 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266973884 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73372,9 +94221,18 @@ "original_amount": 100, "total_amount": 100, "id": 1679267111761, - "date_created": { "type": 6, "value": 1679267111761 }, - "date_last_updated": { "type": 6, "value": 1679267111761 }, - "date_of_expiration": { "type": 6, "value": 1679267111761 }, + "date_created": { + "type": 6, + "value": 1679267111761 + }, + "date_last_updated": { + "type": 6, + "value": 1679267111761 + }, + "date_of_expiration": { + "type": 6, + "value": 1679267111761 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73435,9 +94293,18 @@ "original_amount": 25, "total_amount": 25, "id": 1679872001608, - "date_created": { "type": 6, "value": 1679872001608 }, - "date_last_updated": { "type": 6, "value": 1679872001608 }, - "date_of_expiration": { "type": 6, "value": 1679872001608 }, + "date_created": { + "type": 6, + "value": 1679872001608 + }, + "date_last_updated": { + "type": 6, + "value": 1679872001608 + }, + "date_of_expiration": { + "type": 6, + "value": 1679872001608 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73498,9 +94365,18 @@ "original_amount": 120, "total_amount": 120, "id": 1684018958586, - "date_created": { "type": 6, "value": 1684018958586 }, - "date_last_updated": { "type": 6, "value": 1684018958586 }, - "date_of_expiration": { "type": 6, "value": 1684018958586 }, + "date_created": { + "type": 6, + "value": 1684018958586 + }, + "date_last_updated": { + "type": 6, + "value": 1684018958586 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018958586 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73561,9 +94437,18 @@ "original_amount": 13, "total_amount": 13, "id": 1684348450676, - "date_created": { "type": 6, "value": 1684348450676 }, - "date_last_updated": { "type": 6, "value": 1684348450676 }, - "date_of_expiration": { "type": 6, "value": 1684348450676 }, + "date_created": { + "type": 6, + "value": 1684348450676 + }, + "date_last_updated": { + "type": 6, + "value": 1684348450676 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348450676 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73624,9 +94509,18 @@ "original_amount": 30, "total_amount": 30, "id": 1684624165029, - "date_created": { "type": 6, "value": 1684624165029 }, - "date_last_updated": { "type": 6, "value": 1684624165029 }, - "date_of_expiration": { "type": 6, "value": 1684624165029 }, + "date_created": { + "type": 6, + "value": 1684624165029 + }, + "date_last_updated": { + "type": 6, + "value": 1684624165029 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624165029 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73687,9 +94581,18 @@ "original_amount": 109.9, "total_amount": 109.9, "id": 1684624981228, - "date_created": { "type": 6, "value": 1684624981228 }, - "date_last_updated": { "type": 6, "value": 1684624981228 }, - "date_of_expiration": { "type": 6, "value": 1684624981228 }, + "date_created": { + "type": 6, + "value": 1684624981228 + }, + "date_last_updated": { + "type": 6, + "value": 1684624981228 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624981228 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73705,13 +94608,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history", - "content": { "type": 1, "value": {}, "revision": "lnt0393003l8oohx3hgad414", "revision_nr": 1, "created": 1697467110846, "modified": 1697467110846 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0393003l8oohx3hgad414", + "revision_nr": 1, + "created": 1697467110846, + "modified": 1697467110846 + } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300", "content": { "type": 1, - "value": { "dataModificacao": 1677885325302, "dateValidity": 1677929034802, "totalValue": 89.197, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677885325302, + "dateValidity": 1677929034802, + "totalValue": 89.197, + "currencyType": "USD" + }, "revision": "lnt0392e03l5oohx5989fak1", "revision_nr": 1, "created": 1697467110856, @@ -73722,7 +94637,11 @@ "path": "ivipcoin-db::__movement_wallet__/127785137141729800/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt039ag03lyoohx8s467njn", "revision_nr": 1, "created": 1697467110865, @@ -73739,7 +94658,10 @@ "balances": {}, "history": {}, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1695178800000 } + "balancesModificacao": { + "type": 6, + "value": 1695178800000 + } }, "revision": "lnt039ag03lxoohx9eqw38ui", "revision_nr": 1, @@ -73751,7 +94673,14 @@ "path": "ivipcoin-db::__movement_wallet__/127995869380983060", "content": { "type": 1, - "value": { "dataModificacao": 1678268990831, "dateValidity": 1678279790864, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678268990831, + "dateValidity": 1678279790864, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt039az03lzoohx8y9cbbqf", "revision_nr": 1, "created": 1697467110885, @@ -73762,7 +94691,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/balances/IVIP", "content": { "type": 1, - "value": { "available": "15415938.00000000", "symbol": "IVIP", "value": 3434.39 }, + "value": { + "available": "15415938.00000000", + "symbol": "IVIP", + "value": 3434.39 + }, "revision": "lnt039ba03m2oohx4u84by12", "revision_nr": 1, "created": 1697467110896, @@ -73771,7 +94704,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/balances", - "content": { "type": 1, "value": {}, "revision": "lnt039b903m1oohxgaa3hfiz", "revision_nr": 1, "created": 1697467110908, "modified": 1697467110908 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt039b903m1oohxgaa3hfiz", + "revision_nr": 1, + "created": 1697467110908, + "modified": 1697467110908 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1677726769800/description", @@ -73786,7 +94726,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1677726769800/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt039c603m6oohx5qfrhqt9", "revision_nr": 1, "created": 1697467110927, "modified": 1697467110927 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt039c603m6oohx5qfrhqt9", + "revision_nr": 1, + "created": 1697467110927, + "modified": 1697467110927 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1677726769800", @@ -73800,15 +94749,30 @@ "total_amount": 2000, "history_id": 1677726769800, "id": 1677726769800, - "date_created": { "type": 6, "value": 1677726769800 }, - "date_last_updated": { "type": 6, "value": 1677754857517 }, - "date_of_expiration": { "type": 6, "value": 1680318769800 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677754857517 }, - "money_release_date": { "type": 6, "value": 1677754857517 }, + "date_created": { + "type": 6, + "value": 1677726769800 + }, + "date_last_updated": { + "type": 6, + "value": 1677754857517 + }, + "date_of_expiration": { + "type": 6, + "value": 1680318769800 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677754857517 + }, + "money_release_date": { + "type": 6, + "value": 1677754857517 + }, "money_release_status": "approved", "wasDebited": true }, @@ -73831,7 +94795,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678032850996/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt039cz03m9oohx5hstbi6a", "revision_nr": 1, "created": 1697467110960, "modified": 1697467110960 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt039cz03m9oohx5hstbi6a", + "revision_nr": 1, + "created": 1697467110960, + "modified": 1697467110960 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678032850996", @@ -73845,15 +94818,30 @@ "total_amount": 3000, "history_id": 1678032850996, "id": 1678032850996, - "date_created": { "type": 6, "value": 1678032850996 }, - "date_last_updated": { "type": 6, "value": 1678041708688 }, - "date_of_expiration": { "type": 6, "value": 1680624850996 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678041708688 }, - "money_release_date": { "type": 6, "value": 1678041708688 }, + "date_created": { + "type": 6, + "value": 1678032850996 + }, + "date_last_updated": { + "type": 6, + "value": 1678041708688 + }, + "date_of_expiration": { + "type": 6, + "value": 1680624850996 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678041708688 + }, + "money_release_date": { + "type": 6, + "value": 1678041708688 + }, "money_release_status": "approved", "wasDebited": true }, @@ -73899,9 +94887,18 @@ "original_amount": 35378057, "total_amount": 35378057, "id": 1678076967863, - "date_created": { "type": 6, "value": 1678076967863 }, - "date_last_updated": { "type": 6, "value": 1678076967863 }, - "date_of_expiration": { "type": 6, "value": 1678076967863 }, + "date_created": { + "type": 6, + "value": 1678076967863 + }, + "date_last_updated": { + "type": 6, + "value": 1678076967863 + }, + "date_of_expiration": { + "type": 6, + "value": 1678076967863 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73931,7 +94928,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 240 + }, "revision": "lnt039ej03mgoohx7qfd2c2q", "revision_nr": 1, "created": 1697467111013, @@ -73940,11 +94941,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt039ej03mfoohxagftgvq2", "revision_nr": 1, "created": 1697467111024, "modified": 1697467111024 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt039ej03mfoohxagftgvq2", + "revision_nr": 1, + "created": 1697467111024, + "modified": 1697467111024 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425/details", - "content": { "type": 1, "value": {}, "revision": "lnt039ej03meoohxdnv3b2sr", "revision_nr": 1, "created": 1697467111033, "modified": 1697467111033 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt039ej03meoohxdnv3b2sr", + "revision_nr": 1, + "created": 1697467111033, + "modified": 1697467111033 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425", @@ -73958,9 +94973,18 @@ "total_amount": 2240, "history_id": 1679268249425, "id": 1679268249425, - "date_created": { "type": 6, "value": 1679268249425 }, - "date_last_updated": { "type": 6, "value": 1679268249425 }, - "date_of_expiration": { "type": 6, "value": 1681860249425 }, + "date_created": { + "type": 6, + "value": 1679268249425 + }, + "date_last_updated": { + "type": 6, + "value": 1679268249425 + }, + "date_of_expiration": { + "type": 6, + "value": 1681860249425 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -74009,9 +95033,18 @@ "original_amount": 10651254, "total_amount": 10651254, "id": 1679871677212, - "date_created": { "type": 6, "value": 1679871677212 }, - "date_last_updated": { "type": 6, "value": 1679871677212 }, - "date_of_expiration": { "type": 6, "value": 1679871677212 }, + "date_created": { + "type": 6, + "value": 1679871677212 + }, + "date_last_updated": { + "type": 6, + "value": 1679871677212 + }, + "date_of_expiration": { + "type": 6, + "value": 1679871677212 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -74041,7 +95074,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 120 + }, "revision": "lnt039gj03mnoohxgubt8g0w", "revision_nr": 1, "created": 1697467111084, @@ -74050,11 +95087,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt039gj03mmoohx5c5u2b5q", "revision_nr": 1, "created": 1697467111095, "modified": 1697467111095 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt039gj03mmoohx5c5u2b5q", + "revision_nr": 1, + "created": 1697467111095, + "modified": 1697467111095 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314/details", - "content": { "type": 1, "value": {}, "revision": "lnt039gj03mloohx3kvr16s1", "revision_nr": 1, "created": 1697467111105, "modified": 1697467111105 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt039gj03mloohx3kvr16s1", + "revision_nr": 1, + "created": 1697467111105, + "modified": 1697467111105 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314", @@ -74068,9 +95119,18 @@ "total_amount": 1120, "history_id": 1679872304314, "id": 1679872304314, - "date_created": { "type": 6, "value": 1679872304314 }, - "date_last_updated": { "type": 6, "value": 1679872304314 }, - "date_of_expiration": { "type": 6, "value": 1682464304314 }, + "date_created": { + "type": 6, + "value": 1679872304314 + }, + "date_last_updated": { + "type": 6, + "value": 1679872304314 + }, + "date_of_expiration": { + "type": 6, + "value": 1682464304314 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -74119,9 +95179,18 @@ "original_amount": 5325627, "total_amount": 5325627, "id": 1679872334513, - "date_created": { "type": 6, "value": 1679872334513 }, - "date_last_updated": { "type": 6, "value": 1679872334513 }, - "date_of_expiration": { "type": 6, "value": 1679872334513 }, + "date_created": { + "type": 6, + "value": 1679872334513 + }, + "date_last_updated": { + "type": 6, + "value": 1679872334513 + }, + "date_of_expiration": { + "type": 6, + "value": 1679872334513 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -74149,7 +95218,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619398300/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt039ih03msoohx3r1g0zfg", "revision_nr": 1, "created": 1697467111157, "modified": 1697467111157 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt039ih03msoohx3r1g0zfg", + "revision_nr": 1, + "created": 1697467111157, + "modified": 1697467111157 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619398300", @@ -74163,15 +95241,30 @@ "total_amount": 840, "history_id": 1682619398300, "id": 1682619398300, - "date_created": { "type": 6, "value": 1682619398300 }, - "date_last_updated": { "type": 6, "value": 1682619761924 }, - "date_of_expiration": { "type": 6, "value": 1685211398300 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1682619761924 }, - "money_release_date": { "type": 6, "value": 1682619761924 }, + "date_created": { + "type": 6, + "value": 1682619398300 + }, + "date_last_updated": { + "type": 6, + "value": 1682619761924 + }, + "date_of_expiration": { + "type": 6, + "value": 1685211398300 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1682619761924 + }, + "money_release_date": { + "type": 6, + "value": 1682619761924 + }, "money_release_status": "approved", "wasDebited": true }, @@ -74231,9 +95324,18 @@ "total_amount": 560, "id": 1682619932343, "contract_id": "1679268249425", - "date_created": { "type": 6, "value": 1682619932343 }, - "date_last_updated": { "type": 6, "value": 1682619932343 }, - "date_of_expiration": { "type": 6, "value": 1682619932343 }, + "date_created": { + "type": 6, + "value": 1682619932343 + }, + "date_last_updated": { + "type": 6, + "value": 1682619932343 + }, + "date_of_expiration": { + "type": 6, + "value": 1682619932343 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -74297,9 +95399,18 @@ "total_amount": 280, "id": 1682619932484, "contract_id": "1679872304314", - "date_created": { "type": 6, "value": 1682619932484 }, - "date_last_updated": { "type": 6, "value": 1682619932484 }, - "date_of_expiration": { "type": 6, "value": 1682619932484 }, + "date_created": { + "type": 6, + "value": 1682619932484 + }, + "date_last_updated": { + "type": 6, + "value": 1682619932484 + }, + "date_of_expiration": { + "type": 6, + "value": 1682619932484 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -74359,9 +95470,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667547180, - "date_created": { "type": 6, "value": 1685667547180 }, - "date_last_updated": { "type": 6, "value": 1685667547180 }, - "date_of_expiration": { "type": 6, "value": 1748825947180 }, + "date_created": { + "type": 6, + "value": 1685667547180 + }, + "date_last_updated": { + "type": 6, + "value": 1685667547180 + }, + "date_of_expiration": { + "type": 6, + "value": 1748825947180 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -74389,7 +95509,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1688772261924/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt039m003n4oohxc5gq420x", "revision_nr": 1, "created": 1697467111281, "modified": 1697467111281 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt039m003n4oohxc5gq420x", + "revision_nr": 1, + "created": 1697467111281, + "modified": 1697467111281 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1688772261924", @@ -74403,15 +95532,30 @@ "total_amount": 3000000, "history_id": 1688772261924, "id": 1688772261924, - "date_created": { "type": 6, "value": 1688772261924 }, - "date_last_updated": { "type": 6, "value": 1689009849267 }, - "date_of_expiration": { "type": 6, "value": 1688772261924 }, + "date_created": { + "type": 6, + "value": 1688772261924 + }, + "date_last_updated": { + "type": 6, + "value": 1689009849267 + }, + "date_of_expiration": { + "type": 6, + "value": 1688772261924 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1689009849267 }, - "money_release_date": { "type": 6, "value": 1689009849267 }, + "date_approved": { + "type": 6, + "value": 1689009849267 + }, + "money_release_date": { + "type": 6, + "value": 1689009849267 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -74447,7 +95591,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 748170 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 748170 + }, "revision": "lnt039n503naoohx6ax73tk5", "revision_nr": 1, "created": 1697467111324, @@ -74456,7 +95604,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt039n503n9oohxc3n6fx0r", "revision_nr": 1, "created": 1697467111334, "modified": 1697467111334 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt039n503n9oohxc3n6fx0r", + "revision_nr": 1, + "created": 1697467111334, + "modified": 1697467111334 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details", @@ -74490,17 +95645,32 @@ "total_amount": 24190830, "id": 1692276235458, "history_id": 1692276235458, - "date_created": { "type": 6, "value": 1692276235458 }, - "date_last_updated": { "type": 6, "value": 1692366435287 }, - "date_of_expiration": { "type": 6, "value": 1692276235458 }, + "date_created": { + "type": 6, + "value": 1692276235458 + }, + "date_last_updated": { + "type": 6, + "value": 1692366435287 + }, + "date_of_expiration": { + "type": 6, + "value": 1692276235458 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1692366435287 }, - "money_release_date": { "type": 6, "value": 1692366435287 }, + "date_approved": { + "type": 6, + "value": 1692366435287 + }, + "money_release_date": { + "type": 6, + "value": 1692366435287 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -74512,7 +95682,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history", - "content": { "type": 1, "value": {}, "revision": "lnt039bw03m3oohx5jfq1ubd", "revision_nr": 1, "created": 1697467111363, "modified": 1697467111363 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt039bw03m3oohx5jfq1ubd", + "revision_nr": 1, + "created": 1697467111363, + "modified": 1697467111363 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425/description", @@ -74529,7 +95706,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 240 + }, "revision": "lnt039ou03nhoohx7g049oby", "revision_nr": 1, "created": 1697467111385, @@ -74538,7 +95719,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425/costs", - "content": { "type": 2, "value": {}, "revision": "lnt039ou03ngoohx1l0jdd5r", "revision_nr": 1, "created": 1697467111396, "modified": 1697467111396 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt039ou03ngoohx1l0jdd5r", + "revision_nr": 1, + "created": 1697467111396, + "modified": 1697467111396 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425", @@ -74551,7 +95739,10 @@ "total_amount": 2240, "installments": 4, "installment_amount": 560, - "date_created": { "type": 6, "value": 1679268249425 }, + "date_created": { + "type": 6, + "value": 1679268249425 + }, "history_id": 1679268249425, "currency_id": "BRL", "status": "paid" @@ -74577,7 +95768,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 120 + }, "revision": "lnt039q003nloohxhsv2f91d", "revision_nr": 1, "created": 1697467111426, @@ -74586,7 +95781,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314/costs", - "content": { "type": 2, "value": {}, "revision": "lnt039q003nkoohx1t4cfjxm", "revision_nr": 1, "created": 1697467111436, "modified": 1697467111436 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt039q003nkoohx1t4cfjxm", + "revision_nr": 1, + "created": 1697467111436, + "modified": 1697467111436 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314", @@ -74599,7 +95801,10 @@ "total_amount": 1120, "installments": 4, "installment_amount": 280, - "date_created": { "type": 6, "value": 1679872304314 }, + "date_created": { + "type": 6, + "value": 1679872304314 + }, "history_id": 1679872304314, "currency_id": "BRL", "status": "paid" @@ -74612,7 +95817,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304", - "content": { "type": 1, "value": {}, "revision": "lnt039ok03ndoohxc97obd6v", "revision_nr": 1, "created": 1697467111459, "modified": 1697467111459 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt039ok03ndoohxc97obd6v", + "revision_nr": 1, + "created": 1697467111459, + "modified": 1697467111459 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425/description", @@ -74629,7 +95841,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 240 + }, "revision": "lnt039rh03nqoohx6lo6cfhs", "revision_nr": 1, "created": 1697467111479, @@ -74638,7 +95854,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425/costs", - "content": { "type": 2, "value": {}, "revision": "lnt039rh03npoohx1zfs1ggj", "revision_nr": 1, "created": 1697467111489, "modified": 1697467111489 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt039rh03npoohx1zfs1ggj", + "revision_nr": 1, + "created": 1697467111489, + "modified": 1697467111489 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425", @@ -74651,7 +95874,10 @@ "total_amount": 2240, "installments": 4, "installment_amount": 560, - "date_created": { "type": 6, "value": 1679268249425 }, + "date_created": { + "type": 6, + "value": 1679268249425 + }, "history_id": 1679268249425, "currency_id": "BRL" }, @@ -74676,7 +95902,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 120 + }, "revision": "lnt039sm03nuoohx19gn9ork", "revision_nr": 1, "created": 1697467111520, @@ -74685,7 +95915,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314/costs", - "content": { "type": 2, "value": {}, "revision": "lnt039sm03ntoohx9oli1eqq", "revision_nr": 1, "created": 1697467111531, "modified": 1697467111531 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt039sm03ntoohx9oli1eqq", + "revision_nr": 1, + "created": 1697467111531, + "modified": 1697467111531 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314", @@ -74698,7 +95935,10 @@ "total_amount": 1120, "installments": 4, "installment_amount": 280, - "date_created": { "type": 6, "value": 1679872304314 }, + "date_created": { + "type": 6, + "value": 1679872304314 + }, "history_id": 1679872304314, "currency_id": "BRL" }, @@ -74710,7 +95950,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305", - "content": { "type": 1, "value": {}, "revision": "lnt039r703nmoohxan28dix6", "revision_nr": 1, "created": 1697467111550, "modified": 1697467111550 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt039r703nmoohxan28dix6", + "revision_nr": 1, + "created": 1697467111550, + "modified": 1697467111550 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425/description", @@ -74727,7 +95974,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 240 + }, "revision": "lnt039u003nzoohx2n3000gc", "revision_nr": 1, "created": 1697467111571, @@ -74736,7 +95987,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425/costs", - "content": { "type": 2, "value": {}, "revision": "lnt039u003nyoohxa6yq8zmj", "revision_nr": 1, "created": 1697467111581, "modified": 1697467111581 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt039u003nyoohxa6yq8zmj", + "revision_nr": 1, + "created": 1697467111581, + "modified": 1697467111581 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425", @@ -74749,7 +96007,10 @@ "total_amount": 2240, "installments": 4, "installment_amount": 560, - "date_created": { "type": 6, "value": 1679268249425 }, + "date_created": { + "type": 6, + "value": 1679268249425 + }, "history_id": 1679268249425, "currency_id": "BRL" }, @@ -74774,7 +96035,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 120 + }, "revision": "lnt039v703o3oohxgoizeke0", "revision_nr": 1, "created": 1697467111613, @@ -74783,7 +96048,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314/costs", - "content": { "type": 2, "value": {}, "revision": "lnt039v703o2oohx1bkua6jg", "revision_nr": 1, "created": 1697467111623, "modified": 1697467111623 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt039v703o2oohx1bkua6jg", + "revision_nr": 1, + "created": 1697467111623, + "modified": 1697467111623 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314", @@ -74796,7 +96068,10 @@ "total_amount": 1120, "installments": 4, "installment_amount": 280, - "date_created": { "type": 6, "value": 1679872304314 }, + "date_created": { + "type": 6, + "value": 1679872304314 + }, "history_id": 1679872304314, "currency_id": "BRL" }, @@ -74808,7 +96083,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt039tq03nvoohx2na8h0a1", "revision_nr": 1, "created": 1697467111644, "modified": 1697467111644 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt039tq03nvoohx2na8h0a1", + "revision_nr": 1, + "created": 1697467111644, + "modified": 1697467111644 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425/description", @@ -74825,7 +96107,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 240 + }, "revision": "lnt039wn03o8oohxaksv7hh5", "revision_nr": 1, "created": 1697467111665, @@ -74834,7 +96120,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425/costs", - "content": { "type": 2, "value": {}, "revision": "lnt039wn03o7oohxc3vg47su", "revision_nr": 1, "created": 1697467111675, "modified": 1697467111675 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt039wn03o7oohxc3vg47su", + "revision_nr": 1, + "created": 1697467111675, + "modified": 1697467111675 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425", @@ -74847,7 +96140,10 @@ "total_amount": 2240, "installments": 4, "installment_amount": 560, - "date_created": { "type": 6, "value": 1679268249425 }, + "date_created": { + "type": 6, + "value": 1679268249425 + }, "history_id": 1679268249425, "currency_id": "BRL" }, @@ -74872,7 +96168,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 120 + }, "revision": "lnt039xt03ocoohx84xrhjhj", "revision_nr": 1, "created": 1697467111707, @@ -74881,7 +96181,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314/costs", - "content": { "type": 2, "value": {}, "revision": "lnt039xt03oboohx48va0q5h", "revision_nr": 1, "created": 1697467111717, "modified": 1697467111717 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt039xt03oboohx48va0q5h", + "revision_nr": 1, + "created": 1697467111717, + "modified": 1697467111717 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314", @@ -74894,7 +96201,10 @@ "total_amount": 1120, "installments": 4, "installment_amount": 280, - "date_created": { "type": 6, "value": 1679872304314 }, + "date_created": { + "type": 6, + "value": 1679872304314 + }, "history_id": 1679872304314, "currency_id": "BRL" }, @@ -74906,17 +96216,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt039wc03o4oohxe9vqewkr", "revision_nr": 1, "created": 1697467111737, "modified": 1697467111737 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt039wc03o4oohxe9vqewkr", + "revision_nr": 1, + "created": 1697467111737, + "modified": 1697467111737 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt039oj03ncoohx9cokad76", "revision_nr": 1, "created": 1697467111747, "modified": 1697467111747 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt039oj03ncoohx9cokad76", + "revision_nr": 1, + "created": 1697467111747, + "modified": 1697467111747 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit", "content": { "type": 1, - "value": { "approvedLimit": 10000, "limitUsed": 2250, "analysisRequested": { "type": 6, "value": 1679267023911 }, "lastReview": { "type": 6, "value": 1679267356871 } }, + "value": { + "approvedLimit": 10000, + "limitUsed": 2250, + "analysisRequested": { + "type": 6, + "value": 1679267023911 + }, + "lastReview": { + "type": 6, + "value": 1679267356871 + } + }, "revision": "lnt039oj03nboohx7jvl5e61", "revision_nr": 1, "created": 1697467111758, @@ -74927,7 +96262,16 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280", "content": { "type": 1, - "value": { "dataModificacao": 1677412042762, "dateValidity": 1678206220392, "totalValue": 6834.92, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1695870000000 } }, + "value": { + "dataModificacao": 1677412042762, + "dateValidity": 1678206220392, + "totalValue": 6834.92, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1695870000000 + } + }, "revision": "lnt039b903m0oohxdpedbl17", "revision_nr": 1, "created": 1697467111768, @@ -74947,7 +96291,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/130251464382378670/history/1684145604531/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03a0303ohoohx17z47e51", "revision_nr": 1, "created": 1697467111790, "modified": 1697467111790 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03a0303ohoohx17z47e51", + "revision_nr": 1, + "created": 1697467111790, + "modified": 1697467111790 + } }, { "path": "ivipcoin-db::__movement_wallet__/130251464382378670/history/1684145604531", @@ -74961,9 +96314,18 @@ "total_amount": 500, "history_id": 1684145604531, "id": 1684145604531, - "date_created": { "type": 6, "value": 1684145604531 }, - "date_last_updated": { "type": 6, "value": 1684145604531 }, - "date_of_expiration": { "type": 6, "value": 1686737604531 }, + "date_created": { + "type": 6, + "value": 1684145604531 + }, + "date_last_updated": { + "type": 6, + "value": 1684145604531 + }, + "date_of_expiration": { + "type": 6, + "value": 1686737604531 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -74977,13 +96339,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/130251464382378670/history", - "content": { "type": 1, "value": {}, "revision": "lnt039zs03oeoohx5hpm8cyx", "revision_nr": 1, "created": 1697467111810, "modified": 1697467111810 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt039zs03oeoohx5hpm8cyx", + "revision_nr": 1, + "created": 1697467111810, + "modified": 1697467111810 + } }, { "path": "ivipcoin-db::__movement_wallet__/130251464382378670/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt03a0y03oioohxbfel47gb", "revision_nr": 1, "created": 1697467111820, @@ -74994,7 +96367,13 @@ "path": "ivipcoin-db::__movement_wallet__/130251464382378670", "content": { "type": 1, - "value": { "dataModificacao": 1684145436275, "dateValidity": 1684145436275, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684145436275, + "dateValidity": 1684145436275, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt039zs03odoohx9fed5hex", "revision_nr": 1, "created": 1697467111831, @@ -75005,7 +96384,11 @@ "path": "ivipcoin-db::__movement_wallet__/132892661243254380/balances/BRL", "content": { "type": 1, - "value": { "symbol": "BRL", "value": 0, "available": "0.00000000" }, + "value": { + "symbol": "BRL", + "value": 0, + "available": "0.00000000" + }, "revision": "lnt03a1j03oloohxab9shvup", "revision_nr": 1, "created": 1697467111842, @@ -75016,7 +96399,11 @@ "path": "ivipcoin-db::__movement_wallet__/132892661243254380/balances/IVIP", "content": { "type": 1, - "value": { "symbol": "IVIP", "available": "1069072.00000000", "value": 37.92 }, + "value": { + "symbol": "IVIP", + "available": "1069072.00000000", + "value": 37.92 + }, "revision": "lnt03a1u03omoohx3p7d9cx7", "revision_nr": 1, "created": 1697467111851, @@ -75025,7 +96412,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/balances", - "content": { "type": 1, "value": {}, "revision": "lnt03a1j03okoohx2jtcenuo", "revision_nr": 1, "created": 1697467111861, "modified": 1697467111861 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03a1j03okoohx2jtcenuo", + "revision_nr": 1, + "created": 1697467111861, + "modified": 1697467111861 + } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1677984009002/description", @@ -75040,7 +96434,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1677984009002/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03a2n03oqoohx1eslflgt", "revision_nr": 1, "created": 1697467111881, "modified": 1697467111881 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03a2n03oqoohx1eslflgt", + "revision_nr": 1, + "created": 1697467111881, + "modified": 1697467111881 + } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1677984009002", @@ -75054,14 +96457,26 @@ "total_amount": 20, "history_id": 1677984009002, "id": 1677984009002, - "date_created": { "type": 6, "value": 1677984009002 }, - "date_last_updated": { "type": 6, "value": 1678452148101 }, - "date_of_expiration": { "type": 6, "value": 1680576009002 }, + "date_created": { + "type": 6, + "value": 1677984009002 + }, + "date_last_updated": { + "type": 6, + "value": 1678452148101 + }, + "date_of_expiration": { + "type": 6, + "value": 1680576009002 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678452148101 }, + "money_release_date": { + "type": 6, + "value": 1678452148101 + }, "money_release_status": "rejected" }, "revision": "lnt03a2d03oooohx1n2ibaqh", @@ -75083,7 +96498,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119185082/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03a3l03otoohxdzyuaar9", "revision_nr": 1, "created": 1697467111915, "modified": 1697467111915 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03a3l03otoohxdzyuaar9", + "revision_nr": 1, + "created": 1697467111915, + "modified": 1697467111915 + } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119185082", @@ -75097,9 +96521,18 @@ "total_amount": 200, "history_id": 1678119185082, "id": 1678119185082, - "date_created": { "type": 6, "value": 1678119185082 }, - "date_last_updated": { "type": 6, "value": 1678119185082 }, - "date_of_expiration": { "type": 6, "value": 1680711185082 }, + "date_created": { + "type": 6, + "value": 1678119185082 + }, + "date_last_updated": { + "type": 6, + "value": 1678119185082 + }, + "date_of_expiration": { + "type": 6, + "value": 1680711185082 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -75124,7 +96557,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119441612/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03a4g03owoohxhtvwgepl", "revision_nr": 1, "created": 1697467111947, "modified": 1697467111947 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03a4g03owoohxhtvwgepl", + "revision_nr": 1, + "created": 1697467111947, + "modified": 1697467111947 + } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119441612", @@ -75138,15 +96580,30 @@ "total_amount": 200, "history_id": 1678119441612, "id": 1678119441612, - "date_created": { "type": 6, "value": 1678119441612 }, - "date_last_updated": { "type": 6, "value": 1678372266897 }, - "date_of_expiration": { "type": 6, "value": 1680711441612 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678372266897 }, - "money_release_date": { "type": 6, "value": 1678372266897 }, + "date_created": { + "type": 6, + "value": 1678119441612 + }, + "date_last_updated": { + "type": 6, + "value": 1678372266897 + }, + "date_of_expiration": { + "type": 6, + "value": 1680711441612 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678372266897 + }, + "money_release_date": { + "type": 6, + "value": 1678372266897 + }, "money_release_status": "approved", "wasDebited": true }, @@ -75192,9 +96649,18 @@ "original_amount": 1069072, "total_amount": 1069072, "id": 1679940518294, - "date_created": { "type": 6, "value": 1679940518294 }, - "date_last_updated": { "type": 6, "value": 1679940518294 }, - "date_of_expiration": { "type": 6, "value": 1679940518294 }, + "date_created": { + "type": 6, + "value": 1679940518294 + }, + "date_last_updated": { + "type": 6, + "value": 1679940518294 + }, + "date_of_expiration": { + "type": 6, + "value": 1679940518294 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -75211,13 +96677,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history", - "content": { "type": 1, "value": {}, "revision": "lnt03a2d03onoohxg5s60cxq", "revision_nr": 1, "created": 1697467111989, "modified": 1697467111989 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03a2d03onoohxg5s60cxq", + "revision_nr": 1, + "created": 1697467111989, + "modified": 1697467111989 + } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380", "content": { "type": 1, - "value": { "dataModificacao": 1677983983862, "dateValidity": 1678983329949, "totalValue": 37.76, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677983983862, + "dateValidity": 1678983329949, + "totalValue": 37.76, + "currencyType": "USD" + }, "revision": "lnt03a1j03ojoohxfg73hlsx", "revision_nr": 1, "created": 1697467112000, @@ -75228,7 +96706,11 @@ "path": "ivipcoin-db::__movement_wallet__/133675054149021250/balances/IVIP", "content": { "type": 1, - "value": { "available": "30608.00000000", "symbol": "IVIP", "value": 3.42 }, + "value": { + "available": "30608.00000000", + "symbol": "IVIP", + "value": 3.42 + }, "revision": "lnt03a6803p1oohx7t3cdnd8", "revision_nr": 1, "created": 1697467112011, @@ -75239,7 +96721,11 @@ "path": "ivipcoin-db::__movement_wallet__/133675054149021250/balances/BRL", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, "revision": "lnt03a6j03p2oohxe0tr1wil", "revision_nr": 1, "created": 1697467112023, @@ -75248,13 +96734,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/balances", - "content": { "type": 1, "value": {}, "revision": "lnt03a6803p0oohxffkk3gjf", "revision_nr": 1, "created": 1697467112034, "modified": 1697467112034 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03a6803p0oohxffkk3gjf", + "revision_nr": 1, + "created": 1697467112034, + "modified": 1697467112034 + } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694034023188 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694034023188 + } + }, "revision": "lnt03a7603p5oohxaqrebes4", "revision_nr": 1, "created": 1697467112044, @@ -75316,8 +96815,14 @@ "total_amount": 20, "id": 1691442023188, "history_id": 1691442023188, - "date_created": { "type": 6, "value": 1691442023188 }, - "date_last_updated": { "type": 6, "value": 1691442023188 }, + "date_created": { + "type": 6, + "value": 1691442023188 + }, + "date_last_updated": { + "type": 6, + "value": 1691442023188 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -75335,7 +96840,13 @@ "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694125856606 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694125856606 + } + }, "revision": "lnt03a8n03paoohxcwyhfaos", "revision_nr": 1, "created": 1697467112097, @@ -75397,16 +96908,28 @@ "total_amount": 20, "id": 1691533856606, "history_id": 1691533856606, - "date_created": { "type": 6, "value": 1691533856606 }, - "date_last_updated": { "type": 6, "value": 1691537051872 }, + "date_created": { + "type": 6, + "value": 1691533856606 + }, + "date_last_updated": { + "type": 6, + "value": 1691537051872 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691537051872 }, - "money_release_date": { "type": 6, "value": 1691537051872 }, + "date_approved": { + "type": 6, + "value": 1691537051872 + }, + "money_release_date": { + "type": 6, + "value": 1691537051872 + }, "money_release_status": "approved", "wasDebited": true }, @@ -75460,9 +96983,18 @@ "total_amount": 30608, "id": 1691597759364, "history_id": 1691597759364, - "date_created": { "type": 6, "value": 1691597759364 }, - "date_last_updated": { "type": 6, "value": 1691597759364 }, - "date_of_expiration": { "type": 6, "value": 1691597759364 }, + "date_created": { + "type": 6, + "value": 1691597759364 + }, + "date_last_updated": { + "type": 6, + "value": 1691597759364 + }, + "date_of_expiration": { + "type": 6, + "value": 1691597759364 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -75479,13 +97011,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history", - "content": { "type": 1, "value": {}, "revision": "lnt03a7603p3oohxb3o8298f", "revision_nr": 1, "created": 1697467112180, "modified": 1697467112180 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03a7603p3oohxb3o8298f", + "revision_nr": 1, + "created": 1697467112180, + "modified": 1697467112180 + } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt03ab803phoohxgn5ofxr9", "revision_nr": 1, "created": 1697467112192, @@ -75496,7 +97039,15 @@ "path": "ivipcoin-db::__movement_wallet__/133675054149021250", "content": { "type": 1, - "value": { "dataModificacao": 1691441898494, "dateValidity": 1691441898538, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1691722800000 } }, + "value": { + "dataModificacao": 1691441898494, + "dateValidity": 1691441898538, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1691722800000 + } + }, "revision": "lnt03a6803ozoohxfj432kuw", "revision_nr": 1, "created": 1697467112203, @@ -75516,7 +97067,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689202732019/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03ac503pmoohx2w7ugl7u", "revision_nr": 1, "created": 1697467112223, "modified": 1697467112223 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03ac503pmoohx2w7ugl7u", + "revision_nr": 1, + "created": 1697467112223, + "modified": 1697467112223 + } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689202732019", @@ -75530,9 +97090,18 @@ "total_amount": 20, "history_id": 1689202732019, "id": 1689202732019, - "date_created": { "type": 6, "value": 1689202732019 }, - "date_last_updated": { "type": 6, "value": 1689202732019 }, - "date_of_expiration": { "type": 6, "value": 1691794732019 }, + "date_created": { + "type": 6, + "value": 1689202732019 + }, + "date_last_updated": { + "type": 6, + "value": 1689202732019 + }, + "date_of_expiration": { + "type": 6, + "value": 1691794732019 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -75557,7 +97126,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455294552/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03ad003ppoohx2c1ae867", "revision_nr": 1, "created": 1697467112256, "modified": 1697467112256 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03ad003ppoohx2c1ae867", + "revision_nr": 1, + "created": 1697467112256, + "modified": 1697467112256 + } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455294552", @@ -75571,9 +97149,18 @@ "total_amount": 20, "history_id": 1689455294552, "id": 1689455294552, - "date_created": { "type": 6, "value": 1689455294552 }, - "date_last_updated": { "type": 6, "value": 1689455294552 }, - "date_of_expiration": { "type": 6, "value": 1692047294552 }, + "date_created": { + "type": 6, + "value": 1689455294552 + }, + "date_last_updated": { + "type": 6, + "value": 1689455294552 + }, + "date_of_expiration": { + "type": 6, + "value": 1692047294552 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -75598,7 +97185,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455325352/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03adx03psoohx069d05av", "revision_nr": 1, "created": 1697467112288, "modified": 1697467112288 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03adx03psoohx069d05av", + "revision_nr": 1, + "created": 1697467112288, + "modified": 1697467112288 + } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455325352", @@ -75612,9 +97208,18 @@ "total_amount": 20, "history_id": 1689455325352, "id": 1689455325352, - "date_created": { "type": 6, "value": 1689455325352 }, - "date_last_updated": { "type": 6, "value": 1689455325352 }, - "date_of_expiration": { "type": 6, "value": 1692047325352 }, + "date_created": { + "type": 6, + "value": 1689455325352 + }, + "date_last_updated": { + "type": 6, + "value": 1689455325352 + }, + "date_of_expiration": { + "type": 6, + "value": 1692047325352 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -75628,13 +97233,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history", - "content": { "type": 1, "value": {}, "revision": "lnt03abv03pjoohx8prlhia4", "revision_nr": 1, "created": 1697467112307, "modified": 1697467112307 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03abv03pjoohx8prlhia4", + "revision_nr": 1, + "created": 1697467112307, + "modified": 1697467112307 + } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt03aer03ptoohx75z2hns9", "revision_nr": 1, "created": 1697467112318, @@ -75645,7 +97261,13 @@ "path": "ivipcoin-db::__movement_wallet__/133736879099726860", "content": { "type": 1, - "value": { "dataModificacao": 1689199381511, "dateValidity": 1689199381511, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1689199381511, + "dateValidity": 1689199381511, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt03abv03pioohx3epgcmib", "revision_nr": 1, "created": 1697467112329, @@ -75665,7 +97287,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/134682120797451790/history/1684183743876/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03afo03pyoohxd0wv327l", "revision_nr": 1, "created": 1697467112351, "modified": 1697467112351 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03afo03pyoohxd0wv327l", + "revision_nr": 1, + "created": 1697467112351, + "modified": 1697467112351 + } }, { "path": "ivipcoin-db::__movement_wallet__/134682120797451790/history/1684183743876", @@ -75679,9 +97310,18 @@ "total_amount": 1700, "history_id": 1684183743876, "id": 1684183743876, - "date_created": { "type": 6, "value": 1684183743876 }, - "date_last_updated": { "type": 6, "value": 1684183743876 }, - "date_of_expiration": { "type": 6, "value": 1686775743876 }, + "date_created": { + "type": 6, + "value": 1684183743876 + }, + "date_last_updated": { + "type": 6, + "value": 1684183743876 + }, + "date_of_expiration": { + "type": 6, + "value": 1686775743876 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -75695,13 +97335,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/134682120797451790/history", - "content": { "type": 1, "value": {}, "revision": "lnt03afd03pvoohx74087m53", "revision_nr": 1, "created": 1697467112372, "modified": 1697467112372 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03afd03pvoohx74087m53", + "revision_nr": 1, + "created": 1697467112372, + "modified": 1697467112372 + } }, { "path": "ivipcoin-db::__movement_wallet__/134682120797451790/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt03agk03pzoohx5y4ubwol", "revision_nr": 1, "created": 1697467112382, @@ -75712,7 +97363,13 @@ "path": "ivipcoin-db::__movement_wallet__/134682120797451790", "content": { "type": 1, - "value": { "dataModificacao": 1684171343507, "dateValidity": 1684171343507, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684171343507, + "dateValidity": 1684171343507, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt03afd03puoohx3z171n7d", "revision_nr": 1, "created": 1697467112393, @@ -75723,7 +97380,14 @@ "path": "ivipcoin-db::__movement_wallet__/137445448878708240", "content": { "type": 1, - "value": { "dataModificacao": 1678373632630, "dateValidity": 1678388032664, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678373632630, + "dateValidity": 1678388032664, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt03ah503q0oohxe53c4jrv", "revision_nr": 1, "created": 1697467112404, @@ -75743,7 +97407,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138488500273925570/history/1689208709356/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03ahq03q5oohx68xhde85", "revision_nr": 1, "created": 1697467112424, "modified": 1697467112424 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03ahq03q5oohx68xhde85", + "revision_nr": 1, + "created": 1697467112424, + "modified": 1697467112424 + } }, { "path": "ivipcoin-db::__movement_wallet__/138488500273925570/history/1689208709356", @@ -75757,9 +97430,18 @@ "total_amount": 20, "history_id": 1689208709356, "id": 1689208709356, - "date_created": { "type": 6, "value": 1689208709356 }, - "date_last_updated": { "type": 6, "value": 1689208709356 }, - "date_of_expiration": { "type": 6, "value": 1691800709356 }, + "date_created": { + "type": 6, + "value": 1689208709356 + }, + "date_last_updated": { + "type": 6, + "value": 1689208709356 + }, + "date_of_expiration": { + "type": 6, + "value": 1691800709356 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -75773,13 +97455,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138488500273925570/history", - "content": { "type": 1, "value": {}, "revision": "lnt03ahg03q2oohx9tpg44e2", "revision_nr": 1, "created": 1697467112446, "modified": 1697467112446 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03ahg03q2oohx9tpg44e2", + "revision_nr": 1, + "created": 1697467112446, + "modified": 1697467112446 + } }, { "path": "ivipcoin-db::__movement_wallet__/138488500273925570/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt03aim03q6oohxefjz69y7", "revision_nr": 1, "created": 1697467112457, @@ -75790,7 +97483,13 @@ "path": "ivipcoin-db::__movement_wallet__/138488500273925570", "content": { "type": 1, - "value": { "dataModificacao": 1689183505496, "dateValidity": 1689183505496, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1689183505496, + "dateValidity": 1689183505496, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt03ahg03q1oohx1xvn4una", "revision_nr": 1, "created": 1697467112467, @@ -75801,7 +97500,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/balances/IVIP", "content": { "type": 1, - "value": { "available": "919038.84000000", "symbol": "IVIP", "value": 654.99 }, + "value": { + "available": "919038.84000000", + "symbol": "IVIP", + "value": 654.99 + }, "revision": "lnt03aj803q9oohx5od8079g", "revision_nr": 1, "created": 1697467112477, @@ -75810,7 +97513,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/balances", - "content": { "type": 1, "value": {}, "revision": "lnt03aj803q8oohxe4kag45i", "revision_nr": 1, "created": 1697467112488, "modified": 1697467112488 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03aj803q8oohxe4kag45i", + "revision_nr": 1, + "created": 1697467112488, + "modified": 1697467112488 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1677847333011/description", @@ -75825,7 +97535,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1677847333011/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03ak203qdoohx86zb09xn", "revision_nr": 1, "created": 1697467112510, "modified": 1697467112510 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03ak203qdoohx86zb09xn", + "revision_nr": 1, + "created": 1697467112510, + "modified": 1697467112510 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1677847333011", @@ -75839,15 +97558,30 @@ "total_amount": 1000, "history_id": 1677847333011, "id": 1677847333011, - "date_created": { "type": 6, "value": 1677847333011 }, - "date_last_updated": { "type": 6, "value": 1677860564643 }, - "date_of_expiration": { "type": 6, "value": 1680439333011 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677860564643 }, - "money_release_date": { "type": 6, "value": 1677860564643 }, + "date_created": { + "type": 6, + "value": 1677847333011 + }, + "date_last_updated": { + "type": 6, + "value": 1677860564643 + }, + "date_of_expiration": { + "type": 6, + "value": 1680439333011 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677860564643 + }, + "money_release_date": { + "type": 6, + "value": 1677860564643 + }, "money_release_status": "approved", "wasDebited": true }, @@ -75893,9 +97627,18 @@ "original_amount": 7131208, "total_amount": 7131208, "id": 1678180078100, - "date_created": { "type": 6, "value": 1678180078100 }, - "date_last_updated": { "type": 6, "value": 1678180078100 }, - "date_of_expiration": { "type": 6, "value": 1678180078100 }, + "date_created": { + "type": 6, + "value": 1678180078100 + }, + "date_last_updated": { + "type": 6, + "value": 1678180078100 + }, + "date_of_expiration": { + "type": 6, + "value": 1678180078100 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -75957,9 +97700,18 @@ "original_amount": 2000, "total_amount": 2000, "id": 1678198835623, - "date_created": { "type": 6, "value": 1678198835623 }, - "date_last_updated": { "type": 6, "value": 1678198835623 }, - "date_of_expiration": { "type": 6, "value": 1678198835623 }, + "date_created": { + "type": 6, + "value": 1678198835623 + }, + "date_last_updated": { + "type": 6, + "value": 1678198835623 + }, + "date_of_expiration": { + "type": 6, + "value": 1678198835623 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76020,9 +97772,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1678228246387, - "date_created": { "type": 6, "value": 1678228246387 }, - "date_last_updated": { "type": 6, "value": 1678228246387 }, - "date_of_expiration": { "type": 6, "value": 1678228246387 }, + "date_created": { + "type": 6, + "value": 1678228246387 + }, + "date_last_updated": { + "type": 6, + "value": 1678228246387 + }, + "date_of_expiration": { + "type": 6, + "value": 1678228246387 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76083,9 +97844,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1679266874503, - "date_created": { "type": 6, "value": 1679266874503 }, - "date_last_updated": { "type": 6, "value": 1679266874503 }, - "date_of_expiration": { "type": 6, "value": 1679266874503 }, + "date_created": { + "type": 6, + "value": 1679266874503 + }, + "date_last_updated": { + "type": 6, + "value": 1679266874503 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266874503 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76135,9 +97905,18 @@ "original_amount": 23286153, "total_amount": 23286153, "id": 1679267008673, - "date_created": { "type": 6, "value": 1679267008673 }, - "date_last_updated": { "type": 6, "value": 1679267008673 }, - "date_of_expiration": { "type": 6, "value": 1679267008673 }, + "date_created": { + "type": 6, + "value": 1679267008673 + }, + "date_last_updated": { + "type": 6, + "value": 1679267008673 + }, + "date_of_expiration": { + "type": 6, + "value": 1679267008673 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76167,7 +97946,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03aot03qvoohxg3p38upx", "revision_nr": 1, "created": 1697467112680, @@ -76176,11 +97959,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03aot03quoohxemfj8kyl", "revision_nr": 1, "created": 1697467112690, "modified": 1697467112690 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03aot03quoohxemfj8kyl", + "revision_nr": 1, + "created": 1697467112690, + "modified": 1697467112690 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547/details", - "content": { "type": 1, "value": {}, "revision": "lnt03aot03qtoohx3mzldrln", "revision_nr": 1, "created": 1697467112700, "modified": 1697467112700 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03aot03qtoohx3mzldrln", + "revision_nr": 1, + "created": 1697467112700, + "modified": 1697467112700 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547", @@ -76194,9 +97991,18 @@ "total_amount": 12400, "history_id": 1684019947547, "id": 1684019947547, - "date_created": { "type": 6, "value": 1684019947547 }, - "date_last_updated": { "type": 6, "value": 1684019947547 }, - "date_of_expiration": { "type": 6, "value": 1686611947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, + "date_last_updated": { + "type": 6, + "value": 1684019947547 + }, + "date_of_expiration": { + "type": 6, + "value": 1686611947547 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -76256,9 +98062,18 @@ "original_amount": 1040, "total_amount": 1040, "id": 1684348689379, - "date_created": { "type": 6, "value": 1684348689379 }, - "date_last_updated": { "type": 6, "value": 1684348689379 }, - "date_of_expiration": { "type": 6, "value": 1684348689379 }, + "date_created": { + "type": 6, + "value": 1684348689379 + }, + "date_last_updated": { + "type": 6, + "value": 1684348689379 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348689379 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76308,9 +98123,18 @@ "original_amount": 53772878, "total_amount": 53772878, "id": 1684624162871, - "date_created": { "type": 6, "value": 1684624162871 }, - "date_last_updated": { "type": 6, "value": 1684624162871 }, - "date_of_expiration": { "type": 6, "value": 1684624162871 }, + "date_created": { + "type": 6, + "value": 1684624162871 + }, + "date_last_updated": { + "type": 6, + "value": 1684624162871 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624162871 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76372,9 +98196,18 @@ "original_amount": 258.1, "total_amount": 258.1, "id": 1684624267520, - "date_created": { "type": 6, "value": 1684624267520 }, - "date_last_updated": { "type": 6, "value": 1684624267520 }, - "date_of_expiration": { "type": 6, "value": 1684624267520 }, + "date_created": { + "type": 6, + "value": 1684624267520 + }, + "date_last_updated": { + "type": 6, + "value": 1684624267520 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624267520 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76424,9 +98257,18 @@ "original_amount": 1257135, "total_amount": 1257135, "id": 1684624311448, - "date_created": { "type": 6, "value": 1684624311448 }, - "date_last_updated": { "type": 6, "value": 1684624311448 }, - "date_of_expiration": { "type": 6, "value": 1684624311448 }, + "date_created": { + "type": 6, + "value": 1684624311448 + }, + "date_last_updated": { + "type": 6, + "value": 1684624311448 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624311448 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76488,9 +98330,18 @@ "original_amount": 12.600000000000001, "total_amount": 12.600000000000001, "id": 1684624493050, - "date_created": { "type": 6, "value": 1684624493050 }, - "date_last_updated": { "type": 6, "value": 1684624493050 }, - "date_of_expiration": { "type": 6, "value": 1684624493050 }, + "date_created": { + "type": 6, + "value": 1684624493050 + }, + "date_last_updated": { + "type": 6, + "value": 1684624493050 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624493050 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76551,9 +98402,18 @@ "original_amount": 13, "total_amount": 13, "id": 1684627629023, - "date_created": { "type": 6, "value": 1684627629023 }, - "date_last_updated": { "type": 6, "value": 1684627629023 }, - "date_of_expiration": { "type": 6, "value": 1684627629023 }, + "date_created": { + "type": 6, + "value": 1684627629023 + }, + "date_last_updated": { + "type": 6, + "value": 1684627629023 + }, + "date_of_expiration": { + "type": 6, + "value": 1684627629023 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76614,9 +98474,18 @@ "original_amount": 3.2, "total_amount": 3.2, "id": 1684692136128, - "date_created": { "type": 6, "value": 1684692136128 }, - "date_last_updated": { "type": 6, "value": 1684692136128 }, - "date_of_expiration": { "type": 6, "value": 1684692136128 }, + "date_created": { + "type": 6, + "value": 1684692136128 + }, + "date_last_updated": { + "type": 6, + "value": 1684692136128 + }, + "date_of_expiration": { + "type": 6, + "value": 1684692136128 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76666,9 +98535,18 @@ "original_amount": 139785, "total_amount": 139785, "id": 1684710449691, - "date_created": { "type": 6, "value": 1684710449691 }, - "date_last_updated": { "type": 6, "value": 1684710449691 }, - "date_of_expiration": { "type": 6, "value": 1684710449691 }, + "date_created": { + "type": 6, + "value": 1684710449691 + }, + "date_last_updated": { + "type": 6, + "value": 1684710449691 + }, + "date_of_expiration": { + "type": 6, + "value": 1684710449691 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76696,7 +98574,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1689025596946/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03awm03rjoohxgd2q2ebr", "revision_nr": 1, "created": 1697467112961, "modified": 1697467112961 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03awm03rjoohxgd2q2ebr", + "revision_nr": 1, + "created": 1697467112961, + "modified": 1697467112961 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1689025596946", @@ -76710,9 +98597,18 @@ "total_amount": 30550000, "history_id": 1689025596946, "id": 1689025596946, - "date_created": { "type": 6, "value": 1689025596946 }, - "date_last_updated": { "type": 6, "value": 1689025596946 }, - "date_of_expiration": { "type": 6, "value": 1689025596946 }, + "date_created": { + "type": 6, + "value": 1689025596946 + }, + "date_last_updated": { + "type": 6, + "value": 1689025596946 + }, + "date_of_expiration": { + "type": 6, + "value": 1689025596946 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -76737,7 +98633,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690515792985/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03axl03rmoohxdjig3zz7", "revision_nr": 1, "created": 1697467112997, "modified": 1697467112997 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03axl03rmoohxdjig3zz7", + "revision_nr": 1, + "created": 1697467112997, + "modified": 1697467112997 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690515792985", @@ -76751,15 +98656,30 @@ "total_amount": 48707317, "history_id": 1690515792985, "id": 1690515792985, - "date_created": { "type": 6, "value": 1690515792985 }, - "date_last_updated": { "type": 6, "value": 1690515792985 }, - "date_of_expiration": { "type": 6, "value": 1690515792985 }, + "date_created": { + "type": 6, + "value": 1690515792985 + }, + "date_last_updated": { + "type": 6, + "value": 1690515792985 + }, + "date_of_expiration": { + "type": 6, + "value": 1690515792985 + }, "operation_type": "regular_payment", "status": "refunded", "status_detail": "cc_discounted_due_default", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1690515792985 }, - "money_release_date": { "type": 6, "value": 1690515792985 }, + "date_approved": { + "type": 6, + "value": 1690515792985 + }, + "money_release_date": { + "type": 6, + "value": 1690515792985 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -76795,7 +98715,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 1047600 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 1047600 + }, "revision": "lnt03ayv03rsoohx0h4j3g9t", "revision_nr": 1, "created": 1697467113041, @@ -76804,7 +98728,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03ayv03rroohxeybu50xf", "revision_nr": 1, "created": 1697467113051, "modified": 1697467113051 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03ayv03rroohxeybu50xf", + "revision_nr": 1, + "created": 1697467113051, + "modified": 1697467113051 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details", @@ -76838,17 +98769,32 @@ "total_amount": 34920000, "id": 1690812074851, "history_id": 1690812074851, - "date_created": { "type": 6, "value": 1690812074851 }, - "date_last_updated": { "type": 6, "value": 1691184433764 }, - "date_of_expiration": { "type": 6, "value": 1690812074851 }, + "date_created": { + "type": 6, + "value": 1690812074851 + }, + "date_last_updated": { + "type": 6, + "value": 1691184433764 + }, + "date_of_expiration": { + "type": 6, + "value": 1690812074851 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1691184433764 }, - "money_release_date": { "type": 6, "value": 1691184433764 }, + "date_approved": { + "type": 6, + "value": 1691184433764 + }, + "money_release_date": { + "type": 6, + "value": 1691184433764 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -76913,9 +98859,18 @@ "total_amount": 1959842, "id": 1691235380464, "history_id": 1691235380464, - "date_created": { "type": 6, "value": 1691235380464 }, - "date_last_updated": { "type": 6, "value": 1691235380464 }, - "date_of_expiration": { "type": 6, "value": 1693913780463 }, + "date_created": { + "type": 6, + "value": 1691235380464 + }, + "date_last_updated": { + "type": 6, + "value": 1691235380464 + }, + "date_of_expiration": { + "type": 6, + "value": 1693913780463 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76984,9 +98939,18 @@ "total_amount": 1999038.84, "id": "1693914295943", "history_id": "1693914295943", - "date_created": { "type": 6, "value": 1693914295943 }, - "date_last_updated": { "type": 6, "value": 1693914295943 }, - "date_of_expiration": { "type": 6, "value": 1693914295943 }, + "date_created": { + "type": 6, + "value": 1693914295943 + }, + "date_last_updated": { + "type": 6, + "value": 1693914295943 + }, + "date_of_expiration": { + "type": 6, + "value": 1693914295943 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -77002,7 +98966,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history", - "content": { "type": 1, "value": {}, "revision": "lnt03ajs03qaoohxcaj9fbio", "revision_nr": 1, "created": 1697467113169, "modified": 1697467113169 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03ajs03qaoohxcaj9fbio", + "revision_nr": 1, + "created": 1697467113169, + "modified": 1697467113169 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547/description", @@ -77019,7 +98990,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03b2z03s7oohxe8k99xk3", "revision_nr": 1, "created": 1697467113195, @@ -77028,7 +99003,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03b2z03s6oohx1eew2jz7", "revision_nr": 1, "created": 1697467113209, "modified": 1697467113209 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03b2z03s6oohx1eew2jz7", + "revision_nr": 1, + "created": 1697467113209, + "modified": 1697467113209 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547", @@ -77041,7 +99023,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77054,7 +99039,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt03b2p03s3oohx6tl992qg", "revision_nr": 1, "created": 1697467113229, "modified": 1697467113229 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03b2p03s3oohx6tl992qg", + "revision_nr": 1, + "created": 1697467113229, + "modified": 1697467113229 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547/description", @@ -77071,7 +99063,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03b4n03scoohx4c860lnb", "revision_nr": 1, "created": 1697467113250, @@ -77080,7 +99076,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03b4n03sboohx636d5zoc", "revision_nr": 1, "created": 1697467113262, "modified": 1697467113262 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03b4n03sboohx636d5zoc", + "revision_nr": 1, + "created": 1697467113262, + "modified": 1697467113262 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547", @@ -77093,7 +99096,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77106,7 +99112,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt03b4d03s8oohx21nr1jk7", "revision_nr": 1, "created": 1697467113284, "modified": 1697467113284 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03b4d03s8oohx21nr1jk7", + "revision_nr": 1, + "created": 1697467113284, + "modified": 1697467113284 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547/description", @@ -77123,7 +99136,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03b6603shoohxd2pk1hei", "revision_nr": 1, "created": 1697467113304, @@ -77132,7 +99149,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03b6603sgoohxfg3f5sh3", "revision_nr": 1, "created": 1697467113315, "modified": 1697467113315 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03b6603sgoohxfg3f5sh3", + "revision_nr": 1, + "created": 1697467113315, + "modified": 1697467113315 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547", @@ -77145,7 +99169,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77158,7 +99185,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308", - "content": { "type": 1, "value": {}, "revision": "lnt03b5w03sdoohxear7eaht", "revision_nr": 1, "created": 1697467113337, "modified": 1697467113337 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03b5w03sdoohxear7eaht", + "revision_nr": 1, + "created": 1697467113337, + "modified": 1697467113337 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547/description", @@ -77175,7 +99209,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03b7o03smoohx0exh0i5a", "revision_nr": 1, "created": 1697467113358, @@ -77184,7 +99222,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03b7o03sloohx36vff1n0", "revision_nr": 1, "created": 1697467113369, "modified": 1697467113369 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03b7o03sloohx36vff1n0", + "revision_nr": 1, + "created": 1697467113369, + "modified": 1697467113369 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547", @@ -77197,7 +99242,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77210,7 +99258,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309", - "content": { "type": 1, "value": {}, "revision": "lnt03b7d03sioohxg2yk3a49", "revision_nr": 1, "created": 1697467113390, "modified": 1697467113390 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03b7d03sioohxg2yk3a49", + "revision_nr": 1, + "created": 1697467113390, + "modified": 1697467113390 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547/description", @@ -77227,7 +99282,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03b9503sroohx0uea6lex", "revision_nr": 1, "created": 1697467113412, @@ -77236,7 +99295,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03b9503sqoohxe2z9fgfg", "revision_nr": 1, "created": 1697467113422, "modified": 1697467113422 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03b9503sqoohxe2z9fgfg", + "revision_nr": 1, + "created": 1697467113422, + "modified": 1697467113422 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547", @@ -77249,7 +99315,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77262,7 +99331,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310", - "content": { "type": 1, "value": {}, "revision": "lnt03b8u03snoohxg0wa92so", "revision_nr": 1, "created": 1697467113444, "modified": 1697467113444 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03b8u03snoohxg0wa92so", + "revision_nr": 1, + "created": 1697467113444, + "modified": 1697467113444 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547/description", @@ -77279,7 +99355,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03ban03swoohxc36peyz1", "revision_nr": 1, "created": 1697467113465, @@ -77288,7 +99368,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03ban03svoohx2rvsct5d", "revision_nr": 1, "created": 1697467113475, "modified": 1697467113475 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03ban03svoohx2rvsct5d", + "revision_nr": 1, + "created": 1697467113475, + "modified": 1697467113475 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547", @@ -77301,7 +99388,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77314,7 +99404,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311", - "content": { "type": 1, "value": {}, "revision": "lnt03bac03ssoohx7zqw4e0j", "revision_nr": 1, "created": 1697467113496, "modified": 1697467113496 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03bac03ssoohx7zqw4e0j", + "revision_nr": 1, + "created": 1697467113496, + "modified": 1697467113496 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547/description", @@ -77331,7 +99428,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03bc403t1oohxbze75ziu", "revision_nr": 1, "created": 1697467113518, @@ -77340,7 +99441,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03bc403t0oohx1razag52", "revision_nr": 1, "created": 1697467113529, "modified": 1697467113529 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03bc403t0oohx1razag52", + "revision_nr": 1, + "created": 1697467113529, + "modified": 1697467113529 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547", @@ -77353,7 +99461,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77366,7 +99477,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312", - "content": { "type": 1, "value": {}, "revision": "lnt03bbs03sxoohxgjm3ckp4", "revision_nr": 1, "created": 1697467113549, "modified": 1697467113549 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03bbs03sxoohxgjm3ckp4", + "revision_nr": 1, + "created": 1697467113549, + "modified": 1697467113549 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547/description", @@ -77383,7 +99501,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03bdk03t6oohxedrs6vae", "revision_nr": 1, "created": 1697467113572, @@ -77392,7 +99514,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03bdk03t5oohx5hfega07", "revision_nr": 1, "created": 1697467113582, "modified": 1697467113582 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03bdk03t5oohx5hfega07", + "revision_nr": 1, + "created": 1697467113582, + "modified": 1697467113582 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547", @@ -77405,7 +99534,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77418,7 +99550,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401", - "content": { "type": 1, "value": {}, "revision": "lnt03bd903t2oohx3bxpd8h8", "revision_nr": 1, "created": 1697467113603, "modified": 1697467113603 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03bd903t2oohx3bxpd8h8", + "revision_nr": 1, + "created": 1697467113603, + "modified": 1697467113603 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547/description", @@ -77435,7 +99574,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03bf103tboohxgobs0okl", "revision_nr": 1, "created": 1697467113624, @@ -77444,7 +99587,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03bf103taoohx94ba5t69", "revision_nr": 1, "created": 1697467113635, "modified": 1697467113635 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03bf103taoohx94ba5t69", + "revision_nr": 1, + "created": 1697467113635, + "modified": 1697467113635 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547", @@ -77457,7 +99607,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77470,7 +99623,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402", - "content": { "type": 1, "value": {}, "revision": "lnt03ber03t7oohx67nn34kp", "revision_nr": 1, "created": 1697467113657, "modified": 1697467113657 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03ber03t7oohx67nn34kp", + "revision_nr": 1, + "created": 1697467113657, + "modified": 1697467113657 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547/description", @@ -77487,7 +99647,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03bgk03tgoohx8uc2gpvk", "revision_nr": 1, "created": 1697467113678, @@ -77496,7 +99660,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03bgj03tfoohx9rxb2kox", "revision_nr": 1, "created": 1697467113690, "modified": 1697467113690 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03bgj03tfoohx9rxb2kox", + "revision_nr": 1, + "created": 1697467113690, + "modified": 1697467113690 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547", @@ -77509,7 +99680,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77522,7 +99696,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403", - "content": { "type": 1, "value": {}, "revision": "lnt03bg903tcoohx0g13ggf8", "revision_nr": 1, "created": 1697467113711, "modified": 1697467113711 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03bg903tcoohx0g13ggf8", + "revision_nr": 1, + "created": 1697467113711, + "modified": 1697467113711 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547/description", @@ -77539,7 +99720,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03bi203tloohx7stj5lga", "revision_nr": 1, "created": 1697467113732, @@ -77548,7 +99733,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03bi203tkoohxbtb2emp8", "revision_nr": 1, "created": 1697467113742, "modified": 1697467113742 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03bi203tkoohxbtb2emp8", + "revision_nr": 1, + "created": 1697467113742, + "modified": 1697467113742 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547", @@ -77561,7 +99753,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77574,7 +99769,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404", - "content": { "type": 1, "value": {}, "revision": "lnt03bhr03thoohxge2yahoa", "revision_nr": 1, "created": 1697467113764, "modified": 1697467113764 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03bhr03thoohxge2yahoa", + "revision_nr": 1, + "created": 1697467113764, + "modified": 1697467113764 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547/description", @@ -77591,7 +99793,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03bjj03tqoohx8gxch4yg", "revision_nr": 1, "created": 1697467113786, @@ -77600,7 +99806,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03bjj03tpoohx0cb56g7p", "revision_nr": 1, "created": 1697467113796, "modified": 1697467113796 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03bjj03tpoohx0cb56g7p", + "revision_nr": 1, + "created": 1697467113796, + "modified": 1697467113796 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547", @@ -77613,7 +99826,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77626,17 +99842,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405", - "content": { "type": 1, "value": {}, "revision": "lnt03bj803tmoohx9udj261r", "revision_nr": 1, "created": 1697467113816, "modified": 1697467113816 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03bj803tmoohx9udj261r", + "revision_nr": 1, + "created": 1697467113816, + "modified": 1697467113816 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt03b2p03s2oohxfhj8gg9k", "revision_nr": 1, "created": 1697467113828, "modified": 1697467113828 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03b2p03s2oohxfhj8gg9k", + "revision_nr": 1, + "created": 1697467113828, + "modified": 1697467113828 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit", "content": { "type": 1, - "value": { "approvedLimit": 10000, "limitUsed": 10000, "analysisRequested": { "type": 6, "value": 1683976027691 }, "lastReview": { "type": 6, "value": 1684007556024 } }, + "value": { + "approvedLimit": 10000, + "limitUsed": 10000, + "analysisRequested": { + "type": 6, + "value": 1683976027691 + }, + "lastReview": { + "type": 6, + "value": 1684007556024 + } + }, "revision": "lnt03b2p03s1oohx8xir2nxl", "revision_nr": 1, "created": 1697467113839, @@ -77647,7 +99888,16 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820", "content": { "type": 1, - "value": { "dataModificacao": 1677844580252, "dateValidity": 1678311387021, "totalValue": 3272.893, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696647600000 } }, + "value": { + "dataModificacao": 1677844580252, + "dateValidity": 1678311387021, + "totalValue": 3272.893, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696647600000 + } + }, "revision": "lnt03aj703q7oohxcyfiebqc", "revision_nr": 1, "created": 1697467113849, @@ -77664,7 +99914,10 @@ "balances": {}, "history": {}, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1696215600000 } + "balancesModificacao": { + "type": 6, + "value": 1696215600000 + } }, "revision": "lnt03bll03troohx6w7z8q5a", "revision_nr": 1, @@ -77676,7 +99929,11 @@ "path": "ivipcoin-db::__movement_wallet__/140498756876340500/balances/IVIP", "content": { "type": 1, - "value": { "available": "220191.58000000", "symbol": "IVIP", "value": 29.61 }, + "value": { + "available": "220191.58000000", + "symbol": "IVIP", + "value": 29.61 + }, "revision": "lnt03blw03tuoohx2kf64i6u", "revision_nr": 1, "created": 1697467113871, @@ -77685,7 +99942,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/balances", - "content": { "type": 1, "value": {}, "revision": "lnt03blw03ttoohx250obyl8", "revision_nr": 1, "created": 1697467113881, "modified": 1697467113881 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03blw03ttoohx250obyl8", + "revision_nr": 1, + "created": 1697467113881, + "modified": 1697467113881 + } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685110971189/description", @@ -77700,7 +99964,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685110971189/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03bmt03tyoohxcz46cibt", "revision_nr": 1, "created": 1697467113906, "modified": 1697467113906 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03bmt03tyoohxcz46cibt", + "revision_nr": 1, + "created": 1697467113906, + "modified": 1697467113906 + } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685110971189", @@ -77714,15 +99987,30 @@ "total_amount": 1600, "history_id": 1685110971189, "id": 1685110971189, - "date_created": { "type": 6, "value": 1685110971189 }, - "date_last_updated": { "type": 6, "value": 1685143958384 }, - "date_of_expiration": { "type": 6, "value": 1687702971189 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685143958384 }, - "money_release_date": { "type": 6, "value": 1685143958384 }, + "date_created": { + "type": 6, + "value": 1685110971189 + }, + "date_last_updated": { + "type": 6, + "value": 1685143958384 + }, + "date_of_expiration": { + "type": 6, + "value": 1687702971189 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685143958384 + }, + "money_release_date": { + "type": 6, + "value": 1685143958384 + }, "money_release_status": "approved", "wasDebited": true }, @@ -77768,9 +100056,18 @@ "original_amount": 5398200, "total_amount": 5398200, "id": 1685727229028, - "date_created": { "type": 6, "value": 1685727229028 }, - "date_last_updated": { "type": 6, "value": 1685727229028 }, - "date_of_expiration": { "type": 6, "value": 1685727229028 }, + "date_created": { + "type": 6, + "value": 1685727229028 + }, + "date_last_updated": { + "type": 6, + "value": 1685727229028 + }, + "date_of_expiration": { + "type": 6, + "value": 1685727229028 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -77831,9 +100128,18 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1687318007517, - "date_created": { "type": 6, "value": 1687318007517 }, - "date_last_updated": { "type": 6, "value": 1687318007517 }, - "date_of_expiration": { "type": 6, "value": 1750476407517 }, + "date_created": { + "type": 6, + "value": 1687318007517 + }, + "date_last_updated": { + "type": 6, + "value": 1687318007517 + }, + "date_of_expiration": { + "type": 6, + "value": 1750476407517 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -77893,9 +100199,18 @@ "original_amount": 320960, "total_amount": 320960, "id": 1688408922424, - "date_created": { "type": 6, "value": 1688408922424 }, - "date_last_updated": { "type": 6, "value": 1688408922424 }, - "date_of_expiration": { "type": 6, "value": 1691087322424 }, + "date_created": { + "type": 6, + "value": 1688408922424 + }, + "date_last_updated": { + "type": 6, + "value": 1688408922424 + }, + "date_of_expiration": { + "type": 6, + "value": 1691087322424 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -77955,9 +100270,18 @@ "original_amount": 327379.2, "total_amount": 327379.2, "id": 1691087650613, - "date_created": { "type": 6, "value": 1691087650613 }, - "date_last_updated": { "type": 6, "value": 1691087650613 }, - "date_of_expiration": { "type": 6, "value": 1691087650613 }, + "date_created": { + "type": 6, + "value": 1691087650613 + }, + "date_last_updated": { + "type": 6, + "value": 1691087650613 + }, + "date_of_expiration": { + "type": 6, + "value": 1691087650613 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78027,9 +100351,18 @@ "total_amount": 366669, "id": 1691114916429, "history_id": 1691114916429, - "date_created": { "type": 6, "value": 1691114916429 }, - "date_last_updated": { "type": 6, "value": 1691114916429 }, - "date_of_expiration": { "type": 6, "value": 1693793316390 }, + "date_created": { + "type": 6, + "value": 1691114916429 + }, + "date_last_updated": { + "type": 6, + "value": 1691114916429 + }, + "date_of_expiration": { + "type": 6, + "value": 1693793316390 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78098,9 +100431,18 @@ "total_amount": 374002.38, "id": "1693793335003", "history_id": "1693793335003", - "date_created": { "type": 6, "value": 1693793335003 }, - "date_last_updated": { "type": 6, "value": 1693793335003 }, - "date_of_expiration": { "type": 6, "value": 1693793335003 }, + "date_created": { + "type": 6, + "value": 1693793335003 + }, + "date_last_updated": { + "type": 6, + "value": 1693793335003 + }, + "date_of_expiration": { + "type": 6, + "value": 1693793335003 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78169,9 +100511,18 @@ "total_amount": 411950, "id": "1693793542322", "history_id": "1693793542322", - "date_created": { "type": 6, "value": 1693793542322 }, - "date_last_updated": { "type": 6, "value": 1693793542322 }, - "date_of_expiration": { "type": 6, "value": 1696385542321 }, + "date_created": { + "type": 6, + "value": 1693793542322 + }, + "date_last_updated": { + "type": 6, + "value": 1693793542322 + }, + "date_of_expiration": { + "type": 6, + "value": 1696385542321 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78241,9 +100592,18 @@ "total_amount": 420189, "id": "1696395329903", "history_id": "1696395329903", - "date_created": { "type": 6, "value": 1696395329903 }, - "date_last_updated": { "type": 6, "value": 1696395329903 }, - "date_of_expiration": { "type": 6, "value": 1696395329903 }, + "date_created": { + "type": 6, + "value": 1696395329903 + }, + "date_last_updated": { + "type": 6, + "value": 1696395329903 + }, + "date_of_expiration": { + "type": 6, + "value": 1696395329903 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78313,9 +100673,18 @@ "total_amount": 200000, "id": "1696472422028", "history_id": "1696472422028", - "date_created": { "type": 6, "value": 1696472422028 }, - "date_last_updated": { "type": 6, "value": 1696472422028 }, - "date_of_expiration": { "type": 6, "value": 1699150821996 }, + "date_created": { + "type": 6, + "value": 1696472422028 + }, + "date_last_updated": { + "type": 6, + "value": 1696472422028 + }, + "date_of_expiration": { + "type": 6, + "value": 1699150821996 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78331,13 +100700,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history", - "content": { "type": 1, "value": {}, "revision": "lnt03bmh03tvoohx67pwcy5m", "revision_nr": 1, "created": 1697467114267, "modified": 1697467114267 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03bmh03tvoohx67pwcy5m", + "revision_nr": 1, + "created": 1697467114267, + "modified": 1697467114267 + } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt03bx703uuoohxcsmj33oq", "revision_nr": 1, "created": 1697467114278, @@ -78353,7 +100733,10 @@ "dateValidity": 1684358980805, "totalValue": 82.79825942258582, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1696647600000 } + "balancesModificacao": { + "type": 6, + "value": 1696647600000 + } }, "revision": "lnt03blw03tsoohxcvbbbuby", "revision_nr": 1, @@ -78365,7 +100748,11 @@ "path": "ivipcoin-db::__movement_wallet__/142977693689888340/balances/IVIP", "content": { "type": 1, - "value": { "available": "2112486.00000000", "symbol": "IVIP", "value": 239.28 }, + "value": { + "available": "2112486.00000000", + "symbol": "IVIP", + "value": 239.28 + }, "revision": "lnt03bxt03uxoohx79po0qd1", "revision_nr": 1, "created": 1697467114299, @@ -78374,7 +100761,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/balances", - "content": { "type": 1, "value": {}, "revision": "lnt03bxt03uwoohxdinx3s3u", "revision_nr": 1, "created": 1697467114310, "modified": 1697467114310 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03bxt03uwoohxdinx3s3u", + "revision_nr": 1, + "created": 1697467114310, + "modified": 1697467114310 + } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689206251825/description", @@ -78389,7 +100783,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689206251825/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03byq03v1oohxhvlhf65d", "revision_nr": 1, "created": 1697467114332, "modified": 1697467114332 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03byq03v1oohxhvlhf65d", + "revision_nr": 1, + "created": 1697467114332, + "modified": 1697467114332 + } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689206251825", @@ -78403,15 +100806,30 @@ "total_amount": 5000, "history_id": 1689206251825, "id": 1689206251825, - "date_created": { "type": 6, "value": 1689206251825 }, - "date_last_updated": { "type": 6, "value": 1689207259742 }, - "date_of_expiration": { "type": 6, "value": 1691798251825 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689207259742 }, - "money_release_date": { "type": 6, "value": 1689207259742 }, + "date_created": { + "type": 6, + "value": 1689206251825 + }, + "date_last_updated": { + "type": 6, + "value": 1689207259742 + }, + "date_of_expiration": { + "type": 6, + "value": 1691798251825 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689207259742 + }, + "money_release_date": { + "type": 6, + "value": 1689207259742 + }, "money_release_status": "approved", "wasDebited": true }, @@ -78457,9 +100875,18 @@ "original_amount": 2112486, "total_amount": 2112486, "id": 1689208259450, - "date_created": { "type": 6, "value": 1689208259450 }, - "date_last_updated": { "type": 6, "value": 1689208259450 }, - "date_of_expiration": { "type": 6, "value": 1689208259450 }, + "date_created": { + "type": 6, + "value": 1689208259450 + }, + "date_last_updated": { + "type": 6, + "value": 1689208259450 + }, + "date_of_expiration": { + "type": 6, + "value": 1689208259450 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78476,13 +100903,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history", - "content": { "type": 1, "value": {}, "revision": "lnt03bye03uyoohxep98d3ph", "revision_nr": 1, "created": 1697467114377, "modified": 1697467114377 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03bye03uyoohxep98d3ph", + "revision_nr": 1, + "created": 1697467114377, + "modified": 1697467114377 + } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt03c0903v4oohxbemn1oas", "revision_nr": 1, "created": 1697467114388, @@ -78493,7 +100931,16 @@ "path": "ivipcoin-db::__movement_wallet__/142977693689888340", "content": { "type": 1, - "value": { "dataModificacao": 1689206116426, "dateValidity": 1689206116426, "totalValue": 1030, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697079600000 } }, + "value": { + "dataModificacao": 1689206116426, + "dateValidity": 1689206116426, + "totalValue": 1030, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697079600000 + } + }, "revision": "lnt03bxt03uvoohx0sbc9rvb", "revision_nr": 1, "created": 1697467114399, @@ -78511,7 +100958,10 @@ "history": {}, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1696647600000 } + "balancesModificacao": { + "type": 6, + "value": 1696647600000 + } }, "revision": "lnt03c0v03v5oohx983v178s", "revision_nr": 1, @@ -78523,7 +100973,14 @@ "path": "ivipcoin-db::__movement_wallet__/146025594361679260", "content": { "type": 1, - "value": { "dataModificacao": 1679356008303, "dateValidity": 1679356008303, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1679356008303, + "dateValidity": 1679356008303, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt03c1703v6oohxciu27axa", "revision_nr": 1, "created": 1697467114421, @@ -78534,7 +100991,13 @@ "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697568433538 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697568433538 + } + }, "revision": "lnt03c1h03vaoohx7ax46h3m", "revision_nr": 1, "created": 1697467114433, @@ -78596,8 +101059,14 @@ "total_amount": 20, "id": "1694976433538", "history_id": "1694976433538", - "date_created": { "type": 6, "value": 1694976433538 }, - "date_last_updated": { "type": 6, "value": 1694976433538 }, + "date_created": { + "type": 6, + "value": 1694976433538 + }, + "date_last_updated": { + "type": 6, + "value": 1694976433538 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -78613,13 +101082,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history", - "content": { "type": 1, "value": {}, "revision": "lnt03c1h03v8oohxh2dn5xav", "revision_nr": 1, "created": 1697467114488, "modified": 1697467114488 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03c1h03v8oohxh2dn5xav", + "revision_nr": 1, + "created": 1697467114488, + "modified": 1697467114488 + } }, { "path": "ivipcoin-db::__movement_wallet__/146193775313990370/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt03c3c03veoohxhto65yhu", "revision_nr": 1, "created": 1697467114499, @@ -78630,7 +101110,16 @@ "path": "ivipcoin-db::__movement_wallet__/146193775313990370", "content": { "type": 1, - "value": { "dataModificacao": 1694975442899, "dateValidity": 1694975443028, "balances": {}, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696906800000 } }, + "value": { + "dataModificacao": 1694975442899, + "dateValidity": 1694975443028, + "balances": {}, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696906800000 + } + }, "revision": "lnt03c1h03v7oohx2gsb1oq6", "revision_nr": 1, "created": 1697467114511, @@ -78641,7 +101130,11 @@ "path": "ivipcoin-db::__movement_wallet__/146193999422064450/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt03c3z03vgoohxhbox40mc", "revision_nr": 1, "created": 1697467114523, @@ -78652,7 +101145,14 @@ "path": "ivipcoin-db::__movement_wallet__/146193999422064450", "content": { "type": 1, - "value": { "dataModificacao": 1677393088450, "dateValidity": 1677393088450, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677393088450, + "dateValidity": 1677393088450, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt03c3z03vfoohxfyskb5ma", "revision_nr": 1, "created": 1697467114533, @@ -78663,7 +101163,14 @@ "path": "ivipcoin-db::__movement_wallet__/146386157285818500", "content": { "type": 1, - "value": { "dataModificacao": 1677820583824, "dateValidity": 1677838584623, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677820583824, + "dateValidity": 1677838584623, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt03c4l03vhoohx6pm1dhfz", "revision_nr": 1, "created": 1697467114543, @@ -78718,7 +101225,11 @@ "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.9900000000000001 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.9900000000000001 + }, "revision": "lnt03c6303vroohxh6x66wtw", "revision_nr": 1, "created": 1697467114597, @@ -78727,21 +101238,52 @@ }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03c6203vqoohxe7f9hsda", "revision_nr": 1, "created": 1697467114608, "modified": 1697467114608 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03c6203vqoohxe7f9hsda", + "revision_nr": 1, + "created": 1697467114608, + "modified": 1697467114608 + } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/bank_info/collector", - "content": { "type": 1, "value": { "account_holder_name": "IVIPCOIN LTDA" }, "revision": "lnt03c6o03vtoohx07n50f59", "revision_nr": 1, "created": 1697467114618, "modified": 1697467114618 } + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "lnt03c6o03vtoohx07n50f59", + "revision_nr": 1, + "created": 1697467114618, + "modified": 1697467114618 + } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt03c6o03vsoohxdzki707q", "revision_nr": 1, "created": 1697467114629, "modified": 1697467114629 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt03c6o03vsoohxdzki707q", + "revision_nr": 1, + "created": 1697467114629, + "modified": 1697467114629 + } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 100.99, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 100.99, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt03c5603vmoohx2zvp7nrn", "revision_nr": 1, "created": 1697467114640, @@ -78760,9 +101302,18 @@ "total_amount": 100.99, "history_id": 1678652275580, "id": 55661848873, - "date_created": { "type": 6, "value": 1678652276428 }, - "date_last_updated": { "type": 6, "value": 1678738862000 }, - "date_of_expiration": { "type": 6, "value": 1678738676084 }, + "date_created": { + "type": 6, + "value": 1678652276428 + }, + "date_last_updated": { + "type": 6, + "value": 1678738862000 + }, + "date_of_expiration": { + "type": 6, + "value": 1678738676084 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "cancelled", @@ -78777,13 +101328,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history", - "content": { "type": 1, "value": {}, "revision": "lnt03c4v03vjoohxcpt82ww1", "revision_nr": 1, "created": 1697467114662, "modified": 1697467114662 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03c4v03vjoohxcpt82ww1", + "revision_nr": 1, + "created": 1697467114662, + "modified": 1697467114662 + } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200", "content": { "type": 1, - "value": { "dataModificacao": 1678651931786, "dateValidity": 1678669931823, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678651931786, + "dateValidity": 1678669931823, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt03c4v03vioohxfzj3h371", "revision_nr": 1, "created": 1697467114672, @@ -78794,7 +101358,11 @@ "path": "ivipcoin-db::__movement_wallet__/147062074886654460/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt03c8h03vvoohx2man313u", "revision_nr": 1, "created": 1697467114684, @@ -78812,7 +101380,10 @@ "history": {}, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1696820400000 } + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } }, "revision": "lnt03c8g03vuoohx116tf2bs", "revision_nr": 1, @@ -78824,7 +101395,14 @@ "path": "ivipcoin-db::__movement_wallet__/149922673320977100", "content": { "type": 1, - "value": { "dataModificacao": 1678155962477, "dateValidity": 1678510544290, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678155962477, + "dateValidity": 1678510544290, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt03c9303vwoohxd8pdgb1m", "revision_nr": 1, "created": 1697467114707, @@ -78835,7 +101413,13 @@ "path": "ivipcoin-db::__movement_wallet__/151721738402511580", "content": { "type": 1, - "value": { "dataModificacao": 1696981676486, "dateValidity": 1696981676516, "balances": {}, "history": {}, "currencyType": "USD" }, + "value": { + "dataModificacao": 1696981676486, + "dateValidity": 1696981676516, + "balances": {}, + "history": {}, + "currencyType": "USD" + }, "revision": "lnt03c9f03vxoohx1o8p1tqp", "revision_nr": 1, "created": 1697467114718, @@ -78846,7 +101430,13 @@ "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1696549725001 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1696549725001 + } + }, "revision": "lnt03c9r03w1oohx3164716f", "revision_nr": 1, "created": 1697467114729, @@ -78908,16 +101498,28 @@ "total_amount": 1000, "id": "1693957725002", "history_id": "1693957725002", - "date_created": { "type": 6, "value": 1693957725002 }, - "date_last_updated": { "type": 6, "value": 1693961791127 }, + "date_created": { + "type": 6, + "value": 1693957725002 + }, + "date_last_updated": { + "type": 6, + "value": 1693961791127 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1693961791127 }, - "money_release_date": { "type": 6, "value": 1693961791127 }, + "date_approved": { + "type": 6, + "value": 1693961791127 + }, + "money_release_date": { + "type": 6, + "value": 1693961791127 + }, "money_release_status": "approved", "wasDebited": true }, @@ -78982,9 +101584,18 @@ "total_amount": 1000, "id": "1694615393430", "history_id": "1694615393430", - "date_created": { "type": 6, "value": 1694615393430 }, - "date_last_updated": { "type": 6, "value": 1694615393430 }, - "date_of_expiration": { "type": 6, "value": 1757773793429 }, + "date_created": { + "type": 6, + "value": 1694615393430 + }, + "date_last_updated": { + "type": 6, + "value": 1694615393430 + }, + "date_of_expiration": { + "type": 6, + "value": 1757773793429 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -79000,13 +101611,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history", - "content": { "type": 1, "value": {}, "revision": "lnt03c9r03vzoohxe7p24rvw", "revision_nr": 1, "created": 1697467114829, "modified": 1697467114829 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03c9r03vzoohxe7p24rvw", + "revision_nr": 1, + "created": 1697467114829, + "modified": 1697467114829 + } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt03cct03w9oohx0r5z2phj", "revision_nr": 1, "created": 1697467114840, @@ -79017,12 +101639,31 @@ "path": "ivipcoin-db::__movement_wallet__/152557644739400160", "content": { "type": 1, - "value": { "dataModificacao": 1693436516681, "dateValidity": 1693436516720, "balances": {}, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1695092400000 } }, + "value": { + "dataModificacao": 1693436516681, + "dateValidity": 1693436516720, + "balances": {}, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1695092400000 + } + }, "revision": "lnt03c9q03vyoohx42t5fia3", "revision_nr": 1, "created": 1697467114850, "modified": 1697467114850 } }, - { "path": "ivipcoin-db::__movement_wallet__", "content": { "type": 1, "value": {}, "revision": "lnt02q7u0003oohxe4t4gro0", "revision_nr": 1, "created": 1697467114861, "modified": 1697467114861 } } -] + { + "path": "ivipcoin-db::__movement_wallet__", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7u0003oohxe4t4gro0", + "revision_nr": 1, + "created": 1697467114861, + "modified": 1697467114861 + } + } +] \ No newline at end of file diff --git a/test/outputRestructuredJSON.json b/test/outputRestructuredJSON.json new file mode 100644 index 00000000..5771f4d9 --- /dev/null +++ b/test/outputRestructuredJSON.json @@ -0,0 +1,109 @@ +{ + "ivipcoin-db::__movement_wallet__": { + "007219693774253022": { + "dataModificacao": 1689373828234, + "dateValidity": 1689373828234, + "totalValue": 0, + "currencyType": "USD", + "balancesModificacao": "2023-10-14T03:00:00.000Z", + "credit": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, + "history": { + "1690216041978": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 150, + "total_amount": 150, + "id": 1690216041978, + "history_id": 1690216041978, + "date_created": "2023-07-24T16:27:21.978Z", + "date_last_updated": "2023-07-24T17:23:10.794Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-07-24T17:23:10.794Z", + "money_release_date": "2023-07-24T17:23:10.794Z", + "money_release_status": "approved", + "wasDebited": true, + "details": { + "payment_method_reference_id": 1690216041978, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 150, + "installment_amount": 150, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": [], + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/007219693774253022/history/1690216041978" + }, + "description": "Deposito de um valor R$ 150,00 para a carteira iVip 0072.1969.3774.2530-22", + "date_of_expiration": { + ".type": "date", + ".val": "2023-08-23T16:27:21.978Z" + } + }, + "1689719003118": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 130, + "total_amount": 130, + "history_id": 1689719003118, + "id": 1689719003118, + "date_created": "2023-07-18T22:23:23.118Z", + "date_last_updated": "2023-07-26T21:40:36.264Z", + "date_of_expiration": "2023-08-17T22:23:23.118Z", + "operation_type": "regular_payment", + "status": "cancelled", + "status_detail": "cancelled", + "currency_id": "BRL", + "money_release_date": "2023-07-26T21:40:36.264Z", + "money_release_status": "cancelled", + "wasDebited": true, + "details": { + "costs": [] + }, + "description": "Deposito de um valor R$ 130,00 para a carteira iVip 0072.1969.3774.2530-22" + }, + "1689373938365": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1689373938365, + "id": 1689373938365, + "date_created": "2023-07-14T22:32:18.365Z", + "date_last_updated": "2023-07-26T21:41:01.153Z", + "date_of_expiration": "2023-08-13T22:32:18.365Z", + "operation_type": "regular_payment", + "status": "cancelled", + "status_detail": "cancelled", + "currency_id": "BRL", + "money_release_date": "2023-07-26T21:41:01.153Z", + "money_release_status": "cancelled", + "wasDebited": true, + "details": { + "costs": [] + }, + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0072.1969.3774.2530-22" + } + }, + "balances": { + "BRL": { + "available": "150.00000000", + "symbol": "BRL", + "value": 29.27 + } + } + } + } +} \ No newline at end of file diff --git a/test/outputResultWithPathJSON.json b/test/outputResultWithPathJSON.json new file mode 100644 index 00000000..c82a7874 --- /dev/null +++ b/test/outputResultWithPathJSON.json @@ -0,0 +1,104202 @@ +[ + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "2528.00700001", + "symbol": "BRL", + "value": 494.23 + }, + "revision": "5b55efee4ad34bfea8946863", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "1499269.00000000", + "symbol": "IVIP", + "value": 158.48 + }, + "revision": "1f430c64c4e74803ba18fc83", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/balances", + "content": { + "type": 1, + "value": {}, + "revision": "1c5b894615c94729b37df41c", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/barcode", + "content": { + "type": 1, + "value": { + "content": "23796927400000606493380261019404283200633330" + }, + "revision": "fb038a1724a34034937c7331", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, + "revision": "fc17e363071d4f788f692ac4", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": "10194042832", + "acquirer_reference": "", + "verification_code": "10194042832", + "net_received_amount": 0, + "total_paid_amount": 606.49, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "bradesco" + }, + "revision": "6058cbda985544cd8a2ed8ea", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/external_resource_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/sandbox/payments/1311772470/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772470&payment_method_reference_id=10194042832&hash=af674271-1e58-4fd7-be5a-99a2285e1e5a", + "revision": "0fcc2ba8ff7e43ac959e9aef", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "e2ebbbe6bbd640b3ba8bd317", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "bolbradesco", + "original_amount": 603, + "total_amount": 606.49, + "id": 1311772470, + "date_created": { + "type": 6, + "value": 1677138263122 + }, + "date_last_updated": { + "type": 6, + "value": 1677138263122 + }, + "date_of_expiration": { + "type": 6, + "value": 1677553199000 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "history_id": "1677138262468" + }, + "revision": "6e3ab459b30e4d12bf3d599b", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 603,00 para a carteira iVip 0005.2314.7298.6693-13Tarifas: - Taxa de serviço (Taxa de R$ 3,49): + R$ 3,49", + "revision": "443d119259bb49d79b37a538", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/barcode", + "content": { + "type": 1, + "value": { + "content": "23799927400000595493380261019404380900633330" + }, + "revision": "be7bb86b087943fbba5a55f1", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, + "revision": "dfc7828e481247c88535e72d", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": "10194043809", + "acquirer_reference": "", + "verification_code": "10194043809", + "net_received_amount": 0, + "total_paid_amount": 595.49, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "bradesco" + }, + "revision": "b25b3a338c0740ffa26f0a98", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/external_resource_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/sandbox/payments/1311772488/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772488&payment_method_reference_id=10194043809&hash=73ef0e48-e863-4567-bdcb-8711a40d76b2", + "revision": "73ffeabcef894b8a8b5c239b", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "201ba19a9a0d447c865b99fe", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "bolbradesco", + "original_amount": 592, + "total_amount": 595.49, + "id": 1311772488, + "date_created": { + "type": 6, + "value": 1677138656477 + }, + "date_last_updated": { + "type": 6, + "value": 1677138656477 + }, + "date_of_expiration": { + "type": 6, + "value": 1677553199000 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "history_id": "1677138655788" + }, + "revision": "fa64b24a31a54cc09ccabb74", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 592,00 para a carteira iVip 0005.2314.7298.6693-13Tarifas: - Taxa de serviço (Taxa de R$ 3,49): + R$ 3,49", + "revision": "f0bcdebc343546058ec94cf4", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "dbf86e1a0b444009b5c729da", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, + "revision": "fb2c45a36c97484686892992", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "97f1b2158bb747ceb67d2399", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 4.95 + }, + "revision": "a1cb91b7e35f425f92d5f5a8", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 504.95, + "overpaid_amount": 0, + "installment_amount": 0 + }, + "revision": "bd87d92477374d639edd6402", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/qr_code", + "content": { + "type": 5, + "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b615204000053039865406504.955802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter1312722165630407FD", + "revision": "0993047c2458455d973d90fd", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/ticket_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/sandbox/payments/1312722165/ticket?caller_id=1310149122&hash=db7e8cb4-20ed-4664-aa3c-fa50b3f2d6e8", + "revision": "931f424975f14cfe98c62b34", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/qr_code_base64", + "content": { + "type": 5, + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2klEQVR42u3dQY7kNgwFUN3A97+lb+Agi8zY4qeqkgyCjPxq0ehu29Jz7QhS5Lh+o885aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/vXbMn+PP/x0/Lhw/7vvrwp/P3y78XOX+2znGc8fxc9H7Ao8LE4OWlpaWlpaWlpaWlvYl2mnbn4s8ANN9d0V6q2nb826cLty/h6SipaWlpaWlpaWlpaV9gXYKIHN02ER9047liRqBtvtmBi0tLS0tLS0tLS0t7Uu1Ics25++mz6d0Xo1Kyw9aWlpaWlpaWlpaWlraEAlO/7vn6prPnXeWMHRa4FMwS0tLS0tLS0tLS0tL+wJtwi9qMq+QpjtK2WZ5qyMcwDuWxZ+0tLS0tLS0tLS0tLSv0LZdSv7bH/+2pwotLS0tLS0tLS0tLe1vqs2f81lIeZaeI/mo25UbTKbeJPcfnyy0tLS0tLS0tLS0tLR7a5tjbevDbDkCnV5oPFN8R/4y2vejpaWlpaWlpaWlpaV9hTb1F8ld+Ef5szQjaUoq7xulw3GpWPOipaWlpaWlpaWlpaV9ibYEhnWo2lQgOe29ePYM6bwrD9luT9fR0tLS0tLS0tLS0tLurk2bpXNx7adN8U15vil5OBlLAvCipaWlpaWlpaWlpaV9jbaumZJ9ZQp2msp2lsb/Ye+xrLD81FOFlpaWlpaWlpaWlpZ2P2065XaU5Fx7Gi49kfN8o0sFnuFbumhpaWlpaWlpaWlpaV+jPT6tubil7jM1N0lZu9RMsgSzBy0tLS0tLS0tLS0t7Wu0NZ3XduFPQWWeeD3Kn+U10m4jtpqkpaWlpaWlpaWlpaXdWZvSdCkwTJ3578+eZbM8FqDpNzlZaGlpaWlpaWlpaWlpX6bN09FS/u7MOb3y9ke5uf0KpndeVl3S0tLS0tLS0tLS0tJuqi1ptWaI9RQdLppEHiEgrWfq0hf0dcxLS0tLS0tLS0tLS0u7mzYHhmmlx3Ipp9fGiWWjM2T8TlpaWlpaWlpaWlpa2hdqp+aPI/+WaiMnQGo3kjpK5rEAX9aI0tLS0tLS0tLS0tLSbqQtgeGj50hJyR0hvJwyfmWzUbqepBizHbdNS0tLS0tLS0tLS0u7u/ZYpvhSV5EUcrah5JGPun0Rn9LS0tLS0tLS0tLS0r5Hm0+lHTlX1xZStqOw8xG7Ky/1OYqkpaWlpaWlpaWlpaXdSpvrL5uyyHSOLeXq8ty1qepy5MReiGNpaWlpaWlpaWlpaWm3164XTiFnexBukeKrlZiL16WlpaWlpaWlpaWlpX2fNrlbYyrHvC9Vo8gSqVZy/qpoaWlpaWlpaWlpaWl315Ym+nUK9tFVTp5d3Fl7nZSrV5iWXVOLtLS0tLS0tLS0tLS0u2vzEOsRyieP/GrpSFzp5d/MyJ4C13SVlpaWlpaWlpaWlpZ2f+0oLfsXFZFpYPUo8V9bZpneOQ3U7rJ7tLS0tLS0tLS0tLS0+2nzwOrpXNy5GHFdjE3VZTk6t4o7P+QiaWlpaWlpaWlpaWlpt9JeeUL1p6b8q+nW5Thd09ekxJPjb/RUoaWlpaWlpaWlpaWl3UWbKidHmLvW1GSmksopTkypu3U55jcxLy0tLS0tLS0tLS0t7Uba8ttVyixLsq/J33Wd+furqUXKMoqkpaWlpaWlpaWlpaXdStsOQbvHhFNHyatk8iZ3KrMsTxyh9HI8T83R0tLS0tLS0tLS0tK+QJsUOeo7+/RbvHkq6pxyeuXmdkoALS0tLS0tLS0tLS3tC7Rl4vVRXqPk4K5FW5JplfI9fNfun5aWlpaWlpaWlpaW9iXaqzu4dpVHU+VkygKW0PQMj6W+lDnnSEtLS0tLS0tLS0tLu7N2WjNHkRWQ84FpbNr5VYVlO4uNlpaWlpaWlpaWlpZ2d20bRZY2kM3s62mL+31Xzt/lqstHtElLS0tLS0tLS0tLS/sm7Zll6ZBaORw3wkG46eoR0nln19KkTm+jpaWlpaWlpaWlpaXdXVvuOEO3xyNUSY7liOv0Vov83Zji0+eL09LS0tLS0tLS0tLS7qxN7nSY7dM+TWQZeo6MnCMcoU8KLS0tLS0tLS0tLS3tC7S5IvIqW5Szclf5reQIR6nEzK/R9jChpaWlpaWlpaWlpaV9gTZPrT5LcLfoQ1ILOMu5uLOUcpZw9QwlmrS0tLS0tLS0tLS0tK/QXiH91tRftquHLebQdHq/dhZb+B8tLS0tLS0tLS0tLe322qnm8f7olRvwT6HkPQKt75fXezyRelDS0tLS0tLS0tLS0tK+QrvIra06O5aYMF04ywG3FEpOGcTPNaK0tLS0tLS0tLS0tLRbaVM4OG0xBZppslpeYHRdSo4wKLuJVGlpaWlpaWlpaWlpaV+ibeol2xHXKZ23OFiXcn9fFGHS0tLS0tLS0tLS0tK+RztCEm+UtiQ5/jvKzLaSzrsyJceOpbckLS0tLS0tLS0tLS3tztoUMaZh1xMvB5/JWDcqzUjOUqfZRZG0tLS0tLS0tLS0tLTbaseTlxqKtA39z9F8ju7mo3Sj/LLqkpaWlpaWlpaWlpaWdj9t+qTYcb1w7ihZe/6nTij5xN1FS0tLS0tLS0tLS0v7Em0O/Y6culs0k2zGXi+iyFWJ5ueYl5aWlpaWlpaWlpaWdh9tivVSQ5F6c+rCPzUomRZt8V9HkbS0tLS0tLS0tLS0tFtqPwWQj8LMdFaujUVzGNo0opwstLS0tLS0tLS0tLS0b9ee4SBc8y6pOnPqOZLx1z/I7tHS0tLS0tLS0tLS0r5AW/9Myb42z1dCydrSJM3c7r4RWlpaWlpaWlpaWlra7bUL/Hgea0s7HlmbajKnVyvNJHPISUtLS0tLS0tLS0tLu7e2Fj7mCC/Ff+f3wWeKNu//mzpU0tLS0tLS0tLS0tLSvkX7///Q0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v4y7R8J/gb3YnjEPQAAAABJRU5ErkJggg==", + "revision": "c6ae317f0c4848b1a45a49af", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "793aeada10054866b714aaed", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 500, + "total_amount": 504.95, + "id": 1312722165, + "date_created": { + "type": 6, + "value": 1677139565681 + }, + "date_last_updated": { + "type": 6, + "value": 1677139565681 + }, + "date_of_expiration": { + "type": 6, + "value": 1677225965440 + }, + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "pending", + "status_detail": "pending_waiting_transfer", + "currency_id": "BRL", + "history_id": "1677139564865" + }, + "revision": "e5cad052182844cb9ebc15f5", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "60f17876d3534ca8b997cfb1", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, + "revision": "074be69bd7cd4c69bb16e7c7", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "bba618e93c6f42379ea5cd57", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, + "revision": "dfcfdcf97d2c4b8a9916ebb1", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "bbe09150e2504e4790545871", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0 + }, + "revision": "14fd8ae308764b82af4dc9d9", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/qr_code_base64", + "content": { + "type": 5, + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2klEQVR42u3dW27kNhAFUO5A+9+ldqAgQGZGYl1S7ckgiMmjD8NttcRD/xXqwXZ9o+tstLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLR/Xtv66/j7b8fPG8fP7/24cX/s8fHn29s/P67w5R93f328r/Zg0NLS0tLS0tLS0tLSbqI97iHb/SUPQLfYfdm0q7xsS/ju/1BUtLS0tLS0tLS0tLS0G2i7ALKL/7rny4bOZ/B5PIPKX295hJdp3cygpaWlpaWlpaWlpaXdVPsrDixB4HEHFEoXGJ7hBS3sj5aWlpaWlpaWlpaWlrYPAs9nJebjt1yx2UoNZcoHpn8GLS0tLS0tLS0tLS3t3tqELwWX6eOgTa7ri0vbTcWav1cjSktLS0tLS0tLS0tL+921wykl/+2PfztThZaWlpaWlpaWlpaW9ptq83XeH0zFlfMpk+m3bjZJmjI5stDS0tLS0tLS0tLS0q6tPUsEV3rW6o151WXe7lGWvO/qHCX7aGlpaWlpaWlpaWlp19Z2lDTjcRg25sBwWJ1Zw9A8TLK1NooiaWlpaWlpaWlpaWlp19PmlNyZZ/mXprc0UbILTRPqmJyMPZ1SQktLS0tLS0tLS0tLu542fSN9DEm3Nlx7fqVTtcsLaGlpaWlpaWlpaWlpd9S20vQ2nB45Kam88p675GFXdTmZUElLS0tLS0tLS0tLS7u2NiXnym/1nLS3pOCXmuNqtvC96pKWlpaWlpaWlpaWlnYdbRcxpla369kX192YFVcOz2dLLXHp9bS0tLS0tLS0tLS0tKtrS07v8VQJDI9yN405SXdLpHqMJlSetLS0tLS0tLS0tLS0O2k/emcNKifjImub3Hx/af4JLS0tLS0tLS0tLS3tZtpUV3nHH9NmtpoF7Io1S6BZt1vuXrS0tLS0tLS0tLS0tDtpu6s0uA2rKWeZwTzpf76rt+mRtLS0tLS0tLS0tLS0a2vToMcr83Jz3Bn6565R11ydUPm1qktaWlpaWlpaWlpaWtpVtFeZG5J627qALw+EHD6W1vhgV7S0tLS0tLS0tLS0tPtou2VTH9tVetaGtZspKk3VmTlvOK26pKWlpaWlpaWlpaWlXU1bjp9uZchIV1eZe+Vqh1yZQVkzefOKTVpaWlpaWlpaWlpa2n204Rv9kdRdg9t9Q0d4Vcudb4lX4ti3KJKWlpaWlpaWlpaWlnYpbZehK9HhIKdXUoHH6FUtjyDpUobTvCEtLS0tLS0tLS0tLe3y2hLDnaFoMgWQLYSDx+QF5fVnmFX5lRpRWlpaWlpaWlpaWlra1bSlSnIWReYmulrFOT8tO9+lpaWlpaWlpaWlpaXdR9s91VVEDgK+ble5L+4Mg0xqrWVZqISctLS0tLS0tLS0tLS0K2vzUWrtGeu1Fp9I8/2HvXLd/6YLTfPoE1paWlpaWlpaWlpa2i20Lcdw8863kufr1j7y/2EeMY6CT1paWlpaWlpaWlpa2pW1RXHkHZSQMw2OPEJM2N7GRZbFj09ykbS0tLS0tLS0tLS0tOtoaxtaTr8NjqnOUWQbnc82G4fSpRFpaWlpaWlpaWlpaWk30Q4qJ/Oh2IPjsXPlZP1KnjI5L9akpaWlpaWlpaWlpaXdQtv91m2jDoQcbu2KVz1jbb7kSxRJS0tLS0tLS0tLS0u7kLbLt5XgbliEeZZuuBxUHmXjKdBMh7nR0tLS0tLS0tLS0tJups3npF35ALVSOdnKMMlyDsAxChbPcsDbexRJS0tLS0tLS0tLS0u7inZY+JgW62K9roWtVE4OdlDWOHMoSUtLS0tLS0tLS0tLu4W2C/i6vxVZnR45aaJr4ZC2Wo7Zvfk95qWlpaWlpaWlpaWlpV1KmyonC6o9z10bJOzejseeHbed/kZLS0tLS0tLS0tLS7uJNlVJ1jxfurrosMyMHCQPJ7HjRzNVaGlpaWlpaWlpaWlpl9KmGsoUDnbZuKy4cjtdkdWQcxqf0tLS0tLS0tLS0tLSbqCtEV5O+6U8X03dDXeVizDPEne+RJG0tLS0tLS0tLS0tLQLaRMqhX4f1GSWDF06B+AMZZb17Ouv1IjS0tLS0tLS0tLS0tJ+b223dq6IPMuM/py/m62dyjG732hpaWlpaWlpaWlpaXfUlhRfC3Mk65Wm/3eyHE/Wj+XQgIOWlpaWlpaWlpaWlnYnbcnQnWEOSVdhWW/MtzachBIqLN+mlNDS0tLS0tLS0tLS0q6mHSbY8hKzrF1J3Q0mnJRA88rnuNHS0tLS0tLS0tLS0u6jLSMkj7e/TcZFDuo0U9ovhbAfV13S0tLS0tLS0tLS0tKuon2sU16XxkqeoentnI6V7FZL7kEnHS0tLS0tLS0tLS0t7era8s6zLFHe1M19rDm9e7KvfpxUXeaKTVpaWlpaWlpaWlpa2pW1d08CpPjvEQSmx8r3BlWXOXYshwHQ0tLS0tLS0tLS0tKurC2FlOeoLPLMvDTkf5j2++B8tg9jXlpaWlpaWlpaWlpa2sW0LRx41g0eSUWTVx5VkvKBJXBNj31YdUlLS0tLS0tLS0tLS7uQNl3DEDEflF03+ZYUvJ7pweGztLS0tLS0tLS0tLS0G2iHgVw6q3r49mHEmA9zS2cD1NCUlpaWlpaWlpaWlpZ2E+2RA8huQ8MQsexguJf2nFdyTXY/jiJpaWlpaWlpaWlpaWmX1KYqyRRA3uPOo8R/k8fSSMph1WWbTSmhpaWlpaWlpaWlpaXdSFujvtCpFmf0lwGT9bHSdvd5do+WlpaWlpaWlpaWlnYPbVo29cWlu3ny5FWeyC1xBy0tLS0tLS0tLS0t7XbaCb5m3roJ/rnqsg7qHxZXFt5FS0tLS0tLS0tLS0u7l7YWPqZmtnsA2XW0XWWuSZ5NMpiEUg54m1Zd0tLS0tLS0tLS0tLSrqb9/1+0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9M+xf7jbt53CJCnQAAAABJRU5ErkJggg==", + "revision": "3b542459e54143caa9f72124", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/qr_code", + "content": { + "type": 5, + "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b61520400005303986540520.205802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter131177255663042F4F", + "revision": "dea1d7afd8ab40bbb0817558", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/ticket_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/sandbox/payments/1311772556/ticket?caller_id=1310149122&hash=317c7ec8-4131-44a3-a5d4-81d3bd707a5f", + "revision": "a7fb6db7e5e049f5a77a7804", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "372230f5c99749f0ac8d40ae", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 20, + "total_amount": 20.2, + "id": 1311772556, + "date_created": { + "type": 6, + "value": 1677140213522 + }, + "date_last_updated": { + "type": 6, + "value": 1677140213522 + }, + "date_of_expiration": { + "type": 6, + "value": 1677226613246 + }, + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "pending", + "status_detail": "pending_waiting_transfer", + "currency_id": "BRL", + "history_id": "1677140212667" + }, + "revision": "bbec7d8138714baca3ca4c80", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "912bb452451347d492f9b207", + "revision_nr": 1, + "created": 1702563036306, + "modified": 1702563036306 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/barcode", + "content": { + "type": 1, + "value": { + "content": "23791927400000051993380260600338163800633330" + }, + "revision": "13c1e5309b914236b71f7a16", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3.99%", + "amount": 1.9949999999999999 + }, + "revision": "2ee1d2a74aa24b8bb51f05e3", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": "6003381638", + "acquirer_reference": "", + "verification_code": "6003381638", + "net_received_amount": 0, + "total_paid_amount": 51.99, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "10850221" + }, + "revision": "65db861770ef4ac495fb8ef8", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/external_resource_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/sandbox/payments/1311772574/ticket?caller_id=1310149122&payment_method_id=pec&payment_id=1311772574&payment_method_reference_id=6003381638&hash=676a5569-4884-42d3-9e67-bfdb72450090", + "revision": "12554dcac866499b940e69e1", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "0ac0423203ac47119eaf1613", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pec", + "original_amount": 50, + "total_amount": 51.99, + "id": 1311772574, + "date_created": { + "type": 6, + "value": 1677141075312 + }, + "date_last_updated": { + "type": 6, + "value": 1677141075312 + }, + "date_of_expiration": { + "type": 6, + "value": 1677553199000 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "history_id": "1677141074675" + }, + "revision": "e67e4635efd4497f8786797a", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "376520c7d7314bdd908e0167", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/barcode", + "content": { + "type": 1, + "value": { + "content": "23792927400000075493380261019405215900633330" + }, + "revision": "1acc1612e8574ff2aabd5836", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, + "revision": "2655b0cdf2084bccb50e05e6", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": "10194052159", + "acquirer_reference": "", + "verification_code": "10194052159", + "net_received_amount": 0, + "total_paid_amount": 75.49, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "bradesco" + }, + "revision": "924c6b10998f4630872d143a", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/external_resource_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/sandbox/payments/1312722387/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1312722387&payment_method_reference_id=10194052159&hash=0fea3a36-6354-4019-aec5-950b140fc21c", + "revision": "43db61d8fdc74942b519da13", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "0341689d75494f969a28274f", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "bolbradesco", + "total_amount": 75.49, + "id": 1312722387, + "date_created": { + "type": 6, + "value": 1677143334435 + }, + "date_last_updated": { + "type": 6, + "value": 1677143334435 + }, + "date_of_expiration": { + "type": 6, + "value": 1677553199000 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "original_amount": 72, + "history_id": "1677143332353" + }, + "revision": "6ad8d369abbb4690b2cc6b68", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 72,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "32ce6dcb9bd841e699b55dbd", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/barcode", + "content": { + "type": 1, + "value": { + "content": "23791927400000803493380261019405351400633330" + }, + "revision": "9d7f601842a540499a19eacb", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, + "revision": "3409df1c211d4cb6ae6ed959", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": "10194053514", + "acquirer_reference": "", + "verification_code": "10194053514", + "net_received_amount": 0, + "total_paid_amount": 803.49, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "bradesco" + }, + "revision": "e3bb08270ebe4874b0c34085", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/external_resource_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/sandbox/payments/1311772850/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772850&payment_method_reference_id=10194053514&hash=7f37a98d-46a5-4410-9837-bd450923e2de", + "revision": "d094b0bd685840ca825dd858", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "7f83a97954cb4d6f8f3341b4", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "bolbradesco", + "original_amount": 800, + "total_amount": 803.49, + "id": 1311772850, + "date_created": { + "type": 6, + "value": 1677146363578 + }, + "date_last_updated": { + "type": 6, + "value": 1677146363578 + }, + "date_of_expiration": { + "type": 6, + "value": 1677553199000 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "history_id": "1677146361537" + }, + "revision": "7764c5741cc64417b24b4f9e", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 800,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "2062ee545b994ca4a1134e8a", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "1e25ae9d31804bce883b5dad", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, + "revision": "6749d0e3247e4e1cb4dfb71c", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "91a9bed0a7494ef693ffefcc", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, + "revision": "a9eaf933404444efa34320b0", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0 + }, + "revision": "f0d03e651b8b4a5fabe233e1", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/ticket_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/payments/55087284163/ticket?caller_id=1310149122&hash=d505f218-1883-4e4e-8be7-431e65cdf030", + "revision": "3be21841f4fa47adb251068f", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/qr_code", + "content": { + "type": 5, + "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter55087284163630456C0", + "revision": "6e64c7e7e76f48b38b16d661", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/qr_code_base64", + "content": { + "type": 5, + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dW27kNhAFUO2A+98ld6BgkMlAzbpF2cggyEhHH4bt1uOo/wpVvDzOP+iYBy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS3t79ce6zF+/G/8+uCf335cVU9ZPh1/3/349ZxjecbP/32cfH3aB4OWlpaWlpaWlpaWlvYl2nEt2ZY/r8YKvZ4yPnkfpywvdPXM600zg5aWlpaWlpaWlpaW9gXahXK9YH6WkktNeG7IbaVaysuxYdDS0tLS0tLS0tLS0r5TO0OXrQKKp3ndpTAs7UFaWlpaWlpaWlpaWlraUM1tysGlqBybOvFu9DLdhZaWlpaWlpaWlpaW9n3ajN/NWrbV5rV2nJ9v0HxBd8OftLS0tLS0tLS0tLS0T9fuZP/hj3+bqUJLS0tLS0tLS0tLS/uHavMxSyMuhYws6SPLOGbrWW56b6GlpaWlpaWlpaWlpX22dpYKrtxp5v7dVdscJcZ/WU5X8/233T1aWlpaWlpaWlpaWtqHaq+/LSvVZhcSuVSbZ4klWd55uV877RkeSUtLS0tLS0tLS0tL+2RtucnxCTg+e3pHADTQJY2ydPxSj/AI70JLS0tLS0tLS0tLS/sCbYkROUL6yNGVg0eoLEferq3UiU22JC0tLS0tLS0tLS0t7cu0eV/qNFI58pxmqRjbVW4zr5UrXxUtLS0tLS0tLS0tLe1btIW8iyXJaf2z1H8Z0NaJZ1dj0tLS0tLS0tLS0tLSvkI7w01SEVgTJZdUkTRmmffSbr6CvFaOlpaWlpaWlpaWlpb22dpl4DJNYpbCcG7GMcsL1ePqmZvKkpaWlpaWlpaWlpaW9iXakYvAtEyuZEvW6vB67Qhfxixzmnnp3KClpaWlpaWlpaWlpX2N9sg5+0tzbgGkXJN2W4D84u3b36f609LS0tLS0tLS0tLSPkibhiH3lWAOLakpJeXa2hTcfDpoaWlpaWlpaWlpaWlfo505aSQFPS43Tp6lz5c6iPs4lO3UJS0tLS0tLS0tLS0t7WO1bZk3Sjcuhfen3t+SBdmuritF6ritImlpaWlpaWlpaWlpaR+kLVGOZ9fOG6XubBfHlfvVkvOu0DxpaWlpaWlpaWlpaWlfoz1KJZgS/EspeeQlbItsKSXLF3R0tx+0tLS0tLS0tLS0tLQv0YYPY4uvLQJzvkjaGXvXLdwGmdDS0tLS0tLS0tLS0r5AWxfClaMlN+OY+dlnecn9ECYtLS0tLS0tLS0tLe3TtUtmZLnTcs9js2F1WQ13my3Z5prQ0tLS0tLS0tLS0tK+R5sDHJt68voGcztNmWY3P85rZze3q+FoaWlpaWlpaWlpaWmfqD1LW61NJGnDSNpqs/Da2vHbe8PR0tLS0tLS0tLS0tI+Q7s8cTlyKH9tBd6NaM6u2XeG5w5aWlpaWlpaWlpaWto3ab+wIG3pt7W85eTvV4yl2UdLS0tLS0tLS0tLS/sW7UIuq9fO/L9rFZnKxmMzdZlLzu/0ImlpaWlpaWlpaWlpaZ+hTR21Am0rxjqnWYYw6zhmu/wth6DQ0tLS0tLS0tLS0tK+QFtQI3f8yrP3k5N16VyZ4pz5MlpaWlpaWlpaWlpa2vdo27nKtsbM6f/Lp81dSm5/jvGnpaWlpaWlpaWlpaV9kXbpqKW+XOrBlXbe0rqrm2LnhmLTMqSlpaWlpaWlpaWlpX2PdsntL8XdzO28zZbZM3QBF1TztK4qpaWlpaWlpaWlpaWlfbJ2mXQso5IjLHBb4vmbYc3rmGWb6r9swT3i10JLS0tLS0tLS0tLS/ts7VGqyLJr9VnuXk5O/cAj9/TS1GV+NVpaWlpaWlpaWlpa2ldpU0ZILhG/usptaQC2+2anzQBoaWlpaWlpaWlpaWlfpj1LvGOuE0dY0Za3SOtl7c7YX64iaWlpaWlpaWlpaWlpH6UdeZBynzRSZjLH198lT13WK2hpaWlpaWlpaWlpaV+hzZR5twPbUhNuFsKdYe/rWnJuvhZaWlpaWlpaWlpaWtoXaHMof02ALKvcaubIdllb7PilBXjbrEtaWlpaWlpaWlpaWtrnadto/9KSa7t2M6ypO8KfR958rR30pKWlpaWlpaWlpaWlfbo2FYupMCwF31mMeSbzCCvfmqd9OdWflpaWlpaWlpaWlpb2Udr0nKPbFPsMbzBD+shRYiCXtl+qVO+nLmlpaWlpaWlpaWlpaZ+oXarIXbRIKgJT2biZxFzOS6Xpd7p7tLS0tLS0tLS0tLS0f7y2DD6mxx6liZemKUsYySy7st1NXebKkpaWlpaWlpaWlpaW9vHa3LA7SuZIUdQaM62Gy6c0G2rfpJTQ0tLS0tLS0tLS0tI+Tbvwypjl7R5ry5hlvvPI7cH2e7iZuqSlpaWlpaWlpaWlpX2QdnlYmoNMvb99ZH/aULudukzn3fciaWlpaWlpaWlpaWlpn6JNq9dKx2+ELuDIOZKpb7gY2z23v5jqT0tLS0tLS0tLS0tL+0RtjSpJbbq2qCxl6PKms1sDt2yKPUKcJS0tLS0tLS0tLS0t7bO16UgjlblYnLkVuFyRCsjUIyx5JbS0tLS0tLS0tLS0tC/QluTHFB7S/jnK++XtrOdd+n/eMpuWlpaWlpaWlpaWlvYV2hEKyCZupHTjUkhkbdOV7dWaXbC/UkXS0tLS0tLS0tLS0tI+UltKuo96MidFtrutfVwWnl0ftL+WlpaWlpaWlpaWlpb2jdrRzVrOLkcyLadLxeIMG2ofZZ0dLS0tLS0tLS0tLS0tbb8NW0kfqfgUaVJ4MzT7zttdsGlpaWlpaWlpaWlpaR+pzfhaRS53b1+tnHfkD5YMk2VOk5aWlpaWlpaWlpaW9iXatKxtlmT+pWxMc5ppJjPtwFbuN8NiO1paWlpaWlpaWlpa2rdo//8HLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLe1v0/4FnajhovaFiOwAAAAASUVORK5CYII=", + "revision": "74d275114199440fb88d469c", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "4d3ce1c9138d4f638d5a9a1d", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 20, + "total_amount": 20.2, + "history_id": 1677340892851, + "id": 55087284163, + "date_created": { + "type": 6, + "value": 1677340896928 + }, + "date_last_updated": { + "type": 6, + "value": 1677340896000 + }, + "date_of_expiration": { + "type": 6, + "value": 1677427296705 + }, + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "pending", + "status_detail": "pending_waiting_transfer", + "currency_id": "BRL" + }, + "revision": "e02ca13d6a814bd286f1d016", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "79b4ef5c73aa40299e07218b", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "3b602a5249044a969709bc5b", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, + "revision": "aa80f86e0a7d48cd8f6a1e72", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "d465cb6a405a4f62a497f4f5", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, + "revision": "95c163fd12d142d0ac66f5de", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0 + }, + "revision": "0955f57ad917407e8dcaf3d7", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/ticket_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/payments/55094059932/ticket?caller_id=1310149122&hash=bd1d3d80-d457-4eee-a797-cd6306ae8561", + "revision": "b0543fdc1c734bd1abd58eed", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/qr_code", + "content": { + "type": 5, + "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter550940599326304816F", + "revision": "aceee210016c46f8b74c7138", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/qr_code_base64", + "content": { + "type": 5, + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI6UlEQVR42u3dWw7bNhAFUO5A+9+ldqAiRR8S5w7toEXRUEcfQRLL4pH/BvMa1y90nYOWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaW9t/Xjvk6fvzf8dcHf/7tx7dut/z+z78f8Menjw+mW/6+b7r5ftp4nkFLS0tLS0tLS0tLS/sK7XEP2aZ/3o3TuxzPW6Y3eNwyvdD0zuV51/x4WlpaWlpaWlpaWlra7bUT5f6F8xlKXvnmHEU2kWoJL48Fg5aWlpaWlpaWlpaW9p3aM2TZKqB4mtedAsMpFqWlpaWlpaWlpaWlpaWN0dwiHJyCymMRJ+bSy0fecB3M0tLS0tLS0tLS0tLSvkKb8bXWsnytRpv32PF8vkHzA30q/qSlpaWlpaWlpaWlpd1dOxb9bv/hH/90pgotLS0tLS0tLS0tLe0vqs3X+UzTnXnIyDR9ZCrHbD3TQz9baGlpaWlpaWlpaWlp99aeJYIrLWxnCS+nF2qvMsZ/aqer8/2X2T1aWlpaWlpaWlpaWtpNtfe/1YgxdcOtO9rK867SYtdWe5bIkpaWlpaWlpaWlpaWdm9tecgI0WFKzl05u3d/jSOPkFwv2f7cDUdLS0tLS0tLS0tLS7ufNgeLo6umTOQEHaFYc3yeLXl+07tHS0tLS0tLS0tLS0u7lTbvpU4llUeo0zzCo5okXo4nazkmLS0tLS0tLS0tLS3te7T5nGYsyWJa//SNBGjjxKuLMWlpaWlpaWlpaWlpaV+gzWMg01DHOlFymiqSyizzLu3mJ8jBJy0tLS0tLS0tLS0t7e7aMWJQWaaPHKWuMpVjlheq191zLiJLWlpaWlpaWlpaWlraV2jXI/tzeHmW/rkESOMny6fp3OPjDgJaWlpaWlpaWlpaWtrdtCWjdnVFk8dirkmp2BxdieZ0+BkKOC9aWlpaWlpaWlpaWtrXaNv6y/G5ty2Ffu26tpoUXHx60NLS0tLS0tLS0tLSvkabor5pRdoYq3zgCDP6py63K/fKTUd2gSYtLS0tLS0tLS0tLe0LtI+KyHuY12y3LpSa+8sJwKu85BSpfll1SUtLS0tLS0tLS0tLu4t2McpxSucdJe5sm+Pa3F+aUjIZww9ES0tLS0tLS0tLS0u7tzaFjXWCfwkl0xtMx46SKFz8QClSpaWlpaWlpaWlpaWlfYE2fFh71togsKYHS6Iw7dKu13KQCS0tLS0tLS0tLS0t7Qu0YzG8/1vyF4P/c3nnVHU5Psy6pKWlpaWlpaWlpaWl3Uo7zYxMLXHlmc2gx9IN93G2ZJ5rcq2qLmlpaWlpaWlpaWlpaXfT5in8Z6m/vH/QlGOmasr7zdfz/dIatjMORqGlpaWlpaWlpaWlpd1be5XyyXYiSTuMJI+GrCHiInb8yd1wtLS0tLS0tLS0tLS0u2inE6crrVxLqcByHWGrdkr2XeHcg5aWlpaWlpaWlpaW9k3aLxrSpnxby0tFmD8VMeZRJbS0tLS0tLS0tLS0tC/QTuTSvXZ13XDnMmwci6rLHHJ+n4ukpaWlpaWlpaWlpaXdRZsyagWa0n5XniNZijBrOWbb/lZSgbS0tLS0tLS0tLS0tG/RFtSRM35TweUi43eEHGGq4jzz12hpaWlpaWlpaWlpad+jbcPGNsZMa6/Tp+kpZW5/HuNPS0tLS0tLS0tLS0v7Iu0XqbuUgyslmnW4ydT+lhOKzbm0tLS0tLS0tLS0tLTv0eaR/U2cOAWLhVdzf20TXT5jxKiUlpaWlpaWlpaWlpZ2Z+1U6VhKJY/Q4DaN55+CwKMrs0xT/acV3Ef8WWhpaWlpaWlpaWlpaffWNqFfnr1/Lm+e8oEj5/QWAeT53ZQSWlpaWlpaWlpaWlraLbVpRkieXLLucqt5vkTJI00eWwJoaWlpaWlpaWlpaWnfpK3ZuE9B5Xim6a4wquQMnXarzdhfR5G0tLS0tLS0tLS0tLRbaY9cSJm61+4Pubq92R/fJVdd1m/Q0tLS0tLS0tLS0tK+QpvGO+YF2Efun8vNbKNsVkt9dvd84NFbaGlpaWlpaWlpaWlpt9eWcSMrQGl6O0JLXE7TxYxfyiAuZ13S0tLS0tLS0tLS0tLup03TR6arTJlsxpe0rW7Tj5HqPrut2rS0tLS0tLS0tLS0tDtrp0CueM4u4LsW5ZjT88pbNad9PdWflpaWlpaWlpaWlpZ2K206p5lXcs/ppZhwXaw5QqTaJAC7qktaWlpaWlpaWlpaWtr9tCXqO8Im61UQ+MWe63TfIjRd5iJpaWlpaWlpaWlpaWm31KYJItMckrQUe1FXmYLKI8Sn9fDlVH9aWlpaWlpaWlpaWtr9tNP0kfLPKfN2lVAy/a0dOlnmn4zwQp9rRGlpaWlpaWlpaWlpabfSTjm4WmaZY8xmvVr+HY6cHkxFmCXrSEtLS0tLS0tLS0tLu7f2flhTB5krIlcj+9NC7bbqMt33ORdJS0tLS0tLS0tLS0u7izaNi7xXP05puvN5xHq+SIo7m/65Nm9IS0tLS0tLS0tLS0v7Eu14RnhNmm6R7Btd2ebIe9zSfelwWlpaWlpaWlpaWlra3bXrqK/wzm6M/5HffvHONUeYvkZLS0tLS0tLS0tLS7u7dszXsTi7DTkXf6Rxke0C7PF1do+WlpaWlpaWlpaWlnYf7bEIIEv811ZiHl0V5xXWqzVbsL+JImlpaWlpaWlpaWlpabfUppCuPbvdcz3NHCnlk/W7OYQdqykltLS0tLS0tLS0tLS079COUFzZ7FhbtNOlYDEt1B6lz46WlpaWlpaWlpaWlvbt2qOMEbkfO55nT4nCM480KbwzJPuub7Zg09LS0tLS0tLS0tLS7qfN+DqbJG2yTq9WJpKM/EG5JS14o6WlpaWlpaWlpaWl3V07coNb3qxWn17mizzKJ9MGtvK8MzTb0dLS0tLS0tLS0tLSvkX7/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817W9Rdol/1PnhcgAAAABJRU5ErkJggg==", + "revision": "8b9a9063f8474dbba28acfe6", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "b649d61e150b435485a54415", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 20, + "total_amount": 20.2, + "history_id": 1677340905412, + "id": 55094059932, + "date_created": { + "type": 6, + "value": 1677340909292 + }, + "date_last_updated": { + "type": 6, + "value": 1677341040000 + }, + "date_of_expiration": { + "type": 6, + "value": 1677427309106 + }, + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677340991000 + }, + "money_release_date": { + "type": 6, + "value": 1677340991000 + }, + "wasDebited": true + }, + "revision": "3e9d2846d8e9436fa7a61257", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "657d4638b81c450c81d93c9f", + "revision_nr": 1, + "created": 1702563036307, + "modified": 1702563036307 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, + "revision": "833a87453ce949e1aaa7b981", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "d019269ba2c44ebc8b1251ea", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, + "revision": "431dbc6a80db415cb06cdd8d", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "3be88426b81e4aee9ec7fba9", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0 + }, + "revision": "dfc38ee7bc704dcf8dd32e13", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/ticket_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/payments/55095321700/ticket?caller_id=1310149122&hash=6c50eaaf-2a5f-4be4-a6b8-fd6340b379a5", + "revision": "dbab88204fcb4be4b41e1c58", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/qr_code_base64", + "content": { + "type": 5, + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dW47cNhAFUO5A+9+ldqDAiB8t1i12T2IEsXj0YXhGI+lIfxdVLI7rDzrOQUtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v7+7VjPo5vvzt+nvjxv29XzX/36wbfzx5/3338fM6YnvH9d7c/fn1avT0tLS0tLS0tLS0tLe3ztcdrZJt+TMbpXRL019+lF0rXLhi0tLS0tLS0tLS0tLQbaCfK6wXnPUpe94dNbzWlyCaplnh5LBi0tLS0tLS0tLS0tLR7as9QZauA4mledwqGr7zpH1paWlpaWlpaWlpaWtp7m2WOg1OoPBY58bXN8tfZqRPzoqWlpaWlpaWlpaWl3V2b8anXMtX+psVxRzAeIUWmy/5JjygtLS0tLS0tLS0tLe2frl3J/sN//u1MFVpaWlpaWlpaWlpa2j9Um4/zXqY7uw7LcZ8FeYWyX/W83rRWEIOFlpaWlpaWlpaWlpb22dqzJLhykzOU+G4v1B5ljP+0nK7O919W92hpaWlpaWlpaWlpaR+qnRaupZmRU4AsafMqY0mmnDh9h7bbM3wqWlpaWlpaWlpaWlraJ2vLTUZIh6k4d5V3maBT5CwVv1QjHOFdaGlpaWlpaWlpaWlpN9C+C4tX2W1tTS5VwOZ1F1+JlpaWlpaWlpaWlpZ2K23elzq1VB6hT7O2Y7a9ljlP1s9CS0tLS0tLS0tLS0u7j7aQm9bLPK2/JssFoM2JV5cxaWlpaWlpaWlpaWlpN9DmMZC1fTJNlCwbqB3dkrgrr3xLufNN1yUtLS0tLS0tLS0tLe3TtOnIK9+O0leZ2jHLC9Xj9X7nIlnS0tLS0tLS0tLS0tJuol2N7C9r5c4yUGRKh2m4SXlabdYsS+cOWlpaWlpaWlpaWlranbQlJ14xzdVxI6u2zbScLt20vP1HexDQ0tLS0tLS0tLS0tI+R9v2X6YRJNd9bVuKfu12bbUouDh70NLS0tLS0tLS0tLSbqNNqW/aIm2MVT1whBn97R5rzUbZuRRIS0tLS0tLS0tLS0u7j/bWEfka845c4itTRUap/ZXldOOObx70YdclLS0tLS0tLS0tLS3tU7RllGNtfMxnU4dlc0WKnO+C5kVLS0tLS0tLS0tLS7uNdiw2wJ7C4pQ2U8FukpVy3vSB0jK5c/42tLS0tLS0tLS0tLS0T9aGk6PU6toQeIUeyqlQmPbSrqXF5SATWlpaWlpaWlpaWlraDbRpIdw02j8lxjqqZD34P7d31iEotLS0tLS0tLS0tLS0+2hTOS9vcf31qt3b2ZLtXBNaWlpaWlpaWlpaWtp9tHmA43l/2LgHzZHbMdO7TKNKJlmp6Z2xAEhLS0tLS0tLS0tLS/tsbT3aiSR537WjGw1ZI+IiO35xbzhaWlpaWlpaWlpaWtqnaMvKt1FiY6nzjTI4shxH2FU7Ffuu8NyDlpaWlpaWlpaWlpZ2J+0HC9KmelvLm/7464kxjyqhpaWlpaWlpaWlpaXdQDuR19P605DIHBvHousyR87Pa5G0tLS0tLS0tLS0tLRP0aaKWh4SOcrqtanXsnRdXrkds13+VkqBtLS0tLS0tLS0tLS0+2jbpslUeUsDStINxqjbbZ+ldzNdRktLS0tLS0tLS0tLu4+2jY1txkzbXqez6S5lbn8e409LS0tLS0tLS0tLS7uRto1+6xpcSptT0JyWv+WCYlMypKWlpaWlpaWlpaWl3Ufb7XAWc2Ia9587LJtey/wG56KLk5aWlpaWlpaWlpaW9unaqdOxtEoeYYHbNJ4/5cm65dr0bdIwydTtSUtLS0tLS0tLS0tL+3xtXeBWdq2+yt1Tw+V0q1IeHN390rW0tLS0tLS0tLS0tLT7adOMkNxh+XaVW3p2ftAIZwctLS0tLS0tLS0tLe2G2itU49ahso4vaXsyc9dlG01PWlpaWlpaWlpaWlravbRHbqRMi+OmVXNtq+T6XXLXZb2ClpaWlpaWlpaWlpZ2C20a77gOgaUKeOY5kmkb7elNpxVynYWWlpaWlpaWlpaWlvbx2jyUP/VaplVuUwxdLGuLnyBVEN/PuqSlpaWlpaWlpaWlpX2UNk0fmY40KTJ1TrZL3aaPkfo+u121aWlpaWlpaWlpaWlpn6ydglzxnF3gayuD9f3KWzVP+3iqPy0tLS0tLS0tLS0t7aO0R3hOM6/ktaZXGylTm2U78780XF6fdF3S0tLS0tLS0tLS0tI+UTulyPW4kRoC2ymTuRNzCpBjMf+ElpaWlpaWlpaWlpZ2H22aIJJaJcsEyJFX0uVQeYR8euVZlbS0tLS0tLS0tLS0tPtoc8Eu1e8+2IZtXd1LoyZHeKHllBJaWlpaWlpaWlpaWtqHa5MsPTZXAUdIh+eiPJiaMAONlpaWlpaWlpaWlpb28dpSybvy/tU5O16vjy3GugauHTDZbQZAS0tLS0tLS0tLS0v7ZG273q0t8ZUrrhAHr/J+LX5RN6SlpaWlpaWlpaWlpd1HW0eVpDLd648TZSzbNs+8Bq4cRxhnSUtLS0tLS0tLS0tL+2ztOvUV3tnNIWn7L888oCTVCMu8ElpaWlpaWlpaWlpa2g20bZDLs/fTj80m1rlkeC03wB4fV/doaWlpaWlpaWlpaWmfoz1CgGzGjUxVuzYJlhi6Gvz/tRRJS0tLS0tLS0tLS0v7SG2JdLfhISUONvtcp8vCs0cKqYtraWlpaWlpaWlpaWlpd9Qei17LvIFaWk6XwuIZNtQeZZ0dLS0tLS0tLS0tLS0t7TWNG3l97Lg/+yr4NNKk8M5Q7Lve7IJNS0tLS0tLS0tLS0v7UG3G1xSZJo2kVyt/N/KJ9L3ep0haWlpaWlpaWlpaWtqHaUde4JZ3Vju7ASVpcsnIO7ClLs70SFpaWlpaWlpaWlpa2i20//+DlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlva3af8CP/KbUvmRbJkAAAAASUVORK5CYII=", + "revision": "51b5bfee48bd4f6e84aab10f", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/qr_code", + "content": { + "type": 5, + "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter550953217006304FF73", + "revision": "fa7e046f0a8540398048f5ea", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "7e65a725b8fa424eaa443096", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 20, + "total_amount": 20.2, + "history_id": 1677342602434, + "id": 55095321700, + "date_created": { + "type": 6, + "value": 1677342606615 + }, + "date_last_updated": { + "type": 6, + "value": 1677342755000 + }, + "date_of_expiration": { + "type": 6, + "value": 1677429006238 + }, + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677342740000 + }, + "money_release_date": { + "type": 6, + "value": 1677342740000 + }, + "wasDebited": true + }, + "revision": "430b14710eab4b73add9e053", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "e4c8e4ca40af436781cf9890", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 3.9600000000000004 + }, + "revision": "5f82b19cfabe48e0a22f3111", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "85af4902eb50457884017d29", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, + "revision": "54f58d4baa3d41fe8fd0d94c", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "148cc9734af4441b848a4650", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 403.96, + "overpaid_amount": 0, + "installment_amount": 0 + }, + "revision": "238cb202890f4ebdb188f2f7", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/ticket_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/payments/55103336998/ticket?caller_id=1310149122&hash=9ef20da2-8e33-4bd3-baa0-734357868736", + "revision": "ae4ad19cdff945f991700229", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/qr_code_base64", + "content": { + "type": 5, + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2ElEQVR42u3dW47jNhAFUO6A+9+ldqBgkJnYZl1SBjIIMuTxR6PdtqTD/ivUq91/0OtqtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/X9vGV//xt/7PB79++3HV3z9eH7xu8PODX9e+vvf+jF8fvL78flll0NLS0tLS0tLS0tLSHqLt7yHb8DY/7H5/zvtv6ysmn74fMjFoaWlpaWlpaWlpaWkP0A4B5HDBEEpmxfUZWdZnvwLE17WLwJWWlpaWlpaWlpaWlvZs7fV5k/dLWwkbP9J+JQH4kg2nTz9oaWlpaWlpaWlpaWlpQ5llSrrl+K991lAO2hYO1N7PQktLS0tLS0tLS0tLe6x2ik8fvJ6diiZLD1zK6fWv8oG0tLS0tLS0tLS0tLSHaKdTSv7bH/92pgotLS0tLS0tLS0tLe0fqs2vOtSxjCVJH9yha27aDVeThzMLLS0tLS0tLS0tLS3t3tqrRHDlduvmuHtRdZnwOY04TfbR0tLS0tLS0tLS0tLurn09NvGGtrYrvM0tbLXWMpVeTpKMDzEvLS0tLS0tLS0tLS3tVtorzNmvwV0ZX3LPVrOltrbVM57uQktLS0tLS0tLS0tLu7v2fh8tMtwuJeLeE3YtTylJNZlpXknau/ZcI0pLS0tLS0tLS0tLS7uZ9grQaeatf6bu7hJormPM9fK14X60tLS0tLS0tLS0tLRHaHMP3HCTSa1lSQ+miPFezPdfMG5aWlpaWlpaWlpaWtpDtENtZIoEp8Mfywa2XqLDLJv02eUIlJaWlpaWlpaWlpaWdm/t8LChmjLtuU6zIN9vdX2m/eqrxJ1D8nBRdUlLS0tLS0tLS0tLS7ufNi9Lu/Pw/pLdG1ripn+rTyvxaRpuQktLS0tLS0tLS0tLe4o2vc0tcauSynLcVuLElFDMVZw3LS0tLS0tLS0tLS3tIdpSNNmWI0juvNi6TCm5QhR5LQ755RZsWlpaWlpaWlpaWlraHbXDQMi67Lpk6Ca8HCLeJZOXp/qnVCAtLS0tLS0tLS0tLe0B2pK/a8s914/1lyWdd5W0X8kW9och/7S0tLS0tLS0tLS0tDtrU0Naejtk6PJEkskVKU5cBJr9IealpaWlpaWlpaWlpaXdTJsok2H7aTRkDkj7YoHa8A9aCGhpaWlpaWlpaWlpaQ/Qln63K6yuXg96bGFmZF/sC0jZwjTIhJaWlpaWlpaWlpaW9iRtK1McB22unOwhsuzLESRXeFAagkJLS0tLS0tLS0tLS3uKdnr3EiL2vIutPHaV8UtDUPLBaWlpaWlpaWlpaWlpT9EOdZWlK22IMXvIy/Ulqi1mS+aqy05LS0tLS0tLS0tLS3uWdrhJieHiMMnhVKUws4V/QfuccHKXSf/P29ZoaWlpaWlpaWlpaWn30w7TQhZTSuoGttIIt6JMg89ydaelpaWlpaWlpaWlpT1JO5Dz2z4rmqwpuTybpIaXKWLMo0poaWlpaWlpaWlpaWmP0qaqy4JaD5gcAs3a5ZZi1rQKm5aWlpaWlpaWlpaW9ghtHhI52VC9GDWZIsGhG+4qCcDF8uyblpaWlpaWlpaWlpb2QO1jXDeUaE7PXFazTSLQp1iUlpaWlpaWlpaWlpb2AG1qXCt3mmT8Sudbmgo5rMdueeb/4kVLS0tLS0tLS0tLS7u3drGcuoXt1n3WK9cKqsw6STWerWT8HmJeWlpaWlpaWlpaWlra/bRDHeT9HifmU915gv9wvkVl55UnSqaj0dLS0tLS0tLS0tLS7q4t6bc0oGQSba4DyHS+ISAtGwFSApCWlpaWlpaWlpaWlnZ37b2cuF9vkrJ7QxA4fGWaLUwFnOGmtLS0tLS0tLS0tLS0O2un4WDebl3zcnn6f3seF1lLOWfL3GhpaWlpaWlpaWlpaXfWTm9SEnF3ifoWW9laGA35bdVlodHS0tLS0tLS0tLS0u6sLWFjzxP3Q5Nay1P479xil+aaLKo4Oy0tLS0tLS0tLS0t7SHaVPM4TeKVbFx9pfOVkHMVwj5MKaGlpaWlpaWlpaWlpd1Pe4UCySs0s/XcNVeCxfaZ3etZlr6XL6OlpaWlpaWlpaWlpT1AW1rdrtL5thj+OGy87uHZqacuhbAXLS0tLS0tLS0tLS3tmdoSJ/Ywxr9WWE6XYq+P+xSVdlpaWlpaWlpaWlpa2rO0H+T3O/VFbWTpaFtfe+cvh0mRX9SI0tLS0tLS0tLS0tLS7qi9P1vdegjzpum3aWFmSh5OvpdXZtPS0tLS0tLS0tLS0h6gnXa0DQ9bJ/FKSeU1m1KyrrrMkSUtLS0tLS0tLS0tLe3O2oQqabrJdrRy0iu0v9XzPTXMfVV1SUtLS0tLS0tLS0tLu6l2msQrPXC9RIepTjPv0r7D8uzpi5aWlpaWlpaWlpaW9gBtGe9Yo770nJLOu0v+Ln2lBK49JBQ7LS0tLS0tLS0tLS3tIdo8LrKWQA7GlJybVk6WqZCTbOE33XC0tLS0tLS0tLS0tLSbalv8Wu1Zq2fJYei0Q+7OQ1BywSUtLS0tLS0tLS0tLe0B2vQanrg4Ri2pLI1w07RfD9Fma+2bGlFaWlpaWlpaWlpaWtqNtDmQS7/12aLsO28ESEHq+5cnd/4yu0dLS0tLS0tLS0tLS7uPtra6Tfvi3mPHNBryzk8sg0yu3Pn2TRRJS0tLS0tLS0tLS0u7pTaFdDkITAP9rxKJpuEmJYPYn0JYWlpaWlpaWlpaWlra07U1bEwdcjkvV68oe7NT3PlVdo+WlpaWlpaWlpaWlvYobR3ePx01mf82OeS02W65BZuWlpaWlpaWlpaWlnZTbcH3PKg/xX8lxVfn9peJJCkWnVRx0tLS0tLS0tLS0tLS7q+thY9DAFnuNJlSkkLTcshpGHqFM9PS0tLS0tLS0tLS0h6g/f+/aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/m/Yv5+S5wPHlkOQAAAAASUVORK5CYII=", + "revision": "131d07e17ba3417db2a60687", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/qr_code", + "content": { + "type": 5, + "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d127175204000053039865406403.965802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter551033369986304804E", + "revision": "eb8eb01094504556938486c7", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "e1d9df2fe70f4189a8eb48f6", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 400, + "total_amount": 403.96, + "history_id": 1677356987387, + "id": 55103336998, + "date_created": { + "type": 6, + "value": 1677356988037 + }, + "date_last_updated": { + "type": 6, + "value": 1677356988037 + }, + "date_of_expiration": { + "type": 6, + "value": 1677443387844 + }, + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "pending", + "status_detail": "pending_waiting_transfer", + "currency_id": "BRL" + }, + "revision": "f8c5e177972d452a97f739a9", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "852e92166d484e67a0412ad4", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 9.9 + }, + "revision": "60d0c19c33be410496ab4d3e", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "089d5c0a165c4787bd82edc3", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, + "revision": "49a8ce48a6de415f8fbbba0f", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "7b87190314eb4806a9144559", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 1009.9, + "overpaid_amount": 0, + "installment_amount": 0 + }, + "revision": "ca9c67a716264c9094552f1f", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/ticket_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/payments/55096573577/ticket?caller_id=1310149122&hash=90c37e8f-66e2-44f0-8c67-647e232f6bda", + "revision": "de269504ffa549148dd4e4d1", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/qr_code", + "content": { + "type": 5, + "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d1271752040000530398654071009.905802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter5509657357763045E7D", + "revision": "f03a22aa1ade4c76a9b893a3", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/qr_code_base64", + "content": { + "type": 5, + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIy0lEQVR42u3dW47jNhAFUO5A+9+ldqBgkMdYrFu0ggRBRjz+MNwtSzry30UVi+P6hV7noKWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaX997Vjfh0//nf8deDPTz/OGj8/TRf44+jxeZfpQLnU8TtlfN7txqClpaWlpaWlpaWlpd1EO93iKDFuhNcn+ZyvfrvjmZ+vaFsGLS0tLS0tLS0tLS3tBtopQE4npK/8Qb7uxp+86/PTlBM/D7TBlZaWlpaWlpaWlpaWdm/tVHS7RcTQFplKcnNlsNwyvdHS0tLS0tLS0tLS0tLGiHiFZJnyX1P7m5owP59vhKBJS0tLS0tLS0tLS0u7n3aBn5bETaedy6LgKKhy4Pje/ElLS0tLS0tLS0tLS/t2bTul5L99+6czVWhpaWlpaWlpaWlpaX9RbX6dechIeapbce6ziNcup6ur4b5baGlpaWlpaWlpaWlp3609u9GQ6cCtsLd+jHKp1cz/6St9iqSlpaWlpaWlpaWlpX2bdrpmu1wtxcv2MfIDPVtnVyah0NLS0tLS0tLS0tLSbqD9vOPIC9zKLMjbpth5oH86cHWbbN9+jO89orS0tLS0tLS0tLS0tO/RphEkqaaXPrVbZh+lfpe6LtO+a19SJC0tLS0tLS0tLS0t7cu1paaX2iKnrFf/nAp7U3mwjau5RZOWlpaWlpaWlpaWlvbd2nKlqUuylt/C5UY6d51Kv4XPi5aWlpaWlpaWlpaWdhPtVFabCmwlLI6QDpNxasycZEco56Vb0tLS0tLS0tLS0tLSbqDNFz5zw+V0NFUG21kni+GUR6gqXrS0tLS0tLS0tLS0tJto00bUZQlbbalMS+LKWMlcqxupnJcbOGlpaWlpaWlpaWlpabfQNtNHEjQHvpaXNgg4855tJYFetLS0tLS0tLS0tLS022iPsCBtGv44RtyfrcjSmrrRjew/l8W+g5aWlpaWlpaWlpaWdhtt0yo5DSNpJ/gvlrqNbhfsZq7Jk65LWlpaWlpaWlpaWlrat2nTfUrGTGNJmjmSZeVbKiMe4c+65zYtLS0tLS0tLS0tLe0m2tWMx6nsl0dIpqGT4/4YjTHvIXCsUiQtLS0tLS0tLS0tLe3btNNquPDdftRk6qFM6+emq0wFwJQ2H04poaWlpaWlpaWlpaWlfYF2mj4yVe0WK+S+7oJdfof0Y0zG712XtLS0tLS0tLS0tLS0L9WOMOOxBsM8VjKR0+5tzbjI0nU5+umRtLS0tLS0tLS0tLS079MuAuTRLWE7w9z+o8TB1FeZF9Fd3bI7WlpaWlpaWlpaWlraDbSpLjedP5Xp2iklKVmW57u6qf5T2qSlpaWlpaWlpaWlpd1He93LapPiDLHxKrzUmFmGljTJMrVyPpl1SUtLS0tLS0tLS0tL+w7tZw/luLdZtrc98qSRcoFUD7zCGP/mXFpaWlpaWlpaWlpa2i207fltWMxr2+q5i6n+TWLMo0poaWlpaWlpaWlpaWm30ibZt0VvdZDJYvTJFRJo+2PQ0tLS0tLS0tLS0tJuoF3kujpfJCS8kZLg8+3VUgKlpaWlpaWlpaWlpaXdT/stE14hVF6LzslUqys/wbjvHDA1f9LS0tLS0tLS0tLS0u6i/Uxz436lq6yVa8eXlH3XGk+e279+0dLS0tLS0tLS0tLSvl17ho7II5BH2Rk7nVGSYJ08mQej1B+IlpaWlpaWlpaWlpZ2C+1Uzitj/Nedk81ebFN3Zn6Cupd23iOblpaWlpaWlpaWlpb23dqyB/XtmikYFsqDPs2rjCBJ4yfTVWhpaWlpaWlpaWlpad+vXbQ7jgcZMzVcliR4dRW/K2+eTUtLS0tLS0tLS0tLu5N2de+2LTJFztTKWRbCnSGVHuG+tLS0tLS0tLS0tLS0u2gnSm6GrI+WNrGeLpqeOf1A6Za0tLS0tLS0tLS0tLQ7aWt8+0yMqxVy5Su1kle2UrvyJtvpDFpaWlpaWlpaWlpa2u20tThXHqNds3aVQSZ5XGRzt+VO27S0tLS0tLS0tLS0tG/WrmtwaTVcHvc/PWTahq0m1RJXc7alpaWlpaWlpaWlpaV9s7Ydtl+S4LGMg+3gkStvBjAJcsmQlpaWlpaWlpaWlpZ2A20pv4379JErZMc6LnIa2Z8y5nrIfzmXlpaWlpaWlpaWlpZ2F23Odc1ytdIleeU7truypQElbY6lpaWlpaWlpaWlpaXdRHssd7Ie93mOaYFbSqAjLHBLhcJ1xqSlpaWlpaWlpaWlpd1A2zZNpkyYym+fDzTKcJP0aE8XzNHS0tLS0tLS0tLS0m6mXUwpScNIUsHuXPRurguA7Y9BS0tLS0tLS0tLS0u7mTYly1Lxm27WNmbeKoNtn2aOkhctLS0tLS0tLS0tLe1O2hIWV/uk5S9PyfIqtb/pbQqay8V2tLS0tLS0tLS0tLS0b9YWzxnqbefzHdjaLs626zL3adLS0tLS0tLS0tLS0m6mHSUE5iVsqSh4hGQ5XfnMe6yluSZhcRwtLS0tLS0tLS0tLe2btelVxpJMc/unhWvNnymVPtif7UmPKC0tLS0tLS0tLS0t7Yu06yA3/a+81dPSWy72pdPG4+oeLS0tLS0tLS0tLS3te7THIkCWjdHOsGZtSoLtp3N5lYcpkpaWlpaWlpaWlpaW9pXaxCsZs50eeYU8OeZJIyONi8wRdqymlNDS0tLS0tLS0tLS0u6hPboxkNdiouSUGNuttVN2/DvVPVpaWlpaWlpaWlpa2q20Zxfurhwqy6iSYzHpf7rHdD1aWlpaWlpaWlpaWtp9tO29fxbn1rP3015suZJXF8fl0Se0tLS0tLS0tLS0tLT7aGvjY7lIPZBkJQmObqD/EaZHTttj09LS0tLS0tLS0tLS7qL9/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817W9ibLveeVntBwAAAABJRU5ErkJggg==", + "revision": "64c9d3380f874522ad7043e1", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "a5f344d224784103a58d621c", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 1000, + "total_amount": 1009.9, + "history_id": 1677357024740, + "id": 55096573577, + "date_created": { + "type": 6, + "value": 1677357025343 + }, + "date_last_updated": { + "type": 6, + "value": 1677357025343 + }, + "date_of_expiration": { + "type": 6, + "value": 1677443425167 + }, + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "pending", + "status_detail": "pending_waiting_transfer", + "currency_id": "BRL" + }, + "revision": "a8acf026fb68443486285c01", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "0de546f395d644bf9766445f", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "305b6b2fbf474eebb1f8bc9c", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, + "revision": "bd894df3b5654f318fbfd08f", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "0ac4a8e3d93b4bdc848373ea", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.34650000000000003 + }, + "revision": "5a2c02ff947d479e9571de1b", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 35.35, + "overpaid_amount": 0, + "installment_amount": 0 + }, + "revision": "cc6f1bbed2c44e058616e547", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/ticket_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/payments/55102778083/ticket?caller_id=1310149122&hash=732fd12f-b6ab-488b-bf46-c6e842577653", + "revision": "afa264fcac154ad5ac62bf5f", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/qr_code_base64", + "content": { + "type": 5, + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIyElEQVR42u3dW47jNhAFUO5A+9+ldqAgyMti3aKVTBBkxKOPRnfblg79V6jXuH6i6xy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tP++dszX8ev/jj9f+OO3Xz/1cU03+P3V47e7jz+fM6Zn/P6/25s/n3Zj0NLS0tLS0tLS0tLSbqI9PkO26c/PuzdnSdC/3pcOlD67YNDS0tLS0tLS0tLS0m6gnSjTBz5DySkmvJ2qRJFNpFrCy2PBoKWlpaWlpaWlpaWl3VPbZPJKTm/ypOPeIsspxiw/aGlpaWlpaWlpaWlpae9lluk5kzYVTT4vvUx3oaWlpaWlpaWlpaWl3U+b8bVDrpzgLN1rn+9r++em0svrh2pEaWlpaWlpaWlpaWlpf3ZtO6Xkv/3xozNVaGlpaWlpaWlpaWlpf1Jtvs6SiJsSdmWsZJv2q55804WFlpaWlpaWlpaWlpb23dqzRHA5iXfcp0LeDtReZYz/1E53hhmUi+weLS0tLS0tLS0tLS3tS7Wfv02damc3JHKKNq8wVvIskyJTi91UiRkeSUtLS0tLS0tLS0tL+2ZtuUltf8vJuZZ3lbgzrWH7fNDIQ0toaWlpaWlpaWlpaWn30ZYxIhP5KtvWplhvel+qyUzHbWdL0tLS0tLS0tLS0tLSbqbN+DOUVKYCydF5UqvbmXvl0ldFS0tLS0tLS0tLS0u7hfYzCFwNIynT+o/uaC2gjROvLsakpaWlpaWlpaWlpaXdQJtniaTU3bkIEdMMk1KJOb25fgW5V46WlpaWlpaWlpaWlvbd2nTlzrdpNklTjrnIDI7Q73YuIktaWlpaWlpaWlpaWtottFPn23ST3L12lv65BPhsibvuJ62PTOsDaGlpaWlpaWlpaWlpt9C2c/ZTArDUWrZxZ7OLLYSI9fSPdhDQ0tLS0tLS0tLS0tK+R9vKUnh5lYAvT/A/QxSZhpu0rx60tLS0tLS0tLS0tLTbaFPU16xIS3HndL7pQPku02bs6VbLGlFaWlpaWlpaWlpaWtqXaq8SDrbZuMk4UVLnW5aliDF/N7S0tLS0tLS0tLS0tG/Wrkc5lldrFjA1x5X71TixjVRL8SctLS0tLS0tLS0tLe3btWn44/Vl/1kdCJmG/FdyejUPMjloaWlpaWlpaWlpaWk30YYX458PgsB0lnUsWuLOR1WXtLS0tLS0tLS0tLS0b9SOsvCsRIptM1uaD3l2z66vliLM8WXWJS0tLS0tLS0tLS0t7au0pbftLCm+9L40OLJ0w32dLVnC0PNLFElLS0tLS0tLS0tLS/s+bZ7CP3lGSPGdXa3lkePT6X2L4POgpaWlpaWlpaWlpaXdS5tKII9yllRhmTra2tmS32LHf7IbjpaWlpaWlpaWlpaW9gXa6Yl5+kgTaKZ5JW3ImZN96/JOWlpaWlpaWlpaWlraDbQPGtK+3X3k+O/vR4x5VAktLS0tLS0tLS0tLe0G2gnVdq+FishV2DgWVZc55Hyei6SlpaWlpaWlpaWlpX2LNmXUvg2JbIf8X+GFWo7Ztr+VVCAtLS0tLS0tLS0tLe0u2pK1OxY5vZwATJWT9S3rjQB5KxstLS0tLS0tLS0tLe27tVOaLp/gyJNLUhRZPNcdcI46ujJZaGlpaWlpaWlpaWlpt9KW2SRNTu9btJkWaqfp/2kwSh1JSUtLS0tLS0tLS0tLu4W2PGcK7s6c7GuXpaXwsqCmE9TfaGlpaWlpaWlpaWlp99GmJF472TGP52+KJj/LLJvT5xa7g5aWlpaWlpaWlpaWdidtieueBZDtUuwcXtasXTpzmvlPS0tLS0tLS0tLS0v7fu0oK67bzWqpa650ud1KL/OfKYBMN6WlpaWlpaWlpaWlpd1H2+TvUqBZknh5RVodDTm+3flxFElLS0tLS0tLS0tLS/sq7dGl2q77s+vVlkquz5KXbNdP0NLS0tLS0tLS0tLSbqFN4x1LSJfa1Uboi5vWY59lj1up9ryVd3YWWlpaWlpaWlpaWlra12uncSMpEkxVlylNt2xrixm/3Bx30NLS0tLS0tLS0tLS7qTNhY816is5uBr/LSZKjvtZat3nk6n+tLS0tLS0tLS0tLS0b9Oup5SkWZBTWWT5RD3fFCe2p38y1Z+WlpaWlpaWlpaWlvZ92qP0u6WBkCUfWJ+TyizTzP88avJ6UnVJS0tLS0tLS0tLS0v7Pm0pvTzCArUmCExpupwAHGU/W6rxLN8XLS0tLS0tLS0tLS3tFto6GrItlWyXWOfd12dorGurLuv2bVpaWlpaWlpaWlpa2i20+WFpQ/W5nE3yILuXRk22M1FoaWlpaWlpaWlpaWn30Y7FVMg0N+T5erWpz269ALuJaGlpaWlpaWlpaWlpad+uLVHfCLymra0d2V8Wap+LqsuyeHuZi6SlpaWlpaWlpaWlpX2bNnWvfX5qFFSKGPN8kRqGpqrLdcxKS0tLS0tLS0tLS0u7iXbc71lrKMtjp2TfWJRtprOkas/yFdDS0tLS0tLS0tLS0m6gTVdZfTbK2P1cQ1lPn/N8V+iku8oISVpaWlpaWlpaWlpa2i20Y76OLjC8FqP4203WeVxkuwB7PM7u0dLS0tLS0tLS0tLSvkd7hAAyoc571m6UzrdcxZlu2kzwfxJF0tLS0tLS0tLS0tLSvlKbQ7pjMRUyBZopIA3P7iPV6ZG0tLS0tLS0tLS0tLR7a8vwkDOvwn7QTlfqNJvY8WF2j5aWlpaWlpaWlpaWdg/tZ+pu5JH9efDIdW+TG7lhbrpfasWjpaWlpaWlpaWlpaXdR7uuuiy3G2FtWjNCMnXcrZvjfrQbjpaWlpaWlpaWlpaW9qfTplLJpvNtSsTl+SI3fNrAttjUlhe80dLS0tLS0tLS0tLSvln7/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817S/WesxQ9BOm/QAAAABJRU5ErkJggg==", + "revision": "038b81078c28489ba693b3cc", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/qr_code", + "content": { + "type": 5, + "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540535.355802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter55102778083630472DE", + "revision": "dc77e304ea0e4f288c728646", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "91d5f6272ac94292b153ac1d", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 35, + "total_amount": 35.35, + "history_id": 1677366880189, + "id": 55102778083, + "date_created": { + "type": 6, + "value": 1677366880808 + }, + "date_last_updated": { + "type": 6, + "value": 1677366880808 + }, + "date_of_expiration": { + "type": 6, + "value": 1677453280616 + }, + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "pending", + "status_detail": "pending_waiting_transfer", + "currency_id": "BRL" + }, + "revision": "e7439a99a9fe41f885998aaa", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 35,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "6bb265f581524cf9bab1775d", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710195891/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "7eab426630ba4b36b8a622e1", + "revision_nr": 1, + "created": 1702563036309, + "modified": 1702563036309 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710195891", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "original_amount": 234.59, + "total_amount": 234.59, + "history_id": 1677710195891, + "id": 1677710195891, + "date_created": { + "type": 6, + "value": 1677710195891 + }, + "date_last_updated": { + "type": 6, + "value": 1677710195891 + }, + "date_of_expiration": { + "type": 6, + "value": 1680302195891 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "payment_method": "whatsapp" + }, + "revision": "90e13feefa884c50a3953503", + "revision_nr": 1, + "created": 1702563036309, + "modified": 1702563036309 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710195891/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 234,59 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "05393988e08d4dccb5a62663", + "revision_nr": 1, + "created": 1702563036308, + "modified": 1702563036308 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710725908/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "39db5f812a6045b7b8872dfc", + "revision_nr": 1, + "created": 1702563036309, + "modified": 1702563036309 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710725908", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "original_amount": 35.99, + "total_amount": 35.99, + "history_id": 1677710725908, + "id": 1677710725908, + "date_created": { + "type": 6, + "value": 1677710725908 + }, + "date_last_updated": { + "type": 6, + "value": 1677711571236 + }, + "date_of_expiration": { + "type": 6, + "value": 1680302725908 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677711571236 + }, + "money_release_date": { + "type": 6, + "value": 1677711571236 + }, + "money_release_status": "approved", + "wasDebited": true, + "payment_method_id": "whatsapp", + "payment_method": "whatsapp" + }, + "revision": "4f9238a7271d478c9d379f96", + "revision_nr": 1, + "created": 1702563036309, + "modified": 1702563036309 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710725908/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 35,99 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "bbe106150c144c5bb0e86243", + "revision_nr": 1, + "created": 1702563036309, + "modified": 1702563036309 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677711669840/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "7c8b5a9085144300abf86d0e", + "revision_nr": 1, + "created": 1702563036309, + "modified": 1702563036309 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677711669840", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "original_amount": 450.32, + "total_amount": 450.32, + "history_id": 1677711669840, + "id": 1677711669840, + "date_created": { + "type": 6, + "value": 1677711669840 + }, + "date_last_updated": { + "type": 6, + "value": 1677712164561 + }, + "date_of_expiration": { + "type": 6, + "value": 1680303669840 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1677712164561 + }, + "money_release_status": "approved", + "date_approved": { + "type": 6, + "value": 1677712164561 + }, + "wasDebited": true, + "payment_method_id": "whatsapp", + "payment_method": "whatsapp" + }, + "revision": "9b42ad46423347f68915604e", + "revision_nr": 1, + "created": 1702563036309, + "modified": 1702563036309 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677711669840/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 450,32 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "d08045806f33447b9e18de02", + "revision_nr": 1, + "created": 1702563036309, + "modified": 1702563036309 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677716372778/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "43abd8c6de734360b8a8aec5", + "revision_nr": 1, + "created": 1702563036310, + "modified": 1702563036310 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677716372778", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 600.2, + "total_amount": 600.2, + "history_id": 1677716372778, + "id": 1677716372778, + "date_created": { + "type": 6, + "value": 1677716372778 + }, + "date_last_updated": { + "type": 6, + "value": 1677716444134 + }, + "date_of_expiration": { + "type": 6, + "value": 1680308372778 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1677716444134 + }, + "money_release_status": "rejected" + }, + "revision": "60a41789e4b944d3a4547679", + "revision_nr": 1, + "created": 1702563036310, + "modified": 1702563036310 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677716372778/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 600,20 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "4782b92ed9b04793ac4c2e9d", + "revision_nr": 1, + "created": 1702563036310, + "modified": 1702563036310 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677721233156/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "f3ae6090532745639fd97bc5", + "revision_nr": 1, + "created": 1702563036310, + "modified": 1702563036310 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677721233156", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 602.99, + "total_amount": 602.99, + "history_id": 1677721233156, + "id": 1677721233156, + "date_created": { + "type": 6, + "value": 1677721233156 + }, + "date_last_updated": { + "type": 6, + "value": 1677723466177 + }, + "date_of_expiration": { + "type": 6, + "value": 1680313233156 + }, + "operation_type": "regular_payment", + "status": "in_process", + "status_detail": "pending_review_manual", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1677723466177 + }, + "money_release_status": "in_process" + }, + "revision": "5140354fd9d04c51b8a289e8", + "revision_nr": 1, + "created": 1702563036310, + "modified": 1702563036310 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677721233156/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 602,99 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "6122da348bf64b989e1dbbfc", + "revision_nr": 1, + "created": 1702563036310, + "modified": 1702563036310 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677761687105/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "9dd0aae0e4364bcebacbcf30", + "revision_nr": 1, + "created": 1702563036310, + "modified": 1702563036310 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677761687105", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 34.89, + "total_amount": 34.89, + "history_id": 1677761687105, + "id": 1677761687105, + "date_created": { + "type": 6, + "value": 1677761687105 + }, + "date_last_updated": { + "type": 6, + "value": 1677761894846 + }, + "date_of_expiration": { + "type": 6, + "value": 1680353687105 + }, + "operation_type": "regular_payment", + "status": "cancelled", + "status_detail": "cancelled", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1677761894846 + }, + "money_release_status": "cancelled" + }, + "revision": "122f0e858cbd4f628ac045b0", + "revision_nr": 1, + "created": 1702563036311, + "modified": 1702563036311 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677761687105/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 34,89 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "d8e03098cf3345b4b863b116", + "revision_nr": 1, + "created": 1702563036310, + "modified": 1702563036310 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677762883870/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "1c427f412d854c10a06b9729", + "revision_nr": 1, + "created": 1702563036311, + "modified": 1702563036311 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677762883870", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 43.78, + "total_amount": 43.78, + "history_id": 1677762883870, + "id": 1677762883870, + "date_created": { + "type": 6, + "value": 1677762883870 + }, + "date_last_updated": { + "type": 6, + "value": 1677763063393 + }, + "date_of_expiration": { + "type": 6, + "value": 1680354883870 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677763063393 + }, + "money_release_date": { + "type": 6, + "value": 1677763063393 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "ef653fac6f874b3d85558f4a", + "revision_nr": 1, + "created": 1702563036311, + "modified": 1702563036311 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677762883870/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 43,78 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "ca6c25a359194e9682416931", + "revision_nr": 1, + "created": 1702563036311, + "modified": 1702563036311 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677822431645/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "4c883e7085be43f8a5f2aeef", + "revision_nr": 1, + "created": 1702563036311, + "modified": 1702563036311 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677822431645", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 29.91, + "total_amount": 29.91, + "history_id": 1677822431645, + "id": 1677822431645, + "date_created": { + "type": 6, + "value": 1677822431645 + }, + "date_last_updated": { + "type": 6, + "value": 1677822492770 + }, + "date_of_expiration": { + "type": 6, + "value": 1680414431645 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677822492770 + }, + "money_release_date": { + "type": 6, + "value": 1677822492770 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "ca6b067c7ae34a3b88dffa94", + "revision_nr": 1, + "created": 1702563036311, + "modified": 1702563036311 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677822431645/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 29,91 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "f434720edcc546ce978b9141", + "revision_nr": 1, + "created": 1702563036311, + "modified": 1702563036311 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677831643976/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "d41ffe8526e94a2cad5c3cb2", + "revision_nr": 1, + "created": 1702563036311, + "modified": 1702563036311 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677831643976", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1677831643976, + "id": 1677831643976, + "date_created": { + "type": 6, + "value": 1677831643976 + }, + "date_last_updated": { + "type": 6, + "value": 1677831798262 + }, + "date_of_expiration": { + "type": 6, + "value": 1680423643976 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677831798262 + }, + "money_release_date": { + "type": 6, + "value": 1677831798262 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "561f59fb6930441d9704d552", + "revision_nr": 1, + "created": 1702563036311, + "modified": 1702563036311 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677831643976/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "cb8436135a644289af7757f1", + "revision_nr": 1, + "created": 1702563036311, + "modified": 1702563036311 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677952604160/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "192861340a054bc8a199f815", + "revision_nr": 1, + "created": 1702563036311, + "modified": 1702563036311 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677952604160", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1677952604160, + "id": 1677952604160, + "date_created": { + "type": 6, + "value": 1677952604160 + }, + "date_last_updated": { + "type": 6, + "value": 1678714344731 + }, + "date_of_expiration": { + "type": 6, + "value": 1680544604160 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1678714344731 + }, + "money_release_status": "rejected" + }, + "revision": "c0e3f696dfca49cabe3ad482", + "revision_nr": 1, + "created": 1702563036311, + "modified": 1702563036311 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677952604160/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "3e34fce96dca4f23b4f7a761", + "revision_nr": 1, + "created": 1702563036311, + "modified": 1702563036311 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033196645/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678033196645, + "acquirer_reference": "", + "verification_code": 1678033196645, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "dd7e583c17fd4158b3013555", + "revision_nr": 1, + "created": 1702563036311, + "modified": 1702563036311 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033196645", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 141586, + "total_amount": 141586, + "id": 1678033196645, + "date_created": { + "type": 6, + "value": 1678033196645 + }, + "date_last_updated": { + "type": 6, + "value": 1678033196645 + }, + "date_of_expiration": { + "type": 6, + "value": 1678033196645 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678033196645, + "description": "Compra de 141586 IVIP por 20 BRL" + }, + "revision": "1f9aa77c1e27430d937ca00f", + "revision_nr": 1, + "created": 1702563036311, + "modified": 1702563036311 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033334564/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678033334564, + "acquirer_reference": "", + "verification_code": 1678033334564, + "net_received_amount": 0, + "total_paid_amount": 38, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "d80c4fe6f08c4e28b78e7091", + "revision_nr": 1, + "created": 1702563036311, + "modified": 1702563036311 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033334564", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 269014, + "total_amount": 269014, + "id": 1678033334564, + "date_created": { + "type": 6, + "value": 1678033334564 + }, + "date_last_updated": { + "type": 6, + "value": 1678033334564 + }, + "date_of_expiration": { + "type": 6, + "value": 1678033334564 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678033334564, + "description": "Compra de 269014 IVIP por 38 BRL" + }, + "revision": "0803d5da8a364e8ba50b58cb", + "revision_nr": 1, + "created": 1702563036311, + "modified": 1702563036311 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033849155/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678033849155, + "acquirer_reference": "", + "verification_code": 1678033849155, + "net_received_amount": 0, + "total_paid_amount": 42, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "2f80ef3b067a46ac8ab09186", + "revision_nr": 1, + "created": 1702563036311, + "modified": 1702563036311 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033849155", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 297331, + "total_amount": 297331, + "id": 1678033849155, + "date_created": { + "type": 6, + "value": 1678033849155 + }, + "date_last_updated": { + "type": 6, + "value": 1678033849155 + }, + "date_of_expiration": { + "type": 6, + "value": 1678033849155 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678033849155, + "description": "Compra de 297331 IVIP por 42 BRL" + }, + "revision": "0590afd289344fab9a6d2940", + "revision_nr": 1, + "created": 1702563036311, + "modified": 1702563036311 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034274118/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678034274118, + "acquirer_reference": "", + "verification_code": 1678034274118, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "ac037ae9f97642d9a55b30df", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034274118", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 141660, + "total_amount": 141660, + "id": 1678034274118, + "date_created": { + "type": 6, + "value": 1678034274118 + }, + "date_last_updated": { + "type": 6, + "value": 1678034274118 + }, + "date_of_expiration": { + "type": 6, + "value": 1678034274118 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678034274118, + "description": "Compra de 141660 IVIP por 20 BRL" + }, + "revision": "51ebcf75c6a54718a324a01d", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034346295/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678034346295, + "acquirer_reference": "", + "verification_code": 1678034346295, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "8717b44908f64cb7b323af2e", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034346295", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 141586, + "total_amount": 141586, + "id": 1678034346295, + "date_created": { + "type": 6, + "value": 1678034346295 + }, + "date_last_updated": { + "type": 6, + "value": 1678034346295 + }, + "date_of_expiration": { + "type": 6, + "value": 1678034346295 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678034346295, + "description": "Compra de 141586 IVIP por 20 BRL" + }, + "revision": "c01b66b59ebc41f691cfae54", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034463284/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678034463284, + "acquirer_reference": "", + "verification_code": 1678034463284, + "net_received_amount": 0, + "total_paid_amount": 60, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "20827e9c1dad4cdb91c8ab49", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034463284", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 424981, + "total_amount": 424981, + "id": 1678034463284, + "date_created": { + "type": 6, + "value": 1678034463284 + }, + "date_last_updated": { + "type": 6, + "value": 1678034463284 + }, + "date_of_expiration": { + "type": 6, + "value": 1678034463284 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678034463284, + "description": "Compra de 424981 IVIP por 60 BRL" + }, + "revision": "b4638a6d7b39426ca6a0b9d4", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034665927/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678034665927, + "acquirer_reference": "", + "verification_code": 1678034665927, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "a1bd451b66ad480a9b1270a1", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034665927", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 141586, + "total_amount": 141586, + "id": 1678034665927, + "date_created": { + "type": 6, + "value": 1678034665927 + }, + "date_last_updated": { + "type": 6, + "value": 1678034665927 + }, + "date_of_expiration": { + "type": 6, + "value": 1678034665927 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678034665927, + "description": "Compra de 141586 IVIP por 20 BRL" + }, + "revision": "44d63698fbe14be4bd425ebd", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678041814665/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678041814665, + "acquirer_reference": "", + "verification_code": 1678041814665, + "net_received_amount": 0, + "total_paid_amount": 2000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "dafe3cb7320244ab9be6118d", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678041814665", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 2000, + "total_amount": 2000, + "id": 1678041814665, + "date_created": { + "type": 6, + "value": 1678041814665 + }, + "date_last_updated": { + "type": 6, + "value": 1678041814665 + }, + "date_of_expiration": { + "type": 6, + "value": 1678041814665 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1678041814665 + }, + "revision": "80404cdca9284924a3d43117", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678041814665/description", + "content": { + "type": 5, + "value": "Ganho 10% na pré-venda ao indicar o nosso aplicativo", + "revision": "80155e24f25a453c9f003aa6", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678047987815/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "a48cc9b1d15c46eca511c5e6", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678047987815", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 60, + "total_amount": 60, + "history_id": 1678047987815, + "id": 1678047987815, + "date_created": { + "type": 6, + "value": 1678047987815 + }, + "date_last_updated": { + "type": 6, + "value": 1678714984618 + }, + "date_of_expiration": { + "type": 6, + "value": 1680639987815 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1678714984618 + }, + "money_release_status": "rejected" + }, + "revision": "84e5228614904bcdadfb8cb1", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678047987815/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 60,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "b79b9817200f49c88c3e7008", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678160538199/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678160538199, + "acquirer_reference": "", + "verification_code": 1678160538199, + "net_received_amount": 0, + "total_paid_amount": 2000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "43b06a94986a4ca181605d7f", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678160538199", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 14306893, + "total_amount": 14306893, + "id": 1678160538199, + "date_created": { + "type": 6, + "value": 1678160538199 + }, + "date_last_updated": { + "type": 6, + "value": 1678160538199 + }, + "date_of_expiration": { + "type": 6, + "value": 1678160538199 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678160538199, + "description": "Compra de 14306893 IVIP por 2000 BRL" + }, + "revision": "6bc693e3d57a43bf92d95018", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678284807612/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678284807612, + "acquirer_reference": "", + "verification_code": 1678284807612, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "5e2ebb671cc54b268fa9cf71", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678284807612", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 142846, + "total_amount": 142846, + "id": 1678284807612, + "date_created": { + "type": 6, + "value": 1678284807612 + }, + "date_last_updated": { + "type": 6, + "value": 1678284807612 + }, + "date_of_expiration": { + "type": 6, + "value": 1678284807612 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678284807612, + "description": "Compra de 142846 IVIP por 20 BRL" + }, + "revision": "ee7d1927683e41e984d5ab53", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 32 + }, + "revision": "6b84f6a8cc824880a1503a0b", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354/details", + "content": { + "type": 1, + "value": {}, + "revision": "5288ccfd999245e79c2a2cd6", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "dc49d3ee22134e39bf16b97c", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 400, + "total_amount": 432, + "history_id": 1678325359354, + "id": 1678325359354, + "date_created": { + "type": 6, + "value": 1678325359354 + }, + "date_last_updated": { + "type": 6, + "value": 1678325359354 + }, + "date_of_expiration": { + "type": 6, + "value": 1680917359354 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "63d7aed3fb7848a6835662df", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês e liberação final", + "revision": "bdd49ab46d9e4fe9b2ce34a0", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 120 + }, + "revision": "aab1d28f96fb4749a437c40b", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247/details", + "content": { + "type": 1, + "value": {}, + "revision": "578da7ddd9e6400e8d084090", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "21c71530f81a4b1f8d9c7daa", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 3000, + "total_amount": 3120, + "history_id": 1678400755247, + "id": 1678400755247, + "date_created": { + "type": 6, + "value": 1678400755247 + }, + "date_last_updated": { + "type": 6, + "value": 1678400872142 + }, + "date_of_expiration": { + "type": 6, + "value": 1680992755247 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678400872142 + }, + "money_release_date": { + "type": 6, + "value": 1678400872142 + }, + "money_release_status": "approved" + }, + "revision": "ca7ae9168e0f4c3ca79c170f", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 3.120,00", + "revision": "4402dc09404742aeb7079aca", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 16 + }, + "revision": "a6e850afe4c1454ea3287384", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895/details", + "content": { + "type": 1, + "value": {}, + "revision": "a166be1a28b648d4b982f031", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "61b25765b21241c2bb3cca24", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 400, + "total_amount": 416, + "history_id": 1678401099895, + "id": 1678401099895, + "date_created": { + "type": 6, + "value": 1678401099895 + }, + "date_last_updated": { + "type": 6, + "value": 1678401156010 + }, + "date_of_expiration": { + "type": 6, + "value": 1680993099895 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678401156010 + }, + "money_release_date": { + "type": 6, + "value": 1678401156010 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "cc6949bc0bed46ab8e74f365", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 416,00", + "revision": "48884170fd184868982e47f1", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 9 parcela(s) 18.00%", + "amount": 108 + }, + "revision": "49260c0302434eefa565eefb", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954/details", + "content": { + "type": 1, + "value": {}, + "revision": "6e2d02bf04f3494ebfd2ff98", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "67ab2f3514b34e3eaf680af1", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 600, + "total_amount": 708, + "history_id": 1678401292954, + "id": 1678401292954, + "date_created": { + "type": 6, + "value": 1678401292954 + }, + "date_last_updated": { + "type": 6, + "value": 1678401345264 + }, + "date_of_expiration": { + "type": 6, + "value": 1680993292954 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1678401345264 + }, + "money_release_status": "rejected" + }, + "revision": "e2352950f032480d8f1b4492", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 600,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 9 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 708,00", + "revision": "ffb08dd3ff4742d6b0a734ca", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 12 + }, + "revision": "018b4f4ea9ac48fab6d402df", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273/details", + "content": { + "type": 1, + "value": {}, + "revision": "bf3504da03784ef4af58e51a", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "056cbfd613fb4d8a98fb55d2", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 300, + "total_amount": 312, + "history_id": 1678401795273, + "id": 1678401795273, + "date_created": { + "type": 6, + "value": 1678401795273 + }, + "date_last_updated": { + "type": 6, + "value": 1679404907084 + }, + "date_of_expiration": { + "type": 6, + "value": 1680993795273 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679404907084 + }, + "money_release_date": { + "type": 6, + "value": 1679404907084 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "b6d512eaf3684cde91cb3b11", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 312,00", + "revision": "d26f12464030452e990641ef", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/barcode", + "content": { + "type": 1, + "value": { + "content": "23796929000000023493380261020453727300633330" + }, + "revision": "d5b87e720238460086a8e242", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, + "revision": "73eb2b4fc8a64f549775960a", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": "10204537273", + "acquirer_reference": "", + "verification_code": "10204537273", + "net_received_amount": 0, + "total_paid_amount": 23.49, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "bradesco" + }, + "revision": "7bc8fb63672f44c6a240d6d0", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/external_resource_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/payments/55645430279/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55645430279&payment_method_reference_id=10204537273&hash=557e269b-6b88-40a8-b95a-ce41d6734e10", + "revision": "f5e0d901ec87469c958ad2b2", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "e8e90720a599412486a946ee", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "bolbradesco", + "original_amount": 20, + "total_amount": 23.490000000000002, + "history_id": 1678595791470, + "id": 55645430279, + "date_created": { + "type": 6, + "value": 1678595792384 + }, + "date_last_updated": { + "type": 6, + "value": 1678595792384 + }, + "date_of_expiration": { + "type": 6, + "value": 1678935599000 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "1fa0bf84b02b4074977a966a", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "0f7cf7c817954110b55adda8", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/barcode", + "content": { + "type": 1, + "value": { + "content": "23791929000000023493380261020453555300633330" + }, + "revision": "d1425ee6cffe47cdbfc958cb", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, + "revision": "5b19acda7c5e4629b8d72764", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": "10204535553", + "acquirer_reference": "", + "verification_code": "10204535553", + "net_received_amount": 0, + "total_paid_amount": 23.49, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "bradesco" + }, + "revision": "604ab878af0a4abda3c3aa95", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/external_resource_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/payments/55645448309/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55645448309&payment_method_reference_id=10204535553&hash=3a19b388-0268-4177-bbf8-d1aeb0efa481", + "revision": "913f2c0361bd43d689bf6216", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "9aabc81dd73d45e4989ebfd0", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "bolbradesco", + "original_amount": 20, + "total_amount": 23.490000000000002, + "history_id": 1678595892940, + "id": 55645448309, + "date_created": { + "type": 6, + "value": 1678595893379 + }, + "date_last_updated": { + "type": 6, + "value": 1678595893379 + }, + "date_of_expiration": { + "type": 6, + "value": 1678935599000 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "75c599c44a2240e5a55797c5", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "e4bce30700fb44649717a2df", + "revision_nr": 1, + "created": 1702563036312, + "modified": 1702563036312 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "8d516a3297714d0bb6c90d5a", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "2b45b86f2ea4492898d6098d", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "25a741490b074ec88f4ed7b8", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, + "revision": "5b15d0ce8c244d04a6d3a9b5", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0 + }, + "revision": "6eeea976668b4c27a12cd7b2", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/ticket_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/payments/55645618353/ticket?caller_id=1310149122&hash=8fcfd6de-ecd4-4d03-89e3-76d87270fb3b", + "revision": "db5c94e365ff4e32b26d3822", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/qr_code", + "content": { + "type": 5, + "value": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540520.205802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter556456183536304B75F", + "revision": "640b20cffaff4a2d821d90ab", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/qr_code_base64", + "content": { + "type": 5, + "value": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJgElEQVR42u3dQZLiyA4G4PSKY3BUc1QfYZasyImKnoaUlC6oefEieuyPTRMNtj/XyhJ/Klv/419/NUZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGxj/beG/xdf31P+vvj369WXq//f7o12v5Onj79eb2+z/X13m3dvn6Z/jon/+pRw0nZGRkZGRkZGRkZDyLcfzwC1LfROP6usjXdx7hzrbXRS9fH63jmWeHTxmMjIyMjIyMjIyMZzDefj+tPy/769H+n+v31zP+syB4pKLh8rqzRzAOR9Vr3V8FCiMjIyMjIyMjI+PJjWPTfaBlderHP4YG/DrJwwz3cWdkZGRkZGRkZGRkzM/v3zTUn3XAyG+vwwd1LCzWcjgjIyMjIyMjIyPjyY09JlyWvRLh/srF5MPvqZ1fMzitlBr/Pt/DyMjIyMjIyMjI+F831rWkS+ms/3/e/C/rXRkZGRkZGRkZGRn/y8adV0ijx3Z+L7H0cK/PJaT30sW/9E9fjIyMjIyMjIyMjEc3PlK1cEllxHXsxz/T6I9h/mItNXoMvMcvh3tdPujZMzIyMjIyMjIyMh7UeE3/kyIzS6BtJfCe72ydzjjfCeOsjIyMjIyMjIyMjKc0rmPRkBd6tjKvZXutHM1zX/qkr1/T8ZdXqr0PK1kZGRkZGRkZGRkZz2K8p2DLNjX2WXamxUGMj9K8b+nOLq8qJNI2RkZGRkZGRkZGxnMZc4lQ5yZex3qil907W0ishy7+I015uZcvz34xYGRkZGRkZGRkZDy+cZaLGRvzvfcSkNn2cu6tjGkJsZo+US/phIyMjIyMjIyMjIwnMj7rgCEpcwklQtoFtG5MFC87iOLK0TQt5pMMOyMjIyMjIyMjI+PxjDl7filXG77TAj8/499i0VBnK47lSPtpvoeRkZGRkZGRkZHxMMYe4uRDrXDdG1J+i0GbOtF8Cd+ZlRH3kMpp79e7MjIyMjIyMjIyMh7LmNPoW8G2cVp5D+rZXkP1PHG4S5+OXXyTnWFkZGRkZGRkZGQ8oDE8ttd+fNwjKMTS393i+lEq55PsDCMjIyMjIyMjI+OBjMPz+yMkXIYQek/d99qqv47nyrQ2j+esk+QOIyMjIyMjIyMj41mMO7PJr5Pv7KwunU1b3NIol/ZNh56RkZGRkZGRkZHxbMZ7CrbkNHqA9JJY3yksemnVr9OLzv4ejIyMjIyMjIyMjMc3xtWct8nOQq1Ezp9HzbYPynNf8kfrzpDFhZGRkZGRkZGRkfFMxrH7HsIv9yRqKV+TXjUXM64lbTH5vrPMlJGRkZGRkZGRkfEcxtlGQDkOc3mjTnMTp7MV194nhUUsRxgZGRkZGRkZGRnPYswJl1AHTLfoDK36nrYPuo4LRqeJm9lHW/tsDjsjIyMjIyMjIyPjQYxxEWfAtsncxJYqg/66Wt/LztSPagbnk549IyMjIyMjIyMj44GMsTG/vVIwOdW+pRTMbawe+neRmUfYMnQ44WX+p2JkZGRkZGRkZGQ8g3GWRu8lRFN3+AyP/887260DdjYIrcUHIyMjIyMjIyMj4+GNz4ErS0q15zTN82o5X7N3VP0RYJlh1/e1AiMjIyMjIyMjI+OxjH0yAXHasw+t+ppzj2PL096hvVQY+Vpv1pIyMjIyMjIyMjIyHsuYdxbKU15mj//X3uejXHqMw+yMXQxFw8ezFRkZGRkZGRkZGRkPZawpmJbC7LMpLzuQUCuM5Ui6oRZO+Hb+IyMjIyMjIyMjI+OxjHkfoSG6HmeTt7gd6OPtsPOesjN9jN7EXww2RkZGRkZGRkZGxnMZ89ZA4fl9jK4PwxFDvqalePvuKJc85aWVDA4jIyMjIyMjIyPjWYz5iT5kz7/fq3PIue92329x3Ms4djHVHJ2RkZGRkZGRkZHxZMZeGvNDidBaHXZ+CZVBvY8QmZnt+fn4WXaGkZGRkZGRkZGR8YDG2/erQuN3bmWieZvMdKkZnBqKv5Z6gpGRkZGRkZGRkfF0xpbS6H2SNM8595ymmW1edCmXiBMZGyMjIyMjIyMjI+MpjX0aY8lDFuui0qF5fymrQuuQmEvp4scMDiMjIyMjIyMjI+NZjDXPEs/UJstMr2WAYkjTxMWpITszrR7W+udiZGRkZGRkZGRkPLYxz1YMCZc+e5MWg+ZYzWy0eVw5Wmcr9jSRkZGRkZGRkZGRkfHgxphYv8Uh5d8PMp8VBNveuMS94S7Lz3r2jIyMjIyMjIyMjIcw9kK7h7HlqQ6ou3e+/2g3O1PrEkZGRkZGRkZGRsYTGdOuQdMBim2MzLT5qtA1htkfaVjjffJrwBjPYWRkZGRkZGRkZDyLcbhsbNXXLv42GXbe0u5Dw00/gzY7uxgNtI2RkZGRkZGRkZHxXMaITZmXR+LfS2WQh52HLHwL99qSOpQI94/mzjAyMjIyMjIyMjIexDhcdtl7xm8pBRPGLrb5kMWanelpP6I22eCIkZGRkZGRkZGR8SzGlpaHtnSm2TN+VNcQTRpkvlM9XMtfiJGRkZGRkZGRkfEcxhqiiQMUW6GFO4sR+JBhb2GZaV05enstV20/yc4wMjIyMjIyMjIyHsQ4iPL+P2GA4n2/RBiwS4mu9yH53sZr9TIJhpGRkZGRkZGRkfEMxhxj2UqHPtDqKMRHmQRTh523MuUl/oUYGRkZGRkZGRkZz2kMBUF8kG/jkMU8weXe6muZn2dearSP9vxkZGRkZGRkZGRkPJZxJ0TTxmBL2pBzurHn7pSXIcxex8bE3wcYGRkZGRkZGRkZz2LMD/vX7/LpdZJi3mtotjj1Uhrz98lRCyMjIyMjIyMjI+OZjEuJsbQwiyWE2R8Fm2uF3dmKW+r9/6RWYGRkZGRkZGRkZDyg8Raf+pehMb+OQfVcB1z32/Dh8P5mKWr5WYCRkZGRkZGRkZHxfMadgHmY19JL973G25dhlEtqzD9+lrNnZGRkZGRkZGRkPL5xKY/2O8YtzWtZx1jNrFYYPxpi8ldGRkZGRkZGRkbGExr7zpnia0uP9rfxYb9OK4/Vw62c8BY7/YyMjIyMjIyMjIynMua1pE/s8CZmZ1qacR52+Mxz0LdxlepOKudtdoaRkZGRkZGRkZHxWMY/88XIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyPgHGv8Gg3eEIKcvUa8AAAAASUVORK5CYII=", + "revision": "d43a39193463462daff13534", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "27ffddc20a95403f96c7c10e", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 20, + "total_amount": 20.2, + "history_id": 1678596937174, + "id": 55645618353, + "date_created": { + "type": 6, + "value": 1678596937889 + }, + "date_last_updated": { + "type": 6, + "value": 1678596964000 + }, + "date_of_expiration": { + "type": 6, + "value": 1678683337650 + }, + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678596964000 + }, + "money_release_date": { + "type": 6, + "value": 1678596964000 + }, + "wasDebited": true + }, + "revision": "deeb9ffecfed4a39805f2b08", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "cfb9e4a1b3cc4ed28dab3e36", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.20790000000000003 + }, + "revision": "f7a4984f4633493fa17e3d7a", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "3ae2c5b303344be48b9bccc0", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "d7331fb6321d41778e9f9f67", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "7eae3c0f6d1e473d8cc3349b", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 21.21, + "overpaid_amount": 0, + "installment_amount": 0 + }, + "revision": "8bd951798899412ab3875ba1", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/ticket_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/payments/55660781347/ticket?caller_id=1310149122&hash=d81b289f-e1b7-45ae-9f11-f314a4fdb9e1", + "revision": "3effe5e948b74b46ac43bb37", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/qr_code", + "content": { + "type": 5, + "value": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540521.215802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter5566078134763047D77", + "revision": "667732cb8a6943df83882ef9", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/qr_code_base64", + "content": { + "type": 5, + "value": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJfklEQVR42u3dQXLbOhIGYGilY+io0lF5hFlyJUxeHFPobtBW5tVUJeTHlUoUiY9eEe0fjdb/+OM/jZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGR8c82ri0et49v7j9PXT5/8+PD4/PUx/Hz1PLx4fH55f3HN9ePa359mJ+KVw03ZGRkZGRkZGRkZDyLcTz5DyR/aD/u/Qz8bZB/flNP/Tp+XnV/YeeXTxmMjIyMjIyMjIyMZzA+Pt/Wt2E/7v1r/O2b9jmN+EUbJg3X15M9k7GFyUcYa31NUBgZGRkZGRkZGRlPbhyL7luJvUd1rcc/hwL8fZKHCZMGRkZGRkZGRkZGRsb0/j4tqKcK/ZadGcMvQR0nFmGGEav4jIyMjIyMjIyMjOc0huzMmgZZUnZmqMeHnHss53+ZwYmn/od8DyMjIyMjIyMjI+PfbqxrSS+lsv7/+fBv1rsyMjIyMjIyMjIy/s3G2TFG11sp5w9PVr/J04hZT5c3DkZGRkZGRkZGRsajG59ptjAM0matXPq0it+Sui5FrU+2vKYI69dzBUZGRkZGRkZGRsZDGm/pZT21VBwT6/dy78dnLH0YrfY4769nzc0aGRkZGRkZGRkZGU9mXEu7xNqSfNZkMdKWBKnNXWq3mMdrrHfyPYyMjIyMjIyMjIwHMsbragfE+TdbhX64/FmK9xG7lN2HWmuleM/IyMjIyMjIyMh4GuNQoW+ltXnvQ3PEPu/70ifrRK+ppWKu0Idmjd/n7BkZGRkZGRkZGRkPZIyR83sJyKRh48SitoTJbVpCrKZP1Jd0Q0ZGRkZGRkZGRsYTGXNTlhp+qbuAhqJ7DrwPorhy9BG7xbyXYWdkZGRkZGRkZGQ8mrGlO9XR1vli0BRvz7X/NumtOE5H2tvZGUZGRkZGRkZGRsajGXt5/Y/G2SAhRLO7j9CWfO/phrdXk8XYRp2RkZGRkZGRkZHxLMadRuYp1R53H7qVenzda2gpc4Vc+09P3xkZGRkZGRkZGRlPZryPTVli55X0HJe9tuVt/oj3neWqz6B+LzvDyMjIyMjIyMjIeBhjTws9l1RrDxX6PmmgeAn9y3u5qgbVl7St6J2RkZGRkZGRkZHxfMbvhl2m7/j5gWYdzadDTCr0jIyMjIyMjIyMjGczrinY0lOIpvZiuU+SMrvHY6dC38J9bvkyRkZGRkZGRkZGxmMbe2rBMivVx60+76+rbpPRKj8uIb3vNFm8MDIyMjIyMjIyMp7J2FOepZdgSw+dFEPgvXZJzLRZqX7dW2bKyMjIyMjIyMjIeA5j3QhoTYtBZ5HzXtq9DM1dam/FWqof4znbjxkZGRkZGRkZGRnPYtx+1UJhflbFX8ace8bGCHyfrkndPbW8UbNnZGRkZGRkZGRkPJAxNym/TdsltnSnmqbJ+wi16cZEcb3pkMF5p2bPyMjIyMjIyMjIeCBjS7mY+No+myu012ZB13CqRmZay03Tww2v5U/FyMjIyMjIyMjIeBrjLI2e3/G/eOtvpeQ/nwfUDUJzpZ+RkZGRkZGRkZHxLMZLaNxSdwRaSlB92Yuup6vqfOIyw96/nyswMjIyMjIyMjIyHsvYJx0Qp63Nh1R7G3u6XNJ8Iv8ToM5LbpOxvllLysjIyMjIyMjIyHgs41pK9dm4G35Jc4XaQHGn7WKYNLzXW5GRkZGRkZGRkZHxWMa4a9Cw0HNJ905dXqbRm/sUu/NAafLByMjIyMjIyMjIeCJj7mg+BNVr38Re9iPqISBT0+h1E9Fe+Pfva/aMjIyMjIyMjIyMhzX2odl5GHYn/NLHruf9dflOK5d8qpUMDiMjIyMjIyMjI+NZjPFlP2XPn6k7y5pq9kO+Zqf6/ojtXsa2i3XOwcjIyMjIyMjIyHgqY5gHxJ6IjxiZybt35shM6M7yTJX+dS+M822+h5GRkZGRkZGRkfGAxsd0LelOCD3NFdoQgQ/YnJ2pofjbZHRGRkZGRkZGRkbGkxljsOU2/uBZ9gUdRXvrRLcb9rJD0WX2DSMjIyMjIyMjI+PJjLde14nGJou91yblW619mURvapOYa6nixwwOIyMjIyMjIyMj41mM614dfQvR1GWmwzv+YIxV/JYaoid13qHoyww7IyMjIyMjIyMj49GMPbRXuccthvL4uTvL8ECzHo3PEKtZUpeXPpmXMDIyMjIyMjIyMp7DGLcGmizrHJ+jzWv2Iah+nZfh95q7XN6q2TMyMjIyMjIyMjIeyxhf9mvb8q2u/2izDYXeObWbnQmrSzsjIyMjIyMjIyPjeYzbXKGF3orhBrlxyzJOHGIKJofZQ7PG3C1mGTcdYmRkZGRkZGRkZDyn8RLyLMP7+5pq7fk5HrEBTA7a7OxiNIvAMzIyMjIyMjIyMp7DGLEt5lkyf51MGuJ8opX+izmVMxT4W/kzMDIyMjIyMjIyMp7DuL6K7pfwjp8hj5Jh7wXSY2/FmJ3ppQ96DtowMjIyMjIyMjIynseYl4cOt2ypt+KwcrSnHYpy28Wtrt/3EuuPcRNRRkZGRkZGRkZGxlMZ42j3SQPFocSejzpp6JMZxnXf2MPTMzIyMjIyMjIyMp7T2Mb3916mCLmlYj7Vp7TYf7FNnv635gqMjIyMjIyMjIyMf79xLW/9ueFKKOdfygrUnezMkmYY97Kt6PAXYmRkZGRkZGRkZDynsZXoeu+1J2Ir04h4hC4vMURT4zltGm9nZGRkZGRkZGRkPIOxHrlmfyu/WEocZrclTAiz59/08e/RGRkZGRkZGRkZGc9jXCex9JYq6190UmxlMWhdnHothfk17VD07nyGkZGRkZGRkZGR8TDGS4mxtNSL5Vo+tFDFD8+x21txyNf89lyBkZGRkZGRkZGR8YDGx+StP2zR2VMcZk0BmfYVNgbVU3Ymp+MZGRkZGRkZGRkZz2r8OvOyleHnl88yOM9SmH/+Xs6ekZGRkZGRkZGR8fjGS3m1z5GZWH1/xLWk2292photNXd5o6cLIyMjIyMjIyMj4wGNfXqnVEePGwrlDUJ76Va+0yt9GCtU+hkZGRkZGRkZGRlPZcxrSTfs8CH2Jl/G0Z5ph89WeqW3kLhJqZzn9O/ByMjIyMjIyMjIeGzjn3kwMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL+gcb/Am9FACpuHEp1AAAAAElFTkSuQmCC", + "revision": "3ac2bcff19ce4ee8a08f6025", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "11b29785a2e341a1a6c4271b", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 21, + "total_amount": 21.21, + "history_id": 1678649850085, + "id": 55660781347, + "date_created": { + "type": 6, + "value": 1678649850913 + }, + "date_last_updated": { + "type": 6, + "value": 1678736452000 + }, + "date_of_expiration": { + "type": 6, + "value": 1678736250656 + }, + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "cancelled", + "status_detail": "expired", + "currency_id": "BRL" + }, + "revision": "c45f382ec6174a0ca7517eeb", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 21,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "4dd7b13238ea473dbcff3793", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679007163675/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "4a39c2e145d2487286304f40", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679007163675", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 70, + "total_amount": 70, + "history_id": 1679007163675, + "id": 1679007163675, + "date_created": { + "type": 6, + "value": 1679007163675 + }, + "date_last_updated": { + "type": 6, + "value": 1679007163675 + }, + "date_of_expiration": { + "type": 6, + "value": 1681599163675 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "5bf6eb3fb58f4e12a002404f", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679007163675/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 70,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "56ce888a9c234f51accaedbb", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010027708/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "fbb1d08150d64d4693dcb5ae", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010027708", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 22, + "total_amount": 22, + "history_id": 1679010027708, + "id": 1679010027708, + "date_created": { + "type": 6, + "value": 1679010027708 + }, + "date_last_updated": { + "type": 6, + "value": 1679010027708 + }, + "date_of_expiration": { + "type": 6, + "value": 1681602027708 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "d6e3d6a57bd94149a5ef6d31", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010027708/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 22,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "cd79d201a6bc44238f6da421", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010677912/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "45ede19855af45a1996be693", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010677912", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 34.53, + "total_amount": 34.53, + "history_id": 1679010677912, + "id": 1679010677912, + "date_created": { + "type": 6, + "value": 1679010677912 + }, + "date_last_updated": { + "type": 6, + "value": 1679010677912 + }, + "date_of_expiration": { + "type": 6, + "value": 1681602677912 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "305b8786b5f6430dabf897b6", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010677912/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 34,53 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "1cc5bf007051432d8f36b5bc", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/barcode", + "content": { + "type": 1, + "value": { + "content": "23797929500000053493380261020810012400633330" + }, + "revision": "a3e9e42c62a04444b685794e", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, + "revision": "4a75e448438540318317209a", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": "10208100124", + "acquirer_reference": "", + "verification_code": "10208100124", + "net_received_amount": 0, + "total_paid_amount": 53.49, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "bradesco" + }, + "revision": "bb37fcdf29594f70908aa024", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/external_resource_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/payments/55844330172/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55844330172&payment_method_reference_id=10208100124&hash=b65fca1f-6eb0-406a-adf2-94d1c5555b8a", + "revision": "4db7d6eceb484c3188807817", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "1c0db2b7fcb14d13bdbda2e4", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "bolbradesco", + "original_amount": 50, + "total_amount": 53.49, + "history_id": 1679012344229, + "id": 55844330172, + "date_created": { + "type": 6, + "value": 1679012344871 + }, + "date_last_updated": { + "type": 6, + "value": 1679012344871 + }, + "date_of_expiration": { + "type": 6, + "value": 1679367599000 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "c20a5bfadae14d8ab14f7361", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "206d64c78ef0461eb44a2a42", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012395493/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "81813933239149f8b238e4aa", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012395493", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 23.54, + "total_amount": 23.54, + "history_id": 1679012395493, + "id": 1679012395493, + "date_created": { + "type": 6, + "value": 1679012395493 + }, + "date_last_updated": { + "type": 6, + "value": 1679012395493 + }, + "date_of_expiration": { + "type": 6, + "value": 1681604395493 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "5bfa003aa11441768fe2644e", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012395493/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 23,54 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "02e484dfa6f44f48812ad07a", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, + "revision": "9b05c721d57844b6953d8193", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084/details", + "content": { + "type": 1, + "value": {}, + "revision": "f596d128378040faa7a808c0", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "651a45d0046d419bacd131b0", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 200, + "total_amount": 224, + "history_id": 1679181025084, + "id": 1679181025084, + "date_created": { + "type": 6, + "value": 1679181025084 + }, + "date_last_updated": { + "type": 6, + "value": 1679181025084 + }, + "date_of_expiration": { + "type": 6, + "value": 1681773025084 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "4bfa1612d57e4abb874e9a35", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", + "revision": "c52b1f4b2b014daea4dd1ae8", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 51 + }, + "revision": "4106151039f64f36a2215668", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805/details", + "content": { + "type": 1, + "value": {}, + "revision": "b0bfefb1e70340c58bb54665", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "1d31fd6c3c8e4972935974fe", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 425, + "total_amount": 459, + "history_id": 1679181157805, + "id": 1679181157805, + "date_created": { + "type": 6, + "value": 1679181157805 + }, + "date_last_updated": { + "type": 6, + "value": 1679181157805 + }, + "date_of_expiration": { + "type": 6, + "value": 1681773157805 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "a4c78e62b0f74a8db16fd6f0", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", + "revision": "c32429a00ddd425da0454874", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 9.200000000000001 + }, + "revision": "8c6efe9a24bb48feb214fbbf", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080/details", + "content": { + "type": 1, + "value": {}, + "revision": "a59b5db13b8a43d7bae9a487", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "874202b61e6b4046b4b75842", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 230, + "total_amount": 239.2, + "history_id": 1679183534080, + "id": 1679183534080, + "date_created": { + "type": 6, + "value": 1679183534080 + }, + "date_last_updated": { + "type": 6, + "value": 1679183534080 + }, + "date_of_expiration": { + "type": 6, + "value": 1681775534080 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "d9909fd49eb0466288378e70", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20", + "revision": "800526eca0474347ba07aa14", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8 + }, + "revision": "8f6d4142064340cc8a4d2a25", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128/details", + "content": { + "type": 1, + "value": {}, + "revision": "7ba3f0a19a8f48f49a56964b", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "89417ca53f394b66a11475b2", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 200, + "total_amount": 208, + "history_id": 1679184046128, + "id": 1679184046128, + "date_created": { + "type": 6, + "value": 1679184046128 + }, + "date_last_updated": { + "type": 6, + "value": 1679184046128 + }, + "date_of_expiration": { + "type": 6, + "value": 1681776046128 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "0c122fb7c8714bd7a5bd0d76", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00", + "revision": "2a31dd4d9c124333a74e9c52", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8.4 + }, + "revision": "4190c41d75bc4f1abe08916a", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424/details", + "content": { + "type": 1, + "value": {}, + "revision": "180c728ed8da4acd9652d1f4", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "2ae2ea2e1aaa40ba836c7a30", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 210, + "total_amount": 218.4, + "history_id": 1679184832424, + "id": 1679184832424, + "date_created": { + "type": 6, + "value": 1679184832424 + }, + "date_last_updated": { + "type": 6, + "value": 1679184832424 + }, + "date_of_expiration": { + "type": 6, + "value": 1681776832424 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "9d8f35c957d242389d9b8aa3", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40", + "revision": "d939cf09021e459f9beb6dcc", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780561471/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679780561471, + "acquirer_reference": "", + "verification_code": 1679780561471, + "net_received_amount": 0, + "total_paid_amount": 0.00017735, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "64be6a8262e44fcfa38cb3c4", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780561471", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 50, + "total_amount": 50, + "id": 1679780561471, + "date_created": { + "type": 6, + "value": 1679780561471 + }, + "date_last_updated": { + "type": 6, + "value": 1679780561471 + }, + "date_of_expiration": { + "type": 6, + "value": 1679780561471 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIPAY", + "history_id": 1679780561471 + }, + "revision": "a497ac27246f4fd990d40d68", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780561471/description", + "content": { + "type": 5, + "value": "Compra de 50,00 IVIPAY por 5,00 IVIP estabilizando US$ 0,00", + "revision": "c09ef1c67892480aa09801e3", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780730626/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679780730626, + "acquirer_reference": "", + "verification_code": 1679780730626, + "net_received_amount": 0, + "total_paid_amount": 0.17734999999999998, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "f90c073f9f4f479998df2f92", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780730626", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 50000, + "total_amount": 50000, + "id": 1679780730626, + "date_created": { + "type": 6, + "value": 1679780730626 + }, + "date_last_updated": { + "type": 6, + "value": 1679780730626 + }, + "date_of_expiration": { + "type": 6, + "value": 1679780730626 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIPAY", + "history_id": 1679780730626 + }, + "revision": "e1896fcf89b84f6aa57c103e", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780730626/description", + "content": { + "type": 5, + "value": "Compra de 50.000,00 IVIPAY por 5.000,00 IVIP estabilizando US$ 0,18", + "revision": "eb4edff5b0574f62983fb2ae", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679798199684/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679798199684, + "acquirer_reference": "", + "verification_code": 1679798199684, + "net_received_amount": 0, + "total_paid_amount": 0.32499999999999996, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "543f4973e2c043669c56326f", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679798199684", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 100000, + "total_amount": 100000, + "id": 1679798199684, + "date_created": { + "type": 6, + "value": 1679798199684 + }, + "date_last_updated": { + "type": 6, + "value": 1679798199684 + }, + "date_of_expiration": { + "type": 6, + "value": 1679798199684 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIPAY", + "history_id": 1679798199684 + }, + "revision": "23f39163304f43ada9ddd340", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679798199684/description", + "content": { + "type": 5, + "value": "Compra de 100.000,00 IVIPAY por 10.000,00 IVIP estabilizando US$ 0,32", + "revision": "0d9358e110984fb28705610b", + "revision_nr": 1, + "created": 1702563036313, + "modified": 1702563036313 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1681764788277/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1681764788277, + "acquirer_reference": "", + "verification_code": 1681764788277, + "net_received_amount": 0, + "total_paid_amount": 700, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "ac7916834a7248f5beb80c51", + "revision_nr": 1, + "created": 1702563036314, + "modified": 1702563036314 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1681764788277", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 3964758, + "total_amount": 3964758, + "id": 1681764788277, + "date_created": { + "type": 6, + "value": 1681764788277 + }, + "date_last_updated": { + "type": 6, + "value": 1681764788277 + }, + "date_of_expiration": { + "type": 6, + "value": 1681764788277 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1681764788277, + "description": "Compra de 3.964.758,00 IVIP por 700,00 BRL" + }, + "revision": "24cb71af29844c74b6157376", + "revision_nr": 1, + "created": 1702563036314, + "modified": 1702563036314 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323304615/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1682323304615, + "acquirer_reference": "", + "verification_code": 1682323304615, + "net_received_amount": 0, + "total_paid_amount": 175.094, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "ebaf52b5b6f64ed7908573d9", + "revision_nr": 1, + "created": 1702563036314, + "modified": 1702563036314 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323304615", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 175.094, + "total_amount": 175.094, + "id": 1682323304615, + "date_created": { + "type": 6, + "value": 1682323304615 + }, + "date_last_updated": { + "type": 6, + "value": 1682323304615 + }, + "date_of_expiration": { + "type": 6, + "value": 1682323304615 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682323304615 + }, + "revision": "d6cd7379c3734544a5930291", + "revision_nr": 1, + "created": 1702563036314, + "modified": 1702563036314 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323486538/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1682323486538, + "acquirer_reference": "", + "verification_code": 1682323486538, + "net_received_amount": 0, + "total_paid_amount": 119.6, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "6fc224c3544f4c0ba3adcb18", + "revision_nr": 1, + "created": 1702563036314, + "modified": 1702563036314 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323486538", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 119.6, + "total_amount": 119.6, + "id": 1682323486538, + "date_created": { + "type": 6, + "value": 1682323486538 + }, + "date_last_updated": { + "type": 6, + "value": 1682323486538 + }, + "date_of_expiration": { + "type": 6, + "value": 1682323486538 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682323486538 + }, + "revision": "6f64e03080dc41f1b45c7abd", + "revision_nr": 1, + "created": 1702563036314, + "modified": 1702563036314 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324590308/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1682324590308, + "acquirer_reference": "", + "verification_code": 1682324590308, + "net_received_amount": 0, + "total_paid_amount": 104, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "e16719beb81b481fb37a2ca0", + "revision_nr": 1, + "created": 1702563036316, + "modified": 1702563036316 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324590308", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 104, + "total_amount": 104, + "id": 1682324590308, + "date_created": { + "type": 6, + "value": 1682324590308 + }, + "date_last_updated": { + "type": 6, + "value": 1682324590308 + }, + "date_of_expiration": { + "type": 6, + "value": 1682324590308 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682324590308 + }, + "revision": "d94ef9fc95e84b318107ea68", + "revision_nr": 1, + "created": 1702563036316, + "modified": 1702563036316 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324593569/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1682324593569, + "acquirer_reference": "", + "verification_code": 1682324593569, + "net_received_amount": 0, + "total_paid_amount": 109.2, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "01e1cff7bc1747509aa9b2dd", + "revision_nr": 1, + "created": 1702563036316, + "modified": 1702563036316 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324593569", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 109.2, + "total_amount": 109.2, + "id": 1682324593569, + "date_created": { + "type": 6, + "value": 1682324593569 + }, + "date_last_updated": { + "type": 6, + "value": 1682324593569 + }, + "date_of_expiration": { + "type": 6, + "value": 1682324593569 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682324593569 + }, + "revision": "da48db6617fd40dc9a790fa1", + "revision_nr": 1, + "created": 1702563036316, + "modified": 1702563036316 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325423689/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1682325423689, + "acquirer_reference": "", + "verification_code": 1682325423689, + "net_received_amount": 0, + "total_paid_amount": 104, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "b8f88acbeecb46a1a046141a", + "revision_nr": 1, + "created": 1702563036316, + "modified": 1702563036316 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325423689", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 104, + "total_amount": 104, + "id": 1682325423689, + "date_created": { + "type": 6, + "value": 1682325423689 + }, + "date_last_updated": { + "type": 6, + "value": 1682325423689 + }, + "date_of_expiration": { + "type": 6, + "value": 1682325423689 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682325423689 + }, + "revision": "f6b2236090ad43b4ba1e00cf", + "revision_nr": 1, + "created": 1702563036316, + "modified": 1702563036316 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325428664/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1682325428664, + "acquirer_reference": "", + "verification_code": 1682325428664, + "net_received_amount": 0, + "total_paid_amount": 109.2, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "c061b5e5da274386a492070b", + "revision_nr": 1, + "created": 1702563036316, + "modified": 1702563036316 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325428664", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 109.2, + "total_amount": 109.2, + "id": 1682325428664, + "date_created": { + "type": 6, + "value": 1682325428664 + }, + "date_last_updated": { + "type": 6, + "value": 1682325428664 + }, + "date_of_expiration": { + "type": 6, + "value": 1682325428664 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682325428664 + }, + "revision": "3e561de1708f4dd6be66b8b9", + "revision_nr": 1, + "created": 1702563036316, + "modified": 1702563036316 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544384/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 5, + "payment_method_reference_id": 1682578544384, + "acquirer_reference": "", + "verification_code": 1682578544384, + "net_received_amount": 0, + "total_paid_amount": 37.333, + "overpaid_amount": 0, + "installment_amount": 37.333, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "9ac2499db93b4159a604ead7", + "revision_nr": 1, + "created": 1702563036316, + "modified": 1702563036316 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544384", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 37.333, + "total_amount": 37.333, + "id": 1682578544384, + "contract_id": "1679181025084", + "date_created": { + "type": 6, + "value": 1682578544384 + }, + "date_last_updated": { + "type": 6, + "value": 1682578544384 + }, + "date_of_expiration": { + "type": 6, + "value": 1682578544384 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682578544384 + }, + "revision": "5df9bf6a7a2841f0837e1631", + "revision_nr": 1, + "created": 1702563036316, + "modified": 1702563036316 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544384/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 1 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", + "revision": "871fd62b97f1490fb486752b", + "revision_nr": 1, + "created": 1702563036316, + "modified": 1702563036316 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544557/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 3, + "payment_method_reference_id": 1682578544557, + "acquirer_reference": "", + "verification_code": 1682578544557, + "net_received_amount": 0, + "total_paid_amount": 114.75, + "overpaid_amount": 0, + "installment_amount": 114.75, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "118dc16f44a04d2b80b31080", + "revision_nr": 1, + "created": 1702563036316, + "modified": 1702563036316 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544557", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 114.75, + "total_amount": 114.75, + "id": 1682578544557, + "contract_id": "1679181157805", + "date_created": { + "type": 6, + "value": 1682578544557 + }, + "date_last_updated": { + "type": 6, + "value": 1682578544557 + }, + "date_of_expiration": { + "type": 6, + "value": 1682578544557 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682578544557 + }, + "revision": "f19a980ade9847d9925af6fd", + "revision_nr": 1, + "created": 1702563036316, + "modified": 1702563036316 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544557/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 1 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", + "revision": "dc896dd2f75649b68b47295b", + "revision_nr": 1, + "created": 1702563036316, + "modified": 1702563036316 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984558/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 1, + "payment_method_reference_id": 1682578984558, + "acquirer_reference": "", + "verification_code": 1682578984558, + "net_received_amount": 0, + "total_paid_amount": 119.6, + "overpaid_amount": 0, + "installment_amount": 119.6, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "3f66db4e51f746dfbfcf9e30", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984558", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 119.6, + "total_amount": 119.6, + "id": 1682578984558, + "contract_id": "1679183534080", + "date_created": { + "type": 6, + "value": 1682578984558 + }, + "date_last_updated": { + "type": 6, + "value": 1682578984558 + }, + "date_of_expiration": { + "type": 6, + "value": 1682578984558 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682578984558 + }, + "revision": "f0b0191295d04f46b529f545", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984558/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 1 de 2 no valor de 119,60 BRL referente ao contrato 1679183534080", + "revision": "6600cc70f64c43a5bd4b37cb", + "revision_nr": 1, + "created": 1702563036316, + "modified": 1702563036316 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984726/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 1, + "payment_method_reference_id": 1682578984726, + "acquirer_reference": "", + "verification_code": 1682578984726, + "net_received_amount": 0, + "total_paid_amount": 104, + "overpaid_amount": 0, + "installment_amount": 104, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "10ba0feabd0940fea1b73542", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984726", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 104, + "total_amount": 104, + "id": 1682578984726, + "contract_id": "1679184046128", + "date_created": { + "type": 6, + "value": 1682578984726 + }, + "date_last_updated": { + "type": 6, + "value": 1682578984726 + }, + "date_of_expiration": { + "type": 6, + "value": 1682578984726 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682578984726 + }, + "revision": "9c8538f158a94ec093d02071", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984726/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 1 de 2 no valor de 104,00 BRL referente ao contrato 1679184046128", + "revision": "31724b28d12742c6867112ea", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984913/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 1, + "payment_method_reference_id": 1682578984913, + "acquirer_reference": "", + "verification_code": 1682578984913, + "net_received_amount": 0, + "total_paid_amount": 109.2, + "overpaid_amount": 0, + "installment_amount": 109.2, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "28871743d07641598643ffe5", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984913", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 109.2, + "total_amount": 109.2, + "id": 1682578984913, + "contract_id": "1679184832424", + "date_created": { + "type": 6, + "value": 1682578984913 + }, + "date_last_updated": { + "type": 6, + "value": 1682578984913 + }, + "date_of_expiration": { + "type": 6, + "value": 1682578984913 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682578984913 + }, + "revision": "cee742301c6a44f2a32b872d", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984913/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 1 de 2 no valor de 109,20 BRL referente ao contrato 1679184832424", + "revision": "5d460da7b04b405ca22d7c11", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 4 + }, + "revision": "b55ae5d4cb864ac0bda710d5", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468/details", + "content": { + "type": 1, + "value": {}, + "revision": "075daa17fafa4b659ec62b90", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "4382138cc3df47c08e6daba7", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 200, + "total_amount": 204, + "history_id": 1683665355468, + "id": 1683665355468, + "date_created": { + "type": 6, + "value": 1683665355468 + }, + "date_last_updated": { + "type": 6, + "value": 1683665355468 + }, + "date_of_expiration": { + "type": 6, + "value": 1686257355468 + }, + "operation_type": "regular_payment", + "status": "cancelled", + "status_detail": "cancelled", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "36e880b35c314c46bc058957", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 204,00", + "revision": "1734c0a783eb4e4895ec750d", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 3 parcela(s) 6.00%", + "amount": 12 + }, + "revision": "d378d6f8ae2149beb7e6decb", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591/details", + "content": { + "type": 1, + "value": {}, + "revision": "e26f5c9bd01046c2a5559546", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "f9c20fce740e4f57b12ef39b", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 200, + "total_amount": 212, + "history_id": 1683667472591, + "id": 1683667472591, + "date_created": { + "type": 6, + "value": 1683667472591 + }, + "date_last_updated": { + "type": 6, + "value": 1683667472591 + }, + "date_of_expiration": { + "type": 6, + "value": 1686259472591 + }, + "operation_type": "regular_payment", + "status": "cancelled", + "status_detail": "cancelled", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "ee058939639247bbbae9153a", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", + "revision": "2cd9363fbe7741e2adc00c11", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684303097186/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "c1c74fb764f44afaa5b9b14e", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684303097186", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 250, + "total_amount": 250, + "history_id": 1684303097186, + "id": 1684303097186, + "date_created": { + "type": 6, + "value": 1684303097186 + }, + "date_last_updated": { + "type": 6, + "value": 1684303171953 + }, + "date_of_expiration": { + "type": 6, + "value": 1686895097186 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684303171953 + }, + "money_release_date": { + "type": 6, + "value": 1684303171953 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "df4d61837d69488d8e025358", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684303097186/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "2e558825d47345c9ad6d5fa2", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684348051817/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684348051817, + "acquirer_reference": "", + "verification_code": 1684348051817, + "net_received_amount": 0, + "total_paid_amount": 630, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "ff983e8794b44f7d89e81089", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684348051817", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 630, + "total_amount": 630, + "id": 1684348051817, + "date_created": { + "type": 6, + "value": 1684348051817 + }, + "date_last_updated": { + "type": 6, + "value": 1684348051817 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348051817 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684348051817 + }, + "revision": "c367ea75e9f04f99ac5b638d", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684348051817/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "53847c4917d84be885ad78b8", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739701/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 4, + "payment_method_reference_id": 1684436739701, + "acquirer_reference": "", + "verification_code": 1684436739701, + "net_received_amount": 0, + "total_paid_amount": 37.333, + "overpaid_amount": 0, + "installment_amount": 37.333, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "2f7a4ed0e1004f2e82d03125", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739701", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 37.333, + "total_amount": 37.333, + "id": 1684436739701, + "contract_id": "1679181025084", + "date_created": { + "type": 6, + "value": 1684436739701 + }, + "date_last_updated": { + "type": 6, + "value": 1684436739701 + }, + "date_of_expiration": { + "type": 6, + "value": 1684436739701 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1684436739701 + }, + "revision": "c114132179d7412089b84218", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739701/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 2 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", + "revision": "9d1f186f557f4c63b539f706", + "revision_nr": 1, + "created": 1702563036317, + "modified": 1702563036317 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739822/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 2, + "payment_method_reference_id": 1684436739822, + "acquirer_reference": "", + "verification_code": 1684436739822, + "net_received_amount": 0, + "total_paid_amount": 114.75, + "overpaid_amount": 0, + "installment_amount": 114.75, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "b5c174d319b54d3986c003e0", + "revision_nr": 1, + "created": 1702563036318, + "modified": 1702563036318 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739822", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 114.75, + "total_amount": 114.75, + "id": 1684436739822, + "contract_id": "1679181157805", + "date_created": { + "type": 6, + "value": 1684436739822 + }, + "date_last_updated": { + "type": 6, + "value": 1684436739822 + }, + "date_of_expiration": { + "type": 6, + "value": 1684436739822 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1684436739822 + }, + "revision": "aa4814b9e3734adfa859e67a", + "revision_nr": 1, + "created": 1702563036318, + "modified": 1702563036318 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739822/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 2 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", + "revision": "f6b0fa3a1cd54dfabb2db369", + "revision_nr": 1, + "created": 1702563036318, + "modified": 1702563036318 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739934/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 0, + "payment_method_reference_id": 1684436739934, + "acquirer_reference": "", + "verification_code": 1684436739934, + "net_received_amount": 0, + "total_paid_amount": 119.6, + "overpaid_amount": 0, + "installment_amount": 119.6, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "0324f23185ee43e9911d543f", + "revision_nr": 1, + "created": 1702563036318, + "modified": 1702563036318 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739934", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 119.6, + "total_amount": 119.6, + "id": 1684436739934, + "contract_id": "1679183534080", + "date_created": { + "type": 6, + "value": 1684436739934 + }, + "date_last_updated": { + "type": 6, + "value": 1684436739934 + }, + "date_of_expiration": { + "type": 6, + "value": 1684436739934 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1684436739934 + }, + "revision": "70067a47d6284ad289f59c11", + "revision_nr": 1, + "created": 1702563036318, + "modified": 1702563036318 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739934/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 2 de 2 no valor de 119,60 BRL referente ao contrato 1679183534080", + "revision": "4fa7a51e8d30428d81f5b0b5", + "revision_nr": 1, + "created": 1702563036318, + "modified": 1702563036318 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740031/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 0, + "payment_method_reference_id": 1684436740031, + "acquirer_reference": "", + "verification_code": 1684436740031, + "net_received_amount": 0, + "total_paid_amount": 104, + "overpaid_amount": 0, + "installment_amount": 104, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "fabf6312ec3445fd8bad6528", + "revision_nr": 1, + "created": 1702563036318, + "modified": 1702563036318 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740031", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 104, + "total_amount": 104, + "id": 1684436740031, + "contract_id": "1679184046128", + "date_created": { + "type": 6, + "value": 1684436740031 + }, + "date_last_updated": { + "type": 6, + "value": 1684436740031 + }, + "date_of_expiration": { + "type": 6, + "value": 1684436740031 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1684436740031 + }, + "revision": "3c9099453ded497a81e185db", + "revision_nr": 1, + "created": 1702563036318, + "modified": 1702563036318 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740031/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 2 de 2 no valor de 104,00 BRL referente ao contrato 1679184046128", + "revision": "a80e8974f53a4113b88bb6f1", + "revision_nr": 1, + "created": 1702563036318, + "modified": 1702563036318 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740155/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 0, + "payment_method_reference_id": 1684436740155, + "acquirer_reference": "", + "verification_code": 1684436740155, + "net_received_amount": 0, + "total_paid_amount": 109.2, + "overpaid_amount": 0, + "installment_amount": 109.2, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "b1b20830c44442018d2d58ab", + "revision_nr": 1, + "created": 1702563036318, + "modified": 1702563036318 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740155", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 109.2, + "total_amount": 109.2, + "id": 1684436740155, + "contract_id": "1679184832424", + "date_created": { + "type": 6, + "value": 1684436740155 + }, + "date_last_updated": { + "type": 6, + "value": 1684436740155 + }, + "date_of_expiration": { + "type": 6, + "value": 1684436740155 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1684436740155 + }, + "revision": "e9ff3c851c514f1285c2b698", + "revision_nr": 1, + "created": 1702563036318, + "modified": 1702563036318 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740155/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 2 de 2 no valor de 109,20 BRL referente ao contrato 1679184832424", + "revision": "dcf2ddd09d4f458299c88a92", + "revision_nr": 1, + "created": 1702563036318, + "modified": 1702563036318 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790150988/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684790150988, + "acquirer_reference": "", + "verification_code": 1684790150988, + "net_received_amount": 0, + "total_paid_amount": 1200, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "288fdba337be45c18b2952b4", + "revision_nr": 1, + "created": 1702563036318, + "modified": 1702563036318 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790150988", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 5850731, + "total_amount": 5850731, + "id": 1684790150988, + "date_created": { + "type": 6, + "value": 1684790150988 + }, + "date_last_updated": { + "type": 6, + "value": 1684790150988 + }, + "date_of_expiration": { + "type": 6, + "value": 1684790150988 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684790150988, + "description": "Compra de 5.850.731,00 IVIP por 1.200,00 BRL" + }, + "revision": "d99530ce63c848fd82725f8e", + "revision_nr": 1, + "created": 1702563036318, + "modified": 1702563036318 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790990972/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684790990972, + "acquirer_reference": "", + "verification_code": 1684790990972, + "net_received_amount": 0, + "total_paid_amount": 1065.7, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "6816b962d80b4358ac7767ab", + "revision_nr": 1, + "created": 1702563036318, + "modified": 1702563036318 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790990972", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1065.7, + "total_amount": 1065.7, + "id": 1684790990972, + "date_created": { + "type": 6, + "value": 1684790990972 + }, + "date_last_updated": { + "type": 6, + "value": 1684790990972 + }, + "date_of_expiration": { + "type": 6, + "value": 1684790990972 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684790990972 + }, + "revision": "d5469bd1bc984b05ae65662f", + "revision_nr": 1, + "created": 1702563036318, + "modified": 1702563036318 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790990972/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "e92dae2a743e4f91b8d0432c", + "revision_nr": 1, + "created": 1702563036318, + "modified": 1702563036318 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376471814/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "2ee306bd5d054eb9800e74cc", + "revision_nr": 1, + "created": 1702563036318, + "modified": 1702563036318 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376471814", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 2337199, + "total_amount": 2337199, + "history_id": 1685376471814, + "id": 1685376471814, + "date_created": { + "type": 6, + "value": 1685376471814 + }, + "date_last_updated": { + "type": 6, + "value": 1685376471814 + }, + "date_of_expiration": { + "type": 6, + "value": 1685376471814 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "257356fb504c4d2492fb2936", + "revision_nr": 1, + "created": 1702563036318, + "modified": 1702563036318 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376471814/description", + "content": { + "type": 5, + "value": "Saque de 2.337.199,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", + "revision": "6d640e5031d14bb996c530e4", + "revision_nr": 1, + "created": 1702563036318, + "modified": 1702563036318 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376968807/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "4705cd5edcdf4fe88671cc79", + "revision_nr": 1, + "created": 1702563036318, + "modified": 1702563036318 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376968807", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1357502, + "total_amount": 1357502, + "history_id": 1685376968807, + "id": 1685376968807, + "date_created": { + "type": 6, + "value": 1685376968807 + }, + "date_last_updated": { + "type": 6, + "value": 1685376968807 + }, + "date_of_expiration": { + "type": 6, + "value": 1685376968807 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "5a2162934a4b486fa4f46243", + "revision_nr": 1, + "created": 1702563036318, + "modified": 1702563036318 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376968807/description", + "content": { + "type": 5, + "value": "Saque de 1.357.502,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", + "revision": "9cf4b5fd0f324f399e0ed546", + "revision_nr": 1, + "created": 1702563036318, + "modified": 1702563036318 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379763814/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "21292b7d7803416d93977fa1", + "revision_nr": 1, + "created": 1702563036319, + "modified": 1702563036319 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379763814", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 754612, + "total_amount": 754612, + "history_id": 1685379763814, + "id": 1685379763814, + "date_created": { + "type": 6, + "value": 1685379763814 + }, + "date_last_updated": { + "type": 6, + "value": 1685397154691 + }, + "date_of_expiration": { + "type": 6, + "value": 1685379763814 + }, + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1685397154691 + }, + "money_release_date": { + "type": 6, + "value": 1685397154691 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "d9ca2fca420843339738effc", + "revision_nr": 1, + "created": 1702563036319, + "modified": 1702563036319 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379763814/description", + "content": { + "type": 5, + "value": "Saque de 754.612,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", + "revision": "4b24b7c87304448eb9100ae0", + "revision_nr": 1, + "created": 1702563036319, + "modified": 1702563036319 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379960399/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "2c6e61c156dc4e8cbd011163", + "revision_nr": 1, + "created": 1702563036319, + "modified": 1702563036319 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379960399", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1432864, + "total_amount": 1432864, + "history_id": 1685379960399, + "id": 1685379960399, + "date_created": { + "type": 6, + "value": 1685379960399 + }, + "date_last_updated": { + "type": 6, + "value": 1685379960399 + }, + "date_of_expiration": { + "type": 6, + "value": 1685379960399 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "252a0121a1e74f169dc9287b", + "revision_nr": 1, + "created": 1702563036319, + "modified": 1702563036319 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379960399/description", + "content": { + "type": 5, + "value": "Saque de 1.432.864,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", + "revision": "747ce9fd5e6948be8c07baa3", + "revision_nr": 1, + "created": 1702563036319, + "modified": 1702563036319 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685382789817/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "5d99fb4740964ad7bf50d3b9", + "revision_nr": 1, + "created": 1702563036319, + "modified": 1702563036319 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685382789817", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2248, + "total_amount": 2248, + "history_id": 1685382789817, + "id": 1685382789817, + "date_created": { + "type": 6, + "value": 1685382789817 + }, + "date_last_updated": { + "type": 6, + "value": 1685382821235 + }, + "date_of_expiration": { + "type": 6, + "value": 1687974789817 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1685382821235 + }, + "money_release_status": "rejected" + }, + "revision": "05b387aeac4749eaadc5c39f", + "revision_nr": 1, + "created": 1702563036319, + "modified": 1702563036319 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685382789817/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.248,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "dbd439af867e487f8b08da5e", + "revision_nr": 1, + "created": 1702563036319, + "modified": 1702563036319 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685391703693/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685391703693, + "acquirer_reference": "", + "verification_code": 1685391703693, + "net_received_amount": 0, + "total_paid_amount": 150, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "ba4ce0418bc844119a72fdb1", + "revision_nr": 1, + "created": 1702563036319, + "modified": 1702563036319 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685391703693", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 15, + "total_amount": 15, + "id": 1685391703693, + "date_created": { + "type": 6, + "value": 1685391703693 + }, + "date_last_updated": { + "type": 6, + "value": 1685391703693 + }, + "date_of_expiration": { + "type": 6, + "value": 1685391703693 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685391703693, + "description": "Compra de 15,00 IVIP por 150,00 IVIPAY" + }, + "revision": "bf8abf9486b440b881eaa583", + "revision_nr": 1, + "created": 1702563036319, + "modified": 1702563036319 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685392276817/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685392276817, + "acquirer_reference": "", + "verification_code": 1685392276817, + "net_received_amount": 0, + "total_paid_amount": 50000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "c8180c43ce73444fa054a314", + "revision_nr": 1, + "created": 1702563036319, + "modified": 1702563036319 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685392276817", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 5000, + "total_amount": 5000, + "id": 1685392276817, + "date_created": { + "type": 6, + "value": 1685392276817 + }, + "date_last_updated": { + "type": 6, + "value": 1685392276817 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392276817 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685392276817, + "description": "Compra de 5.000,00 IVIP por 50.000,00 IVIPAY" + }, + "revision": "bbd8fb00ceca438494913615", + "revision_nr": 1, + "created": 1702563036319, + "modified": 1702563036319 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393515405/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685393515405, + "acquirer_reference": "", + "verification_code": 1685393515405, + "net_received_amount": 0, + "total_paid_amount": 5000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "bf6d6e6687694affb8440f3b", + "revision_nr": 1, + "created": 1702563036319, + "modified": 1702563036319 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393515405", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 500, + "total_amount": 500, + "id": 1685393515405, + "date_created": { + "type": 6, + "value": 1685393515405 + }, + "date_last_updated": { + "type": 6, + "value": 1685393515405 + }, + "date_of_expiration": { + "type": 6, + "value": 1685393515405 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685393515405, + "description": "Compra de 500,00 IVIP por 5.000,00 IVIPAY" + }, + "revision": "5c0af86141e04192859cfdc1", + "revision_nr": 1, + "created": 1702563036319, + "modified": 1702563036319 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393559293/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685393559293, + "acquirer_reference": "", + "verification_code": 1685393559293, + "net_received_amount": 0, + "total_paid_amount": 52000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "54719f6e5ebf4d069ddec7a5", + "revision_nr": 1, + "created": 1702563036319, + "modified": 1702563036319 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393559293", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 5200, + "total_amount": 5200, + "id": 1685393559293, + "date_created": { + "type": 6, + "value": 1685393559293 + }, + "date_last_updated": { + "type": 6, + "value": 1685393559293 + }, + "date_of_expiration": { + "type": 6, + "value": 1685393559293 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685393559293, + "description": "Compra de 5.200,00 IVIP por 52.000,00 IVIPAY" + }, + "revision": "71c6263272da4f268fda90c3", + "revision_nr": 1, + "created": 1702563036319, + "modified": 1702563036319 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685394959774/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685394959774, + "acquirer_reference": "", + "verification_code": 1685394959774, + "net_received_amount": 0, + "total_paid_amount": 42000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "7e1832bd2e0645099b96d8a0", + "revision_nr": 1, + "created": 1702563036319, + "modified": 1702563036319 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685394959774", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 4200, + "total_amount": 4200, + "id": 1685394959774, + "date_created": { + "type": 6, + "value": 1685394959774 + }, + "date_last_updated": { + "type": 6, + "value": 1685394959774 + }, + "date_of_expiration": { + "type": 6, + "value": 1685394959774 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685394959774, + "description": "Compra de 4.200,00 IVIP por 42.000,00 IVIPAY" + }, + "revision": "bdbaacc4bbd6466cb1069e25", + "revision_nr": 1, + "created": 1702563036319, + "modified": 1702563036319 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395256711/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685395256711, + "acquirer_reference": "", + "verification_code": 1685395256711, + "net_received_amount": 0, + "total_paid_amount": 95, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "a7141a74e9724f94b94c5e8e", + "revision_nr": 1, + "created": 1702563036320, + "modified": 1702563036320 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395256711", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 9, + "total_amount": 9, + "id": 1685395256711, + "date_created": { + "type": 6, + "value": 1685395256711 + }, + "date_last_updated": { + "type": 6, + "value": 1685395256711 + }, + "date_of_expiration": { + "type": 6, + "value": 1685395256711 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685395256711, + "description": "Compra de 9,00 IVIP por 95,00 IVIPAY" + }, + "revision": "9e1ccb72ba134cdbabc264ba", + "revision_nr": 1, + "created": 1702563036320, + "modified": 1702563036320 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395602952/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685395602952, + "acquirer_reference": "", + "verification_code": 1685395602952, + "net_received_amount": 0, + "total_paid_amount": 0.0914570184167152, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "9780beb011bc42e59ce969db", + "revision_nr": 1, + "created": 1702563036320, + "modified": 1702563036320 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395602952", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 10000, + "total_amount": 10000, + "id": 1685395602952, + "date_created": { + "type": 6, + "value": 1685395602952 + }, + "date_last_updated": { + "type": 6, + "value": 1685395602952 + }, + "date_of_expiration": { + "type": 6, + "value": 1685395602952 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIPAY", + "history_id": 1685395602952 + }, + "revision": "3542676c43284a7b945854ab", + "revision_nr": 1, + "created": 1702563036320, + "modified": 1702563036320 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395602952/description", + "content": { + "type": 5, + "value": "Compra de 10.000,00 IVIPAY por 1.000,00 IVIP estabilizando US$ 0,09", + "revision": "1645a63cc7284fc29d381f0b", + "revision_nr": 1, + "created": 1702563036320, + "modified": 1702563036320 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395698830/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685395698830, + "acquirer_reference": "", + "verification_code": 1685395698830, + "net_received_amount": 0, + "total_paid_amount": 10000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "cf8a7a98744247fc9e921659", + "revision_nr": 1, + "created": 1702563036320, + "modified": 1702563036320 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395698830", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1000, + "total_amount": 1000, + "id": 1685395698830, + "date_created": { + "type": 6, + "value": 1685395698830 + }, + "date_last_updated": { + "type": 6, + "value": 1685395698830 + }, + "date_of_expiration": { + "type": 6, + "value": 1685395698830 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685395698830, + "description": "Compra de 1.000,00 IVIP por 10.000,00 IVIPAY" + }, + "revision": "296cabc7f2a44065ad71ab3d", + "revision_nr": 1, + "created": 1702563036320, + "modified": 1702563036320 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457147497/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685457147497, + "acquirer_reference": "", + "verification_code": 1685457147497, + "net_received_amount": 0, + "total_paid_amount": 0.2150325663918771, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "f7f350da62fd49f2ab4ae38a", + "revision_nr": 1, + "created": 1702563036320, + "modified": 1702563036320 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457147497", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 30000, + "total_amount": 30000, + "id": 1685457147497, + "date_created": { + "type": 6, + "value": 1685457147497 + }, + "date_last_updated": { + "type": 6, + "value": 1685457147497 + }, + "date_of_expiration": { + "type": 6, + "value": 1685457147497 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIPAY", + "history_id": 1685457147497 + }, + "revision": "6b233a020fe14fe68a8336f9", + "revision_nr": 1, + "created": 1702563036320, + "modified": 1702563036320 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457147497/description", + "content": { + "type": 5, + "value": "Compra de 30.000,00 IVIPAY por 3.000,00 IVIP estabilizando US$ 0,22", + "revision": "71a577fd37324ec3a0a3d2bd", + "revision_nr": 1, + "created": 1702563036320, + "modified": 1702563036320 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457225462/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685457225462, + "acquirer_reference": "", + "verification_code": 1685457225462, + "net_received_amount": 0, + "total_paid_amount": 30000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "86b2e96892cf49e7bf900680", + "revision_nr": 1, + "created": 1702563036320, + "modified": 1702563036320 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457225462", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 3000, + "total_amount": 3000, + "id": 1685457225462, + "date_created": { + "type": 6, + "value": 1685457225462 + }, + "date_last_updated": { + "type": 6, + "value": 1685457225462 + }, + "date_of_expiration": { + "type": 6, + "value": 1685457225462 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685457225462, + "description": "Compra de 3.000,00 IVIP por 30.000,00 IVIPAY" + }, + "revision": "30fef6336ec8430b93e63d8c", + "revision_nr": 1, + "created": 1702563036320, + "modified": 1702563036320 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458042396/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685458042396, + "acquirer_reference": "", + "verification_code": 1685458042396, + "net_received_amount": 0, + "total_paid_amount": 0.4625802662364135, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "15e9980eb53346e6a698f810", + "revision_nr": 1, + "created": 1702563036320, + "modified": 1702563036320 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458042396", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 70000, + "total_amount": 70000, + "id": 1685458042396, + "date_created": { + "type": 6, + "value": 1685458042396 + }, + "date_last_updated": { + "type": 6, + "value": 1685458042396 + }, + "date_of_expiration": { + "type": 6, + "value": 1685458042396 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIPAY", + "history_id": 1685458042396 + }, + "revision": "e0dcac51ab3a44ee8a266564", + "revision_nr": 1, + "created": 1702563036320, + "modified": 1702563036320 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458042396/description", + "content": { + "type": 5, + "value": "Compra de 70.000,00 IVIPAY por 7.000,00 IVIP estabilizando US$ 0,46", + "revision": "b4757faa31a34bae80a57961", + "revision_nr": 1, + "created": 1702563036320, + "modified": 1702563036320 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458118470/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685458118470, + "acquirer_reference": "", + "verification_code": 1685458118470, + "net_received_amount": 0, + "total_paid_amount": 70000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "c4af2b6914d24a1bb9650294", + "revision_nr": 1, + "created": 1702563036320, + "modified": 1702563036320 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458118470", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 7000, + "total_amount": 7000, + "id": 1685458118470, + "date_created": { + "type": 6, + "value": 1685458118470 + }, + "date_last_updated": { + "type": 6, + "value": 1685458118470 + }, + "date_of_expiration": { + "type": 6, + "value": 1685458118470 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685458118470, + "description": "Compra de 7.000,00 IVIP por 70.000,00 IVIPAY" + }, + "revision": "df5c0aaf02394bbf8394ab56", + "revision_nr": 1, + "created": 1702563036320, + "modified": 1702563036320 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685663081137/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685663081137, + "acquirer_reference": "", + "verification_code": 1685663081137, + "net_received_amount": 0, + "total_paid_amount": 100000, + "overpaid_amount": 0, + "installment_amount": 100000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "542a72d3e3b3477ca5e7fcf0", + "revision_nr": 1, + "created": 1702563036320, + "modified": 1702563036320 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685663081137", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 100000, + "total_amount": 100000, + "id": 1685663081137, + "date_created": { + "type": 6, + "value": 1685663081137 + }, + "date_last_updated": { + "type": 6, + "value": 1685663081137 + }, + "date_of_expiration": { + "type": 6, + "value": 1688255081137 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685663081137, + "description": "", + "wasDebited": true + }, + "revision": "2d9f31b2543c4e8b9511e4f5", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685732640623/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685732640623, + "acquirer_reference": "", + "verification_code": 1685732640623, + "net_received_amount": 0, + "total_paid_amount": 75, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "ff96ae99797f42e9a8ab99da", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685732640623", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 0, + "total_amount": 0, + "id": 1685732640623, + "date_created": { + "type": 6, + "value": 1685732640623 + }, + "date_last_updated": { + "type": 6, + "value": 1685732640623 + }, + "date_of_expiration": { + "type": 6, + "value": 1685732640623 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685732640623, + "description": "Compra de 0,00 IVIP por 75,00 BRL" + }, + "revision": "20c16bda0ec34ef0a8ccc272", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1686686158496/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "5e0c07ac0e004a4185982793", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1686686158496", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 220, + "total_amount": 220, + "history_id": 1686686158496, + "id": 1686686158496, + "date_created": { + "type": 6, + "value": 1686686158496 + }, + "date_last_updated": { + "type": 6, + "value": 1686686158496 + }, + "date_of_expiration": { + "type": 6, + "value": 1689278158496 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "ecea389733be4850b59a586a", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1686686158496/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 220,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "c0ad44e7daf64fd9956f5e8d", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687279230710/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 3, + "installments_payable": 3, + "payment_method_reference_id": 1687279230710, + "acquirer_reference": "", + "verification_code": 1687279230710, + "net_received_amount": 0, + "total_paid_amount": 37.333, + "overpaid_amount": 0, + "installment_amount": 37.333, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "b480c134871d4b1d8fe865ae", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687279230710", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 37.333, + "total_amount": 37.333, + "id": 1687279230710, + "contract_id": "1679181025084", + "date_created": { + "type": 6, + "value": 1687279230710 + }, + "date_last_updated": { + "type": 6, + "value": 1687279230710 + }, + "date_of_expiration": { + "type": 6, + "value": 1687279230710 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1687279230710 + }, + "revision": "38446e472ae846ca9207975e", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687279230710/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 3 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", + "revision": "ee6e861c1c5e40bdbfab9000", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687291349985/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "18714e34eacd4c6b9a26c612", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687291349985", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 865324, + "total_amount": 865324, + "history_id": 1687291349985, + "id": 1687291349985, + "date_created": { + "type": 6, + "value": 1687291349985 + }, + "date_last_updated": { + "type": 6, + "value": 1687291349985 + }, + "date_of_expiration": { + "type": 6, + "value": 1687291349985 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "5d84326e27294b54981a0ab2", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687291349985/description", + "content": { + "type": 5, + "value": "Saque de 865.324,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", + "revision": "2ff78ea507a448d2a4414114", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1688400997533/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688400997533, + "acquirer_reference": "", + "verification_code": 1688400997533, + "net_received_amount": 0, + "total_paid_amount": 100000, + "overpaid_amount": 0, + "installment_amount": 100000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "57f64418fa8b472fae158402", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1688400997533", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 102000, + "total_amount": 102000, + "id": 1688400997533, + "date_created": { + "type": 6, + "value": 1688400997533 + }, + "date_last_updated": { + "type": 6, + "value": 1688400997533 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400997533 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688400997533, + "wasDebited": true + }, + "revision": "fe3789c947984a418b3b6c73", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1688400997533/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 100.000,00 IVIP com um rendimento de +2.000,00 IVIP (2,00%)", + "revision": "bb3508f2a4684fd492f6f855", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689203359364/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689203359364, + "acquirer_reference": "", + "verification_code": 1689203359364, + "net_received_amount": 0, + "total_paid_amount": 960, + "overpaid_amount": 0, + "installment_amount": 960, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "8c93c64902f44d83a3b0e27f", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689203359364", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 960, + "total_amount": 960, + "id": 1689203359364, + "date_created": { + "type": 6, + "value": 1689203359364 + }, + "date_last_updated": { + "type": 6, + "value": 1689203359364 + }, + "date_of_expiration": { + "type": 6, + "value": 1715555359364 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1689203359364 + }, + "revision": "f8200469f53d423986e61dd5", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689203359364/description", + "content": { + "type": 5, + "value": "Investimento de 960,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/12/2024", + "revision": "2593ab5edbb0448bb8a34c88", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692469402188 + } + }, + "revision": "29becc97a3044baabc494616", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1689877402192, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 7104, + "installment_amount": 7104, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "84ccb407cc90419da7e117c8", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/extract/000523147298669313/order/1689877402188", + "revision": "6b504c51cf254aaf8870d426", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "", + "original_amount": 7104, + "total_amount": 7104, + "id": 1689877402192, + "history_id": 1689877402192, + "date_created": { + "type": 6, + "value": 1689877402192 + }, + "date_last_updated": { + "type": 6, + "value": 1689877402192 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "3ff49ea914034dceba49c4a2", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 7.104,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "47a8a1c1c0d841bab6228470", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692475284161 + } + }, + "revision": "650c7565e4874b31ae80e0a3", + "revision_nr": 1, + "created": 1702563036321, + "modified": 1702563036321 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1689883284161, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1391, + "installment_amount": 1391, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "f30ea67999ab46d0b2357b59", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1689883284161", + "revision": "c54e06091c334c9e866bbdcb", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1391, + "total_amount": 1391, + "id": 1689883284161, + "history_id": 1689883284161, + "date_created": { + "type": 6, + "value": 1689883284161 + }, + "date_last_updated": { + "type": 6, + "value": 1689883327692 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "rejected", + "money_release_date": { + "type": 6, + "value": 1689883327692 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "da69233a4ab84e35b1c0c629", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.391,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "68f1fd6388fd4780afd602bd", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3%", + "amount": 145.5 + }, + "revision": "b70a9edc883d4b3f9debb57b", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690566158772, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5000, + "installment_amount": 5000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "f8e30df5f009433dae043aa1", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566158772", + "revision": "e2a6c5a7d95b46eda9866ca4", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "4071acf251d343a1ba2b566b", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 5000, + "total_amount": 4850, + "id": 1690566158772, + "history_id": 1690566158772, + "date_created": { + "type": 6, + "value": 1690566158772 + }, + "date_last_updated": { + "type": 6, + "value": 1690568714945 + }, + "date_of_expiration": { + "type": 6, + "value": 1690566158772 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "rejected", + "money_release_date": { + "type": 6, + "value": 1690568714945 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "2f178857adde4b9a91ab128a", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/description", + "content": { + "type": 5, + "value": "Saque de 50,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", + "revision": "4353aee16ee2487d8dd74e9e", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3%", + "amount": 29.099999999999998 + }, + "revision": "0216608e026947489e0c2876", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690566489489, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "aec0c5cbddad4f66ad013497", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566489489", + "revision": "ada76f489f9c468e8740ca99", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "95f1d5439981416bb60dc747", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1000, + "total_amount": 970, + "id": 1690566489489, + "history_id": 1690566489489, + "date_created": { + "type": 6, + "value": 1690566489489 + }, + "date_last_updated": { + "type": 6, + "value": 1690568745368 + }, + "date_of_expiration": { + "type": 6, + "value": 1690566489489 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": { + "type": 6, + "value": 1690568745368 + }, + "money_release_date": { + "type": 6, + "value": 1690568745368 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "5b6969b49a744f16aa26ac34", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/description", + "content": { + "type": 5, + "value": "Saque de 10,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", + "revision": "03b827dc71624f97b409b88b", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3%", + "amount": 34.92 + }, + "revision": "677ae0a5abeb44e187d7a25d", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690566618435, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1200, + "installment_amount": 1200, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "889fde33127449ac9f7ee5f2", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566618435", + "revision": "42877c9baf0b4d2e84d5a41b", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "11b1f500ffd54706a0066f35", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1200, + "total_amount": 1164, + "id": 1690566618435, + "history_id": 1690566618435, + "date_created": { + "type": 6, + "value": 1690566618435 + }, + "date_last_updated": { + "type": 6, + "value": 1690568814405 + }, + "date_of_expiration": { + "type": 6, + "value": 1690566618435 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "rejected", + "money_release_date": { + "type": 6, + "value": 1690568814405 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "9bbaf9c8e2484d1ba01082b1", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/description", + "content": { + "type": 5, + "value": "Saque de 1164 IVIP para a carteira 0x0000000000000000000000000000000000000000", + "revision": "4d7e3e5c26b2474ba426b97e", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 392.84999999999997 + }, + "revision": "25a8e2972be54f058848820f", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690568586623, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 13500, + "installment_amount": 13500, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "b280a1aa8e484038ab7ab7f0", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690568586623", + "revision": "402ee296ce6e49d99fc26d1c", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "712c276e025d49faa27b3cb9", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 13500, + "total_amount": 13095, + "id": 1690568586623, + "history_id": 1690568586623, + "date_created": { + "type": 6, + "value": 1690568586623 + }, + "date_last_updated": { + "type": 6, + "value": 1690568834472 + }, + "date_of_expiration": { + "type": 6, + "value": 1690568586623 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "rejected", + "money_release_date": { + "type": 6, + "value": 1690568834472 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "f076be9c5a0547a0a9d365bc", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/description", + "content": { + "type": 5, + "value": "Saque de 13.095,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", + "revision": "54436e7786c34de7aece5065", + "revision_nr": 1, + "created": 1702563036322, + "modified": 1702563036322 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1691685725174/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691685725174, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "8970f4649de44c3b91435a48", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1691685725174/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1691685725174", + "revision": "7e825141a3774d0393387e7f", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1691685725174", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 155950, + "total_amount": 155950, + "id": 1691685725174, + "history_id": 1691685725174, + "date_created": { + "type": 6, + "value": 1691685725174 + }, + "date_last_updated": { + "type": 6, + "value": 1691685725174 + }, + "date_of_expiration": { + "type": 6, + "value": 1691685725174 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 155.950,00 IVIP por 100,00 BRL", + "status_detail": "accredited" + }, + "revision": "82d42deb8c044d258a86cc1b", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694889623442 + } + }, + "revision": "27466a476e51416a980f1737", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692297623443, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50, + "installment_amount": 50, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "1fe308d813c545bba53468a1", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692297623443", + "revision": "0747ad3c27fd4ee887f33e43", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "id": 1692297623443, + "history_id": 1692297623443, + "date_created": { + "type": 6, + "value": 1692297623443 + }, + "date_last_updated": { + "type": 6, + "value": 1692297623443 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "89337539dd2f4c90b2c33fca", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443/description", + "content": { + "type": 5, + "value": "Deposito de um valor 50,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "f92f834b5693419182f4e525", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694889768550 + } + }, + "revision": "1129cd79068b466d9d1d3abf", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692297768550, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 25, + "installment_amount": 25, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "1addfd3e5d1242b4bc11ffe4", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692297768550", + "revision": "839ef57c920b43f1aa387b9f", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 25, + "total_amount": 25, + "id": 1692297768550, + "history_id": 1692297768550, + "date_created": { + "type": 6, + "value": 1692297768550 + }, + "date_last_updated": { + "type": 6, + "value": 1692297802788 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "rejected", + "money_release_date": { + "type": 6, + "value": 1692297802788 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "2b5b8f6e068c4999a152e855", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550/description", + "content": { + "type": 5, + "value": "Deposito de um valor 25,00 BRL para a carteira iVip 0005.2314.7298.6693-13", + "revision": "c0d5bdc88c294eb78f00a348", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694896646621 + } + }, + "revision": "775d0ea0b6af491388c64f63", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692304646621, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1200, + "installment_amount": 1200, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "9679f2a5a42c49bd9bd9e986", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692304646621", + "revision": "a6bea12d8d654bbfb6d203bd", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1200, + "total_amount": 1200, + "id": 1692304646621, + "history_id": 1692304646621, + "date_created": { + "type": 6, + "value": 1692304646621 + }, + "date_last_updated": { + "type": 6, + "value": 1692304802388 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "rejected", + "money_release_date": { + "type": 6, + "value": 1692304802388 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "ca437a3f703e4d1ebc66f9ff", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621/description", + "content": { + "type": 5, + "value": "Deposito de um valor 1.200,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", + "revision": "562a57be99304e3b8d4f08a9", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694896893953 + } + }, + "revision": "6e7069bc097242cb9843d65b", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692304893954, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 23000, + "installment_amount": 23000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "1ec84f18081344f8bf59c32f", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692304893954", + "revision": "eaca2eece97d46cfb18ed672", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 23000, + "total_amount": 23000, + "id": 1692304893954, + "history_id": 1692304893954, + "date_created": { + "type": 6, + "value": 1692304893954 + }, + "date_last_updated": { + "type": 6, + "value": 1692304916494 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1692304916494 + }, + "money_release_date": { + "type": 6, + "value": 1692304916494 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "3e608126f4cf4e35b923dedc", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954/description", + "content": { + "type": 5, + "value": "Deposito de um valor 23.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", + "revision": "1451412186b345a1bf8a5e53", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694905618376 + } + }, + "revision": "e8eba8b670074f93a155977e", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692313618376, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 10000000, + "installment_amount": 10000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "37ff0c866fde47a891a217b9", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692313618376", + "revision": "e09cad549088401cb4a680ee", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 10000000, + "total_amount": 10000000, + "id": 1692313618376, + "history_id": 1692313618376, + "date_created": { + "type": 6, + "value": 1692313618376 + }, + "date_last_updated": { + "type": 6, + "value": 1692313618376 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment" + }, + "revision": "ad3e29cab7734053a0a4c3a0", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376/description", + "content": { + "type": 5, + "value": "Deposito de um valor 10.000.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", + "revision": "23faee45548a402eaa011939", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694960186664 + } + }, + "revision": "cc6c4df0af004aab96d8cd3c", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692368186664, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 125000000, + "installment_amount": 125000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "65d7e70c8eb047db881a14d0", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692368186664", + "revision": "7cc272a29881460a82b8f622", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 125000000, + "total_amount": 125000000, + "id": 1692368186664, + "history_id": 1692368186664, + "date_created": { + "type": 6, + "value": 1692368186664 + }, + "date_last_updated": { + "type": 6, + "value": 1692368186664 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment" + }, + "revision": "b70915282ed34b3aa821d55a", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664/description", + "content": { + "type": 5, + "value": "Deposito de um valor 125.000.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", + "revision": "d856bd95a61b49aea4614e13", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651485901/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692651485901, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 114.75, + "installment_amount": 114.75, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 3, + "installments_payable": 1 + }, + "revision": "0ddaec8e9194404686a8b714", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651485901/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651485901", + "revision": "8259bc3ce31146a283b20da0", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651485901", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 114.75, + "total_amount": 114.75, + "id": "1692651485901", + "history_id": "1692651485901", + "date_created": { + "type": 6, + "value": 1692651485901 + }, + "date_last_updated": { + "type": 6, + "value": 1692651485901 + }, + "date_of_expiration": { + "type": 6, + "value": 1692651485901 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "16da29ca839542e8a823af38", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651485901/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 3 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", + "revision": "7ac8d3de688d4b068a5cc85b", + "revision_nr": 1, + "created": 1702563036323, + "modified": 1702563036323 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651487214/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692651487214, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 37.333333333333336, + "installment_amount": 37.333333333333336, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 4, + "installments_payable": 2 + }, + "revision": "9bed4ef0bd794cd180cae03e", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651487214/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651487214", + "revision": "4554cceb8b2b4daf85b7a205", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651487214", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 37.333333333333336, + "total_amount": 37.333333333333336, + "id": "1692651487214", + "history_id": "1692651487214", + "date_created": { + "type": 6, + "value": 1692651487214 + }, + "date_last_updated": { + "type": 6, + "value": 1692651487214 + }, + "date_of_expiration": { + "type": 6, + "value": 1692651487214 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "dbcad9bd4f8b4503945168dc", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651487214/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 4 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", + "revision": "4f8ded954cb84fbe89c19845", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651816060/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692651816060, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 37.333333333333336, + "installment_amount": 37.333333333333336, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 5, + "installments_payable": 1 + }, + "revision": "055cb509d7554b36bf209b24", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651816060/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651816060", + "revision": "6320917fd6d8457eb9e02536", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651816060", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 37.333333333333336, + "total_amount": 37.333333333333336, + "id": "1692651816060", + "history_id": "1692651816060", + "date_created": { + "type": 6, + "value": 1692651816060 + }, + "date_last_updated": { + "type": 6, + "value": 1692651816060 + }, + "date_of_expiration": { + "type": 6, + "value": 1692651816060 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "d7be02a7b11f483888cf3e66", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651816060/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 5 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", + "revision": "6040d1cff05746279da34d6e", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692658113429/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692658113429, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 114.75, + "installment_amount": 114.75, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 4, + "installments_payable": 0 + }, + "revision": "d7c7dfd1da8246a3824da257", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692658113429/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692658113429", + "revision": "2c15f18d92d645a58f928280", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692658113429", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 114.75, + "total_amount": 114.75, + "id": "1692658113429", + "history_id": "1692658113429", + "date_created": { + "type": 6, + "value": 1692658113429 + }, + "date_last_updated": { + "type": 6, + "value": 1692658113429 + }, + "date_of_expiration": { + "type": 6, + "value": 1692658113429 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "7398a4491c084958ba8e0b2f", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692658113429/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 4 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", + "revision": "59f2e476fd264db798a1ea70", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 660000 + }, + "revision": "fb4ff4a3bc6047fb9bd86d93", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692976623136, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 22000000, + "installment_amount": 22000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "8f657129846f438d9aa2e8f4", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692976623136", + "revision": "ed950330236b429ea0b523d3", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "40b4a51f0a8d495fa5e7fac2", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 22000000, + "total_amount": 21340000, + "id": "1692976623136", + "history_id": "1692976623136", + "date_created": { + "type": 6, + "value": 1692976623136 + }, + "date_last_updated": { + "type": 6, + "value": 1692976717836 + }, + "date_of_expiration": { + "type": 6, + "value": 1692976623136 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": { + "type": 6, + "value": 1692976717836 + }, + "money_release_date": { + "type": 6, + "value": 1692976717836 + }, + "money_release_status": "drawee", + "wasDebited": true + }, + "revision": "9ccb91d76c024b908949de32", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/description", + "content": { + "type": 5, + "value": "Saque de 21.340.000,00 IVIP para a carteira 0x15a315a0f6917CA88693fDCCD4B753E051c2d173", + "revision": "b862285e985043d7b1a20fb1", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693346357974/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693346357974, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2000000, + "installment_amount": 2000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "9c3c58fc5d984705a8aebcdc", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693346357974/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1693346357974", + "revision": "6cf28d7c36624392871398eb", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693346357974", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 2000000, + "total_amount": 2000000, + "id": "1693346357974", + "history_id": "1693346357974", + "date_created": { + "type": 6, + "value": 1693346357974 + }, + "date_last_updated": { + "type": 6, + "value": 1693346357974 + }, + "date_of_expiration": { + "type": 6, + "value": 1756504757968 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "51962b23bfbf4b0387e4a6e4", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693346357974/description", + "content": { + "type": 5, + "value": "Investimento de 2.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 29/08/2025 - P9A02KSL", + "revision": "2e4fe106258743e686a218fa", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693765839188/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693765839188, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "180cb981126940b0a422a0d7", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693765839188/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1693765839188", + "revision": "4a967bf6041b4efc90164f20", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693765839188", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": "1693765839188", + "history_id": "1693765839188", + "date_created": { + "type": 6, + "value": 1693765839188 + }, + "date_last_updated": { + "type": 6, + "value": 1693765839188 + }, + "date_of_expiration": { + "type": 6, + "value": 1696357839188 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "ad2897620f684a44b3ee438c", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693765839188/description", + "content": { + "type": 5, + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", + "revision": "be2cfac513414e49b63c4b0a", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040120/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694554040120, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 37.333333333333336, + "installment_amount": 37.333333333333336, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 5, + "installments_payable": 1 + }, + "revision": "a6addbb836da433a8cbc3a43", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040120/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554040120", + "revision": "9b26df7aa3b24377a33afeaf", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040120", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 37.333333333333336, + "total_amount": 37.333333333333336, + "id": "1694554040120", + "history_id": "1694554040120", + "date_created": { + "type": 6, + "value": 1694554040120 + }, + "date_last_updated": { + "type": 6, + "value": 1694554040120 + }, + "date_of_expiration": { + "type": 6, + "value": 1694554040120 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "0487e2858c694837963d6a56", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040120/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 5 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", + "revision": "7e235a34ad904a0d8aa34469", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040222/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694554040222, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 70.66666666666667, + "installment_amount": 70.66666666666667, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 3, + "installments_payable": 0 + }, + "revision": "ad934bb68493462f8021bfe6", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040222/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554040222", + "revision": "e6820f3ed7e14611ab1fce62", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040222", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 70.66666666666667, + "total_amount": 70.66666666666667, + "id": "1694554040222", + "history_id": "1694554040222", + "date_created": { + "type": 6, + "value": 1694554040222 + }, + "date_last_updated": { + "type": 6, + "value": 1694554040222 + }, + "date_of_expiration": { + "type": 6, + "value": 1694554040222 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "5a524fc51d5049b0b8a5c979", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040222/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 3 de 3 no valor de 70,67 BRL referente ao contrato 1683667472591", + "revision": "68b4ea9f8da44fbcbe745093", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554084107/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694554084107, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 37.333333333333336, + "installment_amount": 37.333333333333336, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 6, + "installments_payable": 0 + }, + "revision": "900ec180a64e4b3384c783da", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554084107/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554084107", + "revision": "685dd521c42243aa9113c40b", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554084107", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 37.333333333333336, + "total_amount": 37.333333333333336, + "id": "1694554084107", + "history_id": "1694554084107", + "date_created": { + "type": 6, + "value": 1694554084107 + }, + "date_last_updated": { + "type": 6, + "value": 1694554084107 + }, + "date_of_expiration": { + "type": 6, + "value": 1694554084107 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "47d695ce1987403f801d167a", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554084107/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 6 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", + "revision": "1e89af27bf814786a40d4a3b", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696114300558/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696114300558, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100000, + "installment_amount": 100000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "e2785fd4c6d64678bc2ca0f6", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696114300558/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696114300558", + "revision": "a4eaee02a31843b0ba6e5d85", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696114300558", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "000523147298669313", + "payment_method": "staking", + "original_amount": 100000, + "total_amount": 100000, + "id": "1696114300558", + "history_id": "1696114300558", + "date_created": { + "type": 6, + "value": 1696114300558 + }, + "date_last_updated": { + "type": 6, + "value": 1696114300558 + }, + "date_of_expiration": { + "type": 6, + "value": 1696114300558 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "description": "Ganho de 100.000,00 IVIP pelo VOUCHER", + "status_detail": "accredited" + }, + "revision": "ec9d903e755b4937849f486c", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118036096/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696118036096, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100000, + "installment_amount": 100000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "71ec0277072649dab659e95f", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118036096/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696118036096", + "revision": "a5115c005e284e4bb9317a13", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118036096", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "000523147298669313", + "payment_method": "staking", + "original_amount": 100000, + "total_amount": 100000, + "id": "1696118036096", + "history_id": "1696118036096", + "date_created": { + "type": 6, + "value": 1696118036096 + }, + "date_last_updated": { + "type": 6, + "value": 1696118036096 + }, + "date_of_expiration": { + "type": 6, + "value": 1696118036096 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "19417638b19f462798912a28", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118036096/description", + "content": { + "type": 5, + "value": "Ganho de 100.000,00 IVIP pelo VOUCHER com o número 1037", + "revision": "5ac925fc0a2f4fdf952469d5", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118157622/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696118157622, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50000, + "installment_amount": 50000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "65f87191dadd43dcb58a287f", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118157622/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696118157622", + "revision": "10843487eed14f738811e7f3", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118157622", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "000523147298669313", + "payment_method": "staking", + "original_amount": 50000, + "total_amount": 50000, + "id": "1696118157622", + "history_id": "1696118157622", + "date_created": { + "type": 6, + "value": 1696118157622 + }, + "date_last_updated": { + "type": 6, + "value": 1696118157622 + }, + "date_of_expiration": { + "type": 6, + "value": 1696118157622 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "b8af70bb83a94b9d9cddf70f", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118157622/description", + "content": { + "type": 5, + "value": "Ganho de 50.000,00 IVIP pelo VOUCHER com o número 0023", + "revision": "49a85d8c726143fe85a6c830", + "revision_nr": 1, + "created": 1702563036324, + "modified": 1702563036324 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696360843684/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696360843684, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "d2c323bb9c7a47fe867d7e5c", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696360843684/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696360843684", + "revision": "98a3fd308bef4509bcc1c3f0", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696360843684", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "000523147298669313", + "payment_method": "staking", + "original_amount": 1020, + "total_amount": 1020, + "id": "1696360843684", + "history_id": "1696360843684", + "date_created": { + "type": 6, + "value": 1696360843684 + }, + "date_last_updated": { + "type": 6, + "value": 1696360843684 + }, + "date_of_expiration": { + "type": 6, + "value": 1696360843684 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "dc1bdbd0501e434fa2426607", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696360843684/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%) - Y12XDT27", + "revision": "b625247c70bf4e2f904b9627", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696362317186/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696362317186, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "b690813356f14eee9821e76c", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696362317186/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696362317186", + "revision": "1738994322f744068e4dcddf", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696362317186", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "000523147298669313", + "payment_method": "staking", + "original_amount": 1020, + "total_amount": 1020, + "id": "1696362317186", + "history_id": "1696362317186", + "date_created": { + "type": 6, + "value": 1696362317186 + }, + "date_last_updated": { + "type": 6, + "value": 1696362317186 + }, + "date_of_expiration": { + "type": 6, + "value": 1696362317186 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "9308f3e5c8b4448bb3639a4c", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696362317186/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%) - Y12XDT27", + "revision": "2c6f77b0293446b4afaecbcb", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history", + "content": { + "type": 1, + "value": {}, + "revision": "ddd36dba405e472da08568fb", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, + "revision": "5acecc4e77c048f2918b61fc", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084", + "content": { + "type": 1, + "value": { + "id": 1679181025084, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 224, + "installments": 6, + "installment_amount": 37.333333333333336, + "date_created": { + "type": 6, + "value": 1679181025084 + }, + "history_id": 1679181025084, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "af273e92578a404697bc4440", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", + "revision": "8bb841a8181e408c86a758fe", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084/costs", + "content": { + "type": 2, + "value": {}, + "revision": "c3b174cb537347b1909b1894", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 51 + }, + "revision": "746a39ae44544700b4a21689", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805", + "content": { + "type": 1, + "value": { + "id": 1679181157805, + "type": "emprestimo", + "original_amount": 425, + "total_amount": 459, + "installments": 4, + "installment_amount": 114.75, + "date_created": { + "type": 6, + "value": 1679181157805 + }, + "history_id": 1679181157805, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "911cf93366d84c1eacd9dd10", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", + "revision": "12cb18d314494233bb83ef72", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805/costs", + "content": { + "type": 2, + "value": {}, + "revision": "0b67be802e9944da9c2d9dce", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 9.200000000000001 + }, + "revision": "9e57692eedc04eaca08296b5", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080", + "content": { + "type": 1, + "value": { + "id": 1679183534080, + "type": "emprestimo", + "original_amount": 230, + "total_amount": 239.2, + "installments": 2, + "installment_amount": 119.6, + "date_created": { + "type": 6, + "value": 1679183534080 + }, + "history_id": 1679183534080, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "73a4496b159d40f4b3b35a21", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20", + "revision": "d928abe6bf6c428ead36bf1f", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080/costs", + "content": { + "type": 2, + "value": {}, + "revision": "5af1b7e6a15143c685f7c938", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8 + }, + "revision": "5c8dd1294beb45119a051ad8", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128", + "content": { + "type": 1, + "value": { + "id": 1679184046128, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 208, + "installments": 2, + "installment_amount": 104, + "date_created": { + "type": 6, + "value": 1679184046128 + }, + "history_id": 1679184046128, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "23fcddd83d9e41c19523d71c", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00", + "revision": "744cca22fb3448d9bff4b19d", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128/costs", + "content": { + "type": 2, + "value": {}, + "revision": "ecfbfd80c0184aa897bb6b77", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8.4 + }, + "revision": "8fb7a282ded2422ca38cedf9", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424", + "content": { + "type": 1, + "value": { + "id": 1679184832424, + "type": "emprestimo", + "original_amount": 210, + "total_amount": 218.4, + "installments": 2, + "installment_amount": 109.2, + "date_created": { + "type": 6, + "value": 1679184832424 + }, + "history_id": 1679184832424, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "270effa7d59848d89f48302b", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40", + "revision": "479922666a5c4a2c8128d8df", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424/costs", + "content": { + "type": 2, + "value": {}, + "revision": "1319dc04acca4a93a93311c7", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304", + "content": { + "type": 1, + "value": {}, + "revision": "10c6434b18db4cb59a78917c", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, + "revision": "33234588f15448cea0e6e813", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084", + "content": { + "type": 1, + "value": { + "id": 1679181025084, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 224, + "installments": 6, + "installment_amount": 37.333333333333336, + "date_created": { + "type": 6, + "value": 1679181025084 + }, + "history_id": 1679181025084, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "ba3b6e894b244f1081b173c8", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", + "revision": "57cd00d974a0434ea24af23d", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084/costs", + "content": { + "type": 2, + "value": {}, + "revision": "c40580c4a55a4c6d9c95bbab", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 51 + }, + "revision": "3e0464638bd34554b11d1728", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805", + "content": { + "type": 1, + "value": { + "id": 1679181157805, + "type": "emprestimo", + "original_amount": 425, + "total_amount": 459, + "installments": 4, + "installment_amount": 114.75, + "date_created": { + "type": 6, + "value": 1679181157805 + }, + "history_id": 1679181157805, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "406ad54c510747919c1c9825", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", + "revision": "594d4adca8944a4489dccc47", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805/costs", + "content": { + "type": 2, + "value": {}, + "revision": "52747ee98cc04c1c8c0d9208", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 9.200000000000001 + }, + "revision": "0ede2c9505144c8481ce7469", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080", + "content": { + "type": 1, + "value": { + "id": 1679183534080, + "type": "emprestimo", + "original_amount": 230, + "total_amount": 239.2, + "installments": 2, + "installment_amount": 119.6, + "date_created": { + "type": 6, + "value": 1679183534080 + }, + "history_id": 1679183534080, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "841b349e48184ca39ff9cb74", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20", + "revision": "847fb5dafdd943e3b3782918", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080/costs", + "content": { + "type": 2, + "value": {}, + "revision": "e35ca29bf52848398b820682", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8 + }, + "revision": "22d882aba4554372a1e20ea1", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128", + "content": { + "type": 1, + "value": { + "id": 1679184046128, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 208, + "installments": 2, + "installment_amount": 104, + "date_created": { + "type": 6, + "value": 1679184046128 + }, + "history_id": 1679184046128, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "dd38258289d140b29ca0d36a", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00", + "revision": "defbdb235b0c4b6788a01659", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128/costs", + "content": { + "type": 2, + "value": {}, + "revision": "d83b7ecf6ce146ab8466561b", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8.4 + }, + "revision": "951b41fce52f4d819230a2a6", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424", + "content": { + "type": 1, + "value": { + "id": 1679184832424, + "type": "emprestimo", + "original_amount": 210, + "total_amount": 218.4, + "installments": 2, + "installment_amount": 109.2, + "date_created": { + "type": 6, + "value": 1679184832424 + }, + "history_id": 1679184832424, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "271e22bdb1934a07ac93d5eb", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40", + "revision": "656cc97e79c6459790282ceb", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424/costs", + "content": { + "type": 2, + "value": {}, + "revision": "6284b0be56014fdc96864ac1", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305", + "content": { + "type": 1, + "value": {}, + "revision": "65f992302c7643e9b117320e", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, + "revision": "334522de923b4faba5605433", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084", + "content": { + "type": 1, + "value": { + "id": 1679181025084, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 224, + "installments": 6, + "installment_amount": 37.333333333333336, + "date_created": { + "type": 6, + "value": 1679181025084 + }, + "history_id": 1679181025084, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "8fcc38db3e10471d9f1c7574", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", + "revision": "8a7d5116aaa4498182d188a8", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084/costs", + "content": { + "type": 2, + "value": {}, + "revision": "6bf08af00cc24e498ae72bd2", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 51 + }, + "revision": "cb7fd9aff83f4dde88dc7d84", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805", + "content": { + "type": 1, + "value": { + "id": 1679181157805, + "type": "emprestimo", + "original_amount": 425, + "total_amount": 459, + "installments": 4, + "installment_amount": 114.75, + "date_created": { + "type": 6, + "value": 1679181157805 + }, + "history_id": 1679181157805, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "57aaa9512d274e0e8e105284", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", + "revision": "3a75ffa6b03e46c5b9f1b7f9", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805/costs", + "content": { + "type": 2, + "value": {}, + "revision": "0fd55e3e64e64b44995a4bb0", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 4 + }, + "revision": "32fea4f10f364472b58e75a7", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468", + "content": { + "type": 1, + "value": { + "id": 1683665355468, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 204, + "installments": 1, + "installment_amount": 204, + "date_created": { + "type": 6, + "value": 1683665355468 + }, + "history_id": 1683665355468, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "4cc8b10e8b4c4160b33c94a9", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 204,00", + "revision": "847c1a6b89af443a9a144f72", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468/costs", + "content": { + "type": 2, + "value": {}, + "revision": "e3dd764566464f62827b7288", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 3 parcela(s) 6.00%", + "amount": 12 + }, + "revision": "ddb2001e5fe0458e8f2c8434", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591", + "content": { + "type": 1, + "value": { + "id": 1683667472591, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 212, + "installments": 3, + "installment_amount": 70.66666666666667, + "date_created": { + "type": 6, + "value": 1683667472591 + }, + "history_id": 1683667472591, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "d5313ef949954d3fae76e8bd", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", + "revision": "0cdc1c6e7f5b4757b458800a", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591/costs", + "content": { + "type": 2, + "value": {}, + "revision": "1cccb7ec765845788459c4bb", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "a0a9006f03ea4d72a572ff4a", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, + "revision": "646f736a21ef4931976f64d3", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084", + "content": { + "type": 1, + "value": { + "id": 1679181025084, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 224, + "installments": 6, + "installment_amount": 37.333333333333336, + "date_created": { + "type": 6, + "value": 1679181025084 + }, + "history_id": 1679181025084, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "a43269f55eaa4204a76cf9f3", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", + "revision": "fce551a814ea4f81a9b2d4d8", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084/costs", + "content": { + "type": 2, + "value": {}, + "revision": "859a0e501b054eba8cb78aa5", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 51 + }, + "revision": "6ae6708e1c594bf6829ea8b9", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805", + "content": { + "type": 1, + "value": { + "id": 1679181157805, + "type": "emprestimo", + "original_amount": 425, + "total_amount": 459, + "installments": 4, + "installment_amount": 114.75, + "date_created": { + "type": 6, + "value": 1679181157805 + }, + "history_id": 1679181157805, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "c730ca37870e43cfa7096069", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", + "revision": "e8cb862bd26b4eba84e30baf", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805/costs", + "content": { + "type": 2, + "value": {}, + "revision": "ff252f1e21bb42559e716f4d", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 3 parcela(s) 6.00%", + "amount": 12 + }, + "revision": "3ddaae750da344a99bf82aa7", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591", + "content": { + "type": 1, + "value": { + "id": 1683667472591, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 212, + "installments": 3, + "installment_amount": 70.66666666666667, + "date_created": { + "type": 6, + "value": 1683667472591 + }, + "history_id": 1683667472591, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "088c4ed79a5048a8ba8de099", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", + "revision": "a6ead1a6e22c4d87aec8a69e", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591/costs", + "content": { + "type": 2, + "value": {}, + "revision": "89f877872a584e209c828676", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "34be3d59239e41468eed2575", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, + "revision": "e976eea7ce7c4bbb9a63f446", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084", + "content": { + "type": 1, + "value": { + "id": 1679181025084, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 224, + "installments": 6, + "installment_amount": 37.333333333333336, + "date_created": { + "type": 6, + "value": 1679181025084 + }, + "history_id": 1679181025084, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1694554040136 + } + }, + "revision": "2757e197cd1d4907b1d3fc62", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", + "revision": "87a9b936a9b84274bd417c19", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084/costs", + "content": { + "type": 2, + "value": {}, + "revision": "166eba67a595421ea30ec410", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 3 parcela(s) 6.00%", + "amount": 12 + }, + "revision": "b1ea4a229a894f58bb7eab82", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591", + "content": { + "type": 1, + "value": { + "id": 1683667472591, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 212, + "installments": 3, + "installment_amount": 70.66666666666667, + "date_created": { + "type": 6, + "value": 1683667472591 + }, + "history_id": 1683667472591, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1694554040249 + } + }, + "revision": "0935b6cbf579488faaf036a1", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", + "revision": "34110ab642374feeb4263f2e", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591/costs", + "content": { + "type": 2, + "value": {}, + "revision": "dd670460582b493da60232e9", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308", + "content": { + "type": 1, + "value": {}, + "revision": "52bf18c7297a48f0b9a9ca0e", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, + "revision": "8d88a613571a40439cc56898", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084", + "content": { + "type": 1, + "value": { + "id": 1679181025084, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 224, + "installments": 6, + "installment_amount": 37.333333333333336, + "date_created": { + "type": 6, + "value": 1679181025084 + }, + "history_id": 1679181025084, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1694554084147 + } + }, + "revision": "64843c679cb4450695cb8e68", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", + "revision": "4471e22737dc40d186545ee2", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084/costs", + "content": { + "type": 2, + "value": {}, + "revision": "48d24f62494844469c285664", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309", + "content": { + "type": 1, + "value": {}, + "revision": "06c011134bc94b318629be77", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "079543bd8c6c4ff4b9f71e92", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 1500, + "limitUsed": 312.50000000000006, + "analysisRequested": { + "type": 6, + "value": 1679030641192 + }, + "lastReview": { + "type": 6, + "value": 1679030831310 + } + }, + "revision": "1567a5194a3f4f9aa29ce4b2", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313", + "content": { + "type": 1, + "value": { + "dataModificacao": 1676677228207, + "dateValidity": 1679011956662, + "totalValue": 12518.651018650135, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697166000000 + } + }, + "revision": "7b077351517747dc826cc115", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001286046930633944/balances", + "content": { + "type": 1, + "value": {}, + "revision": "184965428aa64ff6baa216f9", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001286046930633944/history", + "content": { + "type": 1, + "value": {}, + "revision": "2cb75c0f69d4493ca37dc675", + "revision_nr": 1, + "created": 1702563036325, + "modified": 1702563036325 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001286046930633944/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "0c366822b94c4d7b84d50bdb", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001286046930633944/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "e5b27b27d509418a85634147", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001286046930633944", + "content": { + "type": 1, + "value": { + "dataModificacao": 1695928321328, + "dateValidity": 1695928321874, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696993200000 + } + }, + "revision": "dd90cfbb3dd04353b1d5d359", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "-3396779.42000000", + "symbol": "IVIP", + "value": -452.027 + }, + "revision": "d97f32474f5a433f96b3bdbc", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/balances", + "content": { + "type": 1, + "value": {}, + "revision": "4bb11740e96f4ead9b7c88fc", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684093592429/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "a95331502aff425a9b66d71d", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684093592429", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "history_id": 1684093592429, + "id": 1684093592429, + "date_created": { + "type": 6, + "value": 1684093592429 + }, + "date_last_updated": { + "type": 6, + "value": 1684096162499 + }, + "date_of_expiration": { + "type": 6, + "value": 1686685592429 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684096162499 + }, + "money_release_date": { + "type": 6, + "value": 1684096162499 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "eb02677ed53844a7a2b0d8b0", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684093592429/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "c7e8c20487c24c76805783f4", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 10.02 + }, + "revision": "b8877406dacc4abab6cfe687", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939/details", + "content": { + "type": 1, + "value": {}, + "revision": "32e97527616f436498953387", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "ea4d4618b6c24ecaad7d395e", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 501, + "total_amount": 511.02, + "history_id": 1684399661939, + "id": 1684399661939, + "date_created": { + "type": 6, + "value": 1684399661939 + }, + "date_last_updated": { + "type": 6, + "value": 1684399661939 + }, + "date_of_expiration": { + "type": 6, + "value": 1686991661939 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "68eb907fc77645d0813a5736", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 501,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 511,02", + "revision": "47e4f0b7cf174bec9b433992", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 9.98 + }, + "revision": "4c1636ecba8f42699dbe9515", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872/details", + "content": { + "type": 1, + "value": {}, + "revision": "306ea4e81ecd494d97bf8a67", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "6e67b7a0c8804ead946ab402", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 499, + "total_amount": 508.98, + "history_id": 1684612673872, + "id": 1684612673872, + "date_created": { + "type": 6, + "value": 1684612673872 + }, + "date_last_updated": { + "type": 6, + "value": 1684612673872 + }, + "date_of_expiration": { + "type": 6, + "value": 1687204673872 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "6b921038f9ac4f0d8ff5e562", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 499,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 508,98", + "revision": "7bdcfc0113a247c5be2c0832", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684624250482/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624250482, + "acquirer_reference": "", + "verification_code": 1684624250482, + "net_received_amount": 0, + "total_paid_amount": 1500, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "bcf75cc8eb6f49f49c4e52ce", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684624250482", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 7306097, + "total_amount": 7306097, + "id": 1684624250482, + "date_created": { + "type": 6, + "value": 1684624250482 + }, + "date_last_updated": { + "type": 6, + "value": 1684624250482 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624250482 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624250482, + "description": "Compra de 7.306.097,00 IVIP por 1.500,00 BRL" + }, + "revision": "579d03fbe8b04faca279a752", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684792076230/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "eb2dd100ee5e4be086f6247d", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684792076230", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 562, + "total_amount": 562, + "history_id": 1684792076230, + "id": 1684792076230, + "date_created": { + "type": 6, + "value": 1684792076230 + }, + "date_last_updated": { + "type": 6, + "value": 1684792076230 + }, + "date_of_expiration": { + "type": 6, + "value": 1687384076230 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "85377693a0814a3cb73502aa", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684792076230/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "35376ec3b6784c7aaa19a5db", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684942997083/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "e8e878b9067b416bb86e2fe0", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684942997083", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 562, + "total_amount": 562, + "history_id": 1684942997083, + "id": 1684942997083, + "date_created": { + "type": 6, + "value": 1684942997083 + }, + "date_last_updated": { + "type": 6, + "value": 1684942997083 + }, + "date_of_expiration": { + "type": 6, + "value": 1687534997083 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "3871657bfb0d488ea48e3cb0", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684942997083/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "12478dd1ff3b4a2b88c4b6a2", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684973822893/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "c92c83ec188440d593a1912a", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684973822893", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 562, + "total_amount": 562, + "history_id": 1684973822893, + "id": 1684973822893, + "date_created": { + "type": 6, + "value": 1684973822893 + }, + "date_last_updated": { + "type": 6, + "value": 1685015008165 + }, + "date_of_expiration": { + "type": 6, + "value": 1687565822893 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685015008165 + }, + "money_release_date": { + "type": 6, + "value": 1685015008165 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "d60c70c12406432791f2e516", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684973822893/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "2224ad111c5e426dabf9329d", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685116940519/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "bfad9de42df14580a4268e42", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685116940519", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 517, + "total_amount": 517, + "history_id": 1685116940519, + "id": 1685116940519, + "date_created": { + "type": 6, + "value": 1685116940519 + }, + "date_last_updated": { + "type": 6, + "value": 1685369247276 + }, + "date_of_expiration": { + "type": 6, + "value": 1687708940519 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685369247276 + }, + "money_release_date": { + "type": 6, + "value": 1685369247276 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "52f3b82287c245e7a47629f6", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685116940519/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 517,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "cf2eb898e3c84cb3997e4197", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685202990180/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "c313191241384c209c04fadd", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685202990180", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 329, + "total_amount": 329, + "history_id": 1685202990180, + "id": 1685202990180, + "date_created": { + "type": 6, + "value": 1685202990180 + }, + "date_last_updated": { + "type": 6, + "value": 1685364517239 + }, + "date_of_expiration": { + "type": 6, + "value": 1687794990180 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685364517239 + }, + "money_release_date": { + "type": 6, + "value": 1685364517239 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "04e2dc422c924b0a897fbd11", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685202990180/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 329,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "3cab7ba8d2f241dea08a8346", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685384470907/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685384470907, + "acquirer_reference": "", + "verification_code": 1685384470907, + "net_received_amount": 0, + "total_paid_amount": 0.4161719170765633, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "08f1cf67a4ff4d4487f5bb76", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685384470907", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 45000, + "total_amount": 45000, + "id": 1685384470907, + "date_created": { + "type": 6, + "value": 1685384470907 + }, + "date_last_updated": { + "type": 6, + "value": 1685384470907 + }, + "date_of_expiration": { + "type": 6, + "value": 1685384470907 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIPAY", + "history_id": 1685384470907 + }, + "revision": "6acffa45efbc42e1b8b126ff", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685384470907/description", + "content": { + "type": 5, + "value": "Compra de 45.000,00 IVIPAY por 4.500,00 IVIP estabilizando US$ 0,42", + "revision": "5feb6c5a4c9a4fdf969c93df", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685389853107/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "0f7fb003197a4e068efe0a2f", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685389853107", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 96, + "total_amount": 96, + "history_id": 1685389853107, + "id": 1685389853107, + "date_created": { + "type": 6, + "value": 1685389853107 + }, + "date_last_updated": { + "type": 6, + "value": 1687436176583 + }, + "date_of_expiration": { + "type": 6, + "value": 1687981853107 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1687436176583 + }, + "money_release_date": { + "type": 6, + "value": 1687436176583 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "5ebc8891e9864de0b36d4233", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685389853107/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 96,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "989b744c6650441b8f1e3607", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392262218/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685392262218, + "acquirer_reference": "", + "verification_code": 1685392262218, + "net_received_amount": 0, + "total_paid_amount": 26.953032521201788, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "edcd78e2f20d4df4916a7442", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392262218", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 3000000, + "total_amount": 3000000, + "id": 1685392262218, + "date_created": { + "type": 6, + "value": 1685392262218 + }, + "date_last_updated": { + "type": 6, + "value": 1685392262218 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392262218 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIPAY", + "history_id": 1685392262218 + }, + "revision": "87d96d476f4f4f38ab77c1ec", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392262218/description", + "content": { + "type": 5, + "value": "Compra de 3.000.000,00 IVIPAY por 300.000,00 IVIP estabilizando US$ 26,95", + "revision": "f6490eb17d2745699e42fe59", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392563175/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685392563175, + "acquirer_reference": "", + "verification_code": 1685392563175, + "net_received_amount": 0, + "total_paid_amount": 269.5303252120179, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "8498f6c4c9634822b44d5fda", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392563175", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 30000000, + "total_amount": 30000000, + "id": 1685392563175, + "date_created": { + "type": 6, + "value": 1685392563175 + }, + "date_last_updated": { + "type": 6, + "value": 1685392563175 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392563175 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIPAY", + "history_id": 1685392563175 + }, + "revision": "4ac9c145062e4236a7086259", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392563175/description", + "content": { + "type": 5, + "value": "Compra de 30.000.000,00 IVIPAY por 3.000.000,00 IVIP estabilizando US$ 269,53", + "revision": "fbcfd5d6b52b4c0d8d173c22", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685394042885/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685394042885, + "acquirer_reference": "", + "verification_code": 1685394042885, + "net_received_amount": 0, + "total_paid_amount": 33000000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "c5d69b203eba42b19bacad58", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685394042885", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 3300000, + "total_amount": 3300000, + "id": 1685394042885, + "date_created": { + "type": 6, + "value": 1685394042885 + }, + "date_last_updated": { + "type": 6, + "value": 1685394042885 + }, + "date_of_expiration": { + "type": 6, + "value": 1685394042885 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIP", + "history_id": 1685394042885 + }, + "revision": "7fa2d65ce3b04570a1b408a2", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685394042885/description", + "content": { + "type": 5, + "value": "Compra de 3.300.000,00 IVIP por 33.000.000,00 IVIPAY", + "revision": "04868097778a45209c9f5c74", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685450530237/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685450530237, + "acquirer_reference": "", + "verification_code": 1685450530237, + "net_received_amount": 0, + "total_paid_amount": 456.734080852326, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "eff6086752d34ef2bcc6f89a", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685450530237", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 50000000, + "total_amount": 50000000, + "id": 1685450530237, + "date_created": { + "type": 6, + "value": 1685450530237 + }, + "date_last_updated": { + "type": 6, + "value": 1685450530237 + }, + "date_of_expiration": { + "type": 6, + "value": 1685450530237 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIPAY", + "history_id": 1685450530237 + }, + "revision": "316585d37c034c96bbb63150", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685450530237/description", + "content": { + "type": 5, + "value": "Compra de 50.000.000,00 IVIPAY por 5.000.000,00 IVIP estabilizando US$ 456,73", + "revision": "de475e5e801144acb1a2334b", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685455769977/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685455769977, + "acquirer_reference": "", + "verification_code": 1685455769977, + "net_received_amount": 0, + "total_paid_amount": 50000000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "48cac1e8feb14f91a56d4be5", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685455769977", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 5000000, + "total_amount": 5000000, + "id": 1685455769977, + "date_created": { + "type": 6, + "value": 1685455769977 + }, + "date_last_updated": { + "type": 6, + "value": 1685455769977 + }, + "date_of_expiration": { + "type": 6, + "value": 1685455769977 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIP", + "history_id": 1685455769977 + }, + "revision": "333041052c2949af8c583a6f", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685455769977/description", + "content": { + "type": 5, + "value": "Compra de 5.000.000,00 IVIP por 50.000.000,00 IVIPAY", + "revision": "ca1d76eb4a314894b099edca", + "revision_nr": 1, + "created": 1702563036326, + "modified": 1702563036326 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685743296302/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685743296302, + "acquirer_reference": "", + "verification_code": 1685743296302, + "net_received_amount": 0, + "total_paid_amount": 1408, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "610b735eac9a42eeb71a2933", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685743296302", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 4940350, + "total_amount": 4940350, + "id": 1685743296302, + "date_created": { + "type": 6, + "value": 1685743296302 + }, + "date_last_updated": { + "type": 6, + "value": 1685743296302 + }, + "date_of_expiration": { + "type": 6, + "value": 1685743296302 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685743296302, + "description": "Compra de 4.940.350,00 IVIP por 1.408,00 BRL" + }, + "revision": "730329366e9543cfb458ce9e", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685744480429/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685744480429, + "acquirer_reference": "", + "verification_code": 1685744480429, + "net_received_amount": 0, + "total_paid_amount": 41.900000000000006, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "18d433c02c6f412198cebdba", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685744480429", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 41.900000000000006, + "total_amount": 41.900000000000006, + "id": 1685744480429, + "date_created": { + "type": 6, + "value": 1685744480429 + }, + "date_last_updated": { + "type": 6, + "value": 1685744480429 + }, + "date_of_expiration": { + "type": 6, + "value": 1685744480429 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1685744480429 + }, + "revision": "d2e453d752664693a087a659", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685744480429/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "504d79db45d74eec88285e7c", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685745152104/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685745152104, + "acquirer_reference": "", + "verification_code": 1685745152104, + "net_received_amount": 0, + "total_paid_amount": 41.9, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "f1cad95ace064eb0aae9ec2c", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685745152104", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 147164, + "total_amount": 147164, + "id": 1685745152104, + "date_created": { + "type": 6, + "value": 1685745152104 + }, + "date_last_updated": { + "type": 6, + "value": 1685745152104 + }, + "date_of_expiration": { + "type": 6, + "value": 1685745152104 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685745152104, + "description": "Compra de 147.164,00 IVIP por 41,90 BRL" + }, + "revision": "d2a616f1e1214f30b57ec119", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686664360099/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "a39303ef76364f0c9207acf2", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686664360099", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1191, + "total_amount": 1191, + "history_id": 1686664360099, + "id": 1686664360099, + "date_created": { + "type": 6, + "value": 1686664360099 + }, + "date_last_updated": { + "type": 6, + "value": 1686664809214 + }, + "date_of_expiration": { + "type": 6, + "value": 1689256360099 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686664809214 + }, + "money_release_date": { + "type": 6, + "value": 1686664809214 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "9b0d425c9b274301bb5b91d7", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686664360099/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.191,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "5f584a954a47427aba7a5d0a", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436781/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 0, + "payment_method_reference_id": 1686844436781, + "acquirer_reference": "", + "verification_code": 1686844436781, + "net_received_amount": 0, + "total_paid_amount": 511.02, + "overpaid_amount": 0, + "installment_amount": 511.02, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "9240ba398c7640b39cf5f941", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436781", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 511.02, + "total_amount": 511.02, + "id": 1686844436781, + "contract_id": "1684399661939", + "date_created": { + "type": 6, + "value": 1686844436781 + }, + "date_last_updated": { + "type": 6, + "value": 1686844436781 + }, + "date_of_expiration": { + "type": 6, + "value": 1686844436781 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1686844436781 + }, + "revision": "86a7027ce01843c7a6fe4733", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436781/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 1 de 1 no valor de 511,02 BRL referente ao contrato 1684399661939", + "revision": "a773d8eea833410ab96b4af2", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436954/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 0, + "payment_method_reference_id": 1686844436954, + "acquirer_reference": "", + "verification_code": 1686844436954, + "net_received_amount": 0, + "total_paid_amount": 508.98, + "overpaid_amount": 0, + "installment_amount": 508.98, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "28c7c9be15b14510b9e6f312", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436954", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 508.98, + "total_amount": 508.98, + "id": 1686844436954, + "contract_id": "1684612673872", + "date_created": { + "type": 6, + "value": 1686844436954 + }, + "date_last_updated": { + "type": 6, + "value": 1686844436954 + }, + "date_of_expiration": { + "type": 6, + "value": 1686844436954 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1686844436954 + }, + "revision": "810acf417744493096d1511d", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436954/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 1 de 1 no valor de 508,98 BRL referente ao contrato 1684612673872", + "revision": "2fb790e4f1d940d7ad994df2", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687345768938/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687345768938, + "acquirer_reference": "", + "verification_code": 1687345768938, + "net_received_amount": 0, + "total_paid_amount": 11152973, + "overpaid_amount": 0, + "installment_amount": 11152973, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "dc0323f9d54048b9b0fa83b5", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687345768938", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 11152973, + "total_amount": 11152973, + "id": 1687345768938, + "date_created": { + "type": 6, + "value": 1687345768938 + }, + "date_last_updated": { + "type": 6, + "value": 1687345768938 + }, + "date_of_expiration": { + "type": 6, + "value": 1718968168938 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687345768938, + "wasDebited": true + }, + "revision": "8749049cfe24487e95489fd2", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687345768938/description", + "content": { + "type": 5, + "value": "Investimento de 11.152.973,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2024", + "revision": "580502fdc020452793cef32b", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687393215194/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687393215194, + "acquirer_reference": "", + "verification_code": 1687393215194, + "net_received_amount": 0, + "total_paid_amount": 171, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "a90b267a98b14bd7a8b8d9ed", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687393215194", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 818586, + "total_amount": 818586, + "id": 1687393215194, + "date_created": { + "type": 6, + "value": 1687393215194 + }, + "date_last_updated": { + "type": 6, + "value": 1687393215194 + }, + "date_of_expiration": { + "type": 6, + "value": 1687393215194 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687393215194, + "description": "Compra de 818.586,00 IVIP por 171,00 BRL" + }, + "revision": "8ca5dde1c0cd44c8856c167c", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687495116294/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687495116294, + "acquirer_reference": "", + "verification_code": 1687495116294, + "net_received_amount": 0, + "total_paid_amount": 96, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "c06275fd25d14ffea0843f09", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687495116294", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 496157, + "total_amount": 496157, + "id": 1687495116294, + "date_created": { + "type": 6, + "value": 1687495116294 + }, + "date_last_updated": { + "type": 6, + "value": 1687495116294 + }, + "date_of_expiration": { + "type": 6, + "value": 1687495116294 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687495116294, + "description": "Compra de 496.157,00 IVIP por 96,00 BRL" + }, + "revision": "9a9eea0d56074431b6382a7c", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687547056698/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687547056698, + "acquirer_reference": "", + "verification_code": 1687547056698, + "net_received_amount": 0, + "total_paid_amount": 12152954, + "overpaid_amount": 0, + "installment_amount": 12152954, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "176193c5b894464c9fae8de0", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687547056698", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 12152954, + "total_amount": 12152954, + "id": 1687547056698, + "date_created": { + "type": 6, + "value": 1687547056698 + }, + "date_last_updated": { + "type": 6, + "value": 1687547056698 + }, + "date_of_expiration": { + "type": 6, + "value": 1750705456698 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIP", + "history_id": 1687547056698, + "wasDebited": true + }, + "revision": "62c879941f5343f096a8672a", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687547056698/description", + "content": { + "type": 5, + "value": "Investimento de 12.152.954,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025", + "revision": "fe3d83aa55bc45609d7d6e9d", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1688994491622/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "ba236e4798d04deeb18369c8", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1688994491622", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 526, + "total_amount": 526, + "history_id": 1688994491622, + "id": 1688994491622, + "date_created": { + "type": 6, + "value": 1688994491622 + }, + "date_last_updated": { + "type": 6, + "value": 1688994491622 + }, + "date_of_expiration": { + "type": 6, + "value": 1691586491622 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "66a02295074d447880591c82", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1688994491622/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 526,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "f7c8c676cb394adea2bc03d7", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689000633630/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "f53b2ad9b45f40609e886d31", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689000633630", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2224, + "total_amount": 2224, + "history_id": 1689000633630, + "id": 1689000633630, + "date_created": { + "type": 6, + "value": 1689000633630 + }, + "date_last_updated": { + "type": 6, + "value": 1689002506324 + }, + "date_of_expiration": { + "type": 6, + "value": 1691592633630 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689002506324 + }, + "money_release_date": { + "type": 6, + "value": 1689002506324 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "52aa623b21014f0e9aeac6d3", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689000633630/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.224,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "e88690e0ff2b4be4a1e2e780", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689082225194/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689082225194, + "acquirer_reference": "", + "verification_code": 1689082225194, + "net_received_amount": 0, + "total_paid_amount": 224, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "cf9c01306ea14181a6bdd754", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689082225194", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 180125, + "total_amount": 180125, + "id": 1689082225194, + "date_created": { + "type": 6, + "value": 1689082225194 + }, + "date_last_updated": { + "type": 6, + "value": 1689082225194 + }, + "date_of_expiration": { + "type": 6, + "value": 1689082225194 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689082225194, + "description": "Compra de 180.125,00 IVIP por 224,00 BRL" + }, + "revision": "a1618d71099c4a95b9c2ab67", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689114929852/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689114929852, + "acquirer_reference": "", + "verification_code": 1689114929852, + "net_received_amount": 0, + "total_paid_amount": 500, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "ea05e023470a43a2ace558bb", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689114929852", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 305476, + "total_amount": 305476, + "id": 1689114929852, + "date_created": { + "type": 6, + "value": 1689114929852 + }, + "date_last_updated": { + "type": 6, + "value": 1689114929852 + }, + "date_of_expiration": { + "type": 6, + "value": 1689114929852 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689114929852, + "description": "Compra de 305.476,00 IVIP por 500,00 BRL" + }, + "revision": "c953a563af7a48d79cd3bc06", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689115029893/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "4a8bc900a61e478685530c43", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689115029893", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 726, + "total_amount": 726, + "history_id": 1689115029893, + "id": 1689115029893, + "date_created": { + "type": 6, + "value": 1689115029893 + }, + "date_last_updated": { + "type": 6, + "value": 1689150209959 + }, + "date_of_expiration": { + "type": 6, + "value": 1691707029893 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689150209959 + }, + "money_release_date": { + "type": 6, + "value": 1689150209959 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "f181034994af4a53a86373af", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689115029893/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 726,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "a3e7c7cb2a6e44f18bed1602", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689195736692/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689195736692, + "acquirer_reference": "", + "verification_code": 1689195736692, + "net_received_amount": 0, + "total_paid_amount": 226, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "fcf0ab770e7649caba2a747b", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689195736692", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 93754, + "total_amount": 93754, + "id": 1689195736692, + "date_created": { + "type": 6, + "value": 1689195736692 + }, + "date_last_updated": { + "type": 6, + "value": 1689195736692 + }, + "date_of_expiration": { + "type": 6, + "value": 1689195736692 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689195736692, + "description": "Compra de 93.754,00 IVIP por 226,00 BRL" + }, + "revision": "235643a6940b4b56aed8194a", + "revision_nr": 1, + "created": 1702563036327, + "modified": 1702563036327 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204261841/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689204261841, + "acquirer_reference": "", + "verification_code": 1689204261841, + "net_received_amount": 0, + "total_paid_amount": 1904, + "overpaid_amount": 0, + "installment_amount": 1904, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "abd1f441f486480c9a8cd1dd", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204261841", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1904, + "total_amount": 1904, + "id": 1689204261841, + "date_created": { + "type": 6, + "value": 1689204261841 + }, + "date_last_updated": { + "type": 6, + "value": 1689204261841 + }, + "date_of_expiration": { + "type": 6, + "value": 1715556261841 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1689204261841, + "wasDebited": true + }, + "revision": "537841c5cfb1465cac37dfd9", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204261841/description", + "content": { + "type": 5, + "value": "Investimento de 1.904,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/12/2024", + "revision": "ace846150ad844dfb6c2ea16", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204343069/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689204343069, + "acquirer_reference": "", + "verification_code": 1689204343069, + "net_received_amount": 0, + "total_paid_amount": 96, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "7bb7c164f6954a7daac2e35f", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204343069", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 40949, + "total_amount": 40949, + "id": 1689204343069, + "date_created": { + "type": 6, + "value": 1689204343069 + }, + "date_last_updated": { + "type": 6, + "value": 1689204343069 + }, + "date_of_expiration": { + "type": 6, + "value": 1689204343069 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689204343069, + "description": "Compra de 40.949,00 IVIP por 96,00 BRL" + }, + "revision": "0fc887245c9b41198049084a", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689347614368/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "bf793c140d7e404ba9d7518d", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689347614368", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1423, + "total_amount": 1423, + "history_id": 1689347614368, + "id": 1689347614368, + "date_created": { + "type": 6, + "value": 1689347614368 + }, + "date_last_updated": { + "type": 6, + "value": 1689347614368 + }, + "date_of_expiration": { + "type": 6, + "value": 1691939614368 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "0d0b2f4a8e5d43ceb30c9f6c", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689347614368/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.423,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "779d1303e51548de963f8bb4", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689618134136/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "d77a5d7fb4cd49f6b659890a", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689618134136", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1379, + "total_amount": 1379, + "history_id": 1689618134136, + "id": 1689618134136, + "date_created": { + "type": 6, + "value": 1689618134136 + }, + "date_last_updated": { + "type": 6, + "value": 1689619146304 + }, + "date_of_expiration": { + "type": 6, + "value": 1692210134136 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689619146304 + }, + "money_release_date": { + "type": 6, + "value": 1689619146304 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "6d4af2c9a0a04252be2c64f0", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689618134136/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.379,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "a1e02f8babdc431ca02e893c", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689619360780/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689619360780, + "acquirer_reference": "", + "verification_code": 1689619360780, + "net_received_amount": 0, + "total_paid_amount": 500, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "747bf0f367a941c3a6de5827", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689619360780", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 326875, + "total_amount": 326875, + "id": 1689619360780, + "date_created": { + "type": 6, + "value": 1689619360780 + }, + "date_last_updated": { + "type": 6, + "value": 1689619360780 + }, + "date_of_expiration": { + "type": 6, + "value": 1689619360780 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689619360780, + "description": "Compra de 326.875,00 IVIP por 500,00 BRL" + }, + "revision": "b13159789bf0409ca576490c", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1690237331737/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1690237331737, + "acquirer_reference": "", + "verification_code": 1690237331737, + "net_received_amount": 0, + "total_paid_amount": 450, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "849fe0eded1c45f981b3b1ae", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1690237331737", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 318321, + "total_amount": 318321, + "id": 1690237331737, + "date_created": { + "type": 6, + "value": 1690237331737 + }, + "date_last_updated": { + "type": 6, + "value": 1690237331737 + }, + "date_of_expiration": { + "type": 6, + "value": 1690237331737 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1690237331737, + "description": "Compra de 318.321,00 IVIP por 450,00 BRL" + }, + "revision": "f36060b4cef64c7d91d1668b", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1690273510959/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1690273510959, + "acquirer_reference": "", + "verification_code": 1690273510959, + "net_received_amount": 0, + "total_paid_amount": 429, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "1192f033607e4296b97e63fd", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1690273510959", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 338652, + "total_amount": 338652, + "id": 1690273510959, + "date_created": { + "type": 6, + "value": 1690273510959 + }, + "date_last_updated": { + "type": 6, + "value": 1690273510959 + }, + "date_of_expiration": { + "type": 6, + "value": 1690273510959 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1690273510959, + "description": "Compra de 338.652,00 IVIP por 429,00 BRL" + }, + "revision": "9d723f24f1474348aef9d51f", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695207854014 + } + }, + "revision": "85123829360e484497aee061", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692615854014, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 450, + "installment_amount": 450, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "17c28c7ecc934dfcb27a72f2", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1692615854014", + "revision": "f5551893c40d4b29a31a81d5", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 450, + "total_amount": 450, + "id": 1692615854014, + "history_id": 1692615854014, + "date_created": { + "type": 6, + "value": 1692615854014 + }, + "date_last_updated": { + "type": 6, + "value": 1692615854014 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "b680a0fe4b844a4da9cd12cc", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014/description", + "content": { + "type": 5, + "value": "Deposito de um valor 450,00 BRL para a carteira iVip 0013.4542.5233.2609-77", + "revision": "734fcc5e281d4c0181e36bc5", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1693771767267/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693771767267, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 3384929, + "installment_amount": 3384929, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "7068b03360b24bbbb8172438", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1693771767267/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1693771767267", + "revision": "4f21bbcec2a548e0a4254234", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1693771767267", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 3384929, + "total_amount": 3384929, + "id": "1693771767267", + "history_id": "1693771767267", + "date_created": { + "type": 6, + "value": 1693771767267 + }, + "date_last_updated": { + "type": 6, + "value": 1693771767267 + }, + "date_of_expiration": { + "type": 6, + "value": 1696363767265 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "52c9cdaca0b74806bd212170", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1693771767267/description", + "content": { + "type": 5, + "value": "Investimento de 3.384.929,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", + "revision": "ccb41dedbb534466a3bf442e", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493428/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696371493428, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 3384929, + "installment_amount": 3384929, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "e6d5fc0ae0604cb0b09e2e9e", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493428/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696371493428", + "revision": "ce4034d6a5704e7cb4b2d0d4", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493428", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "001345425233260977", + "payment_method": "staking", + "original_amount": 3452627.58, + "total_amount": 3452627.58, + "id": "1696371493428", + "history_id": "1696371493428", + "date_created": { + "type": 6, + "value": 1696371493428 + }, + "date_last_updated": { + "type": 6, + "value": 1696371493428 + }, + "date_of_expiration": { + "type": 6, + "value": 1696371493428 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment" + }, + "revision": "b72896a6bc1f4c72a95e3c8b", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493428/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 3.384.929,00 IVIP com um rendimento de +67.698,58 IVIP (2,00%) - Y12XDT27", + "revision": "e7113728303341feb77cf91c", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493371/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696371493371, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 3384929, + "installment_amount": 3384929, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "df6ecbd725fe413b929553fb", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493371/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696371493371", + "revision": "e6cde79221334e84ab933534", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493371", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "001345425233260977", + "payment_method": "staking", + "original_amount": 3452627.58, + "total_amount": 3452627.58, + "id": "1696371493371", + "history_id": "1696371493371", + "date_created": { + "type": 6, + "value": 1696371493371 + }, + "date_last_updated": { + "type": 6, + "value": 1696371493371 + }, + "date_of_expiration": { + "type": 6, + "value": 1696371493371 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "67e4f1d4fc6a432985af1053", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493371/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 3.384.929,00 IVIP com um rendimento de +67.698,58 IVIP (2,00%) - Y12XDT27", + "revision": "67cb674cc083432cbca98056", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696459483900/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696459483900, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 7624011, + "installment_amount": 7624011, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "9a0ebb1a7b5244029b3bb61e", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696459483900/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696459483900", + "revision": "2d0835b60ffb4702a47c14b7", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696459483900", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "001345425233260977", + "payment_method": "staking", + "original_amount": 7624011, + "total_amount": 7624011, + "id": "1696459483900", + "history_id": "1696459483900", + "date_created": { + "type": 6, + "value": 1696459483900 + }, + "date_last_updated": { + "type": 6, + "value": 1696459483900 + }, + "date_of_expiration": { + "type": 6, + "value": 1699137883861 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "8fc464544a3644598c4503a0", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696459483900/description", + "content": { + "type": 5, + "value": "Investimento de 7.624.011,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", + "revision": "847acbf91a4549e8ba68d671", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699222159538 + } + }, + "revision": "d95a49d363b44ae997eeffed", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696630159545", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "b8c5640ee3364abea61149aa", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696630159545", + "revision": "3a203fe83415424594b06dfe", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "001345425233260977", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "id": "1696630159545", + "history_id": "1696630159545", + "date_created": { + "type": 6, + "value": 1696630159545 + }, + "date_last_updated": { + "type": 6, + "value": 1696630159545 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment" + }, + "revision": "8ed0394ad626430f90038a2d", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545/description", + "content": { + "type": 5, + "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0013.4542.5233.2609-77", + "revision": "1c8cadcde1b940beae133eee", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history", + "content": { + "type": 1, + "value": {}, + "revision": "d958d71dad7c4958ac033f6a", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 10.02 + }, + "revision": "594a7e443c2247eca31085e0", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939", + "content": { + "type": 1, + "value": { + "id": 1684399661939, + "type": "emprestimo", + "original_amount": 501, + "total_amount": 511.02, + "installments": 1, + "installment_amount": 511.02, + "date_created": { + "type": 6, + "value": 1684399661939 + }, + "history_id": 1684399661939, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "5fb28a006a184220ab2f8772", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 501,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 511,02", + "revision": "64aca7884d4243109b38280a", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939/costs", + "content": { + "type": 2, + "value": {}, + "revision": "eedfa48ccda140a68a09ec09", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 9.98 + }, + "revision": "e9028cbabadd42d695039a5e", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872", + "content": { + "type": 1, + "value": { + "id": 1684612673872, + "type": "emprestimo", + "original_amount": 499, + "total_amount": 508.98, + "installments": 1, + "installment_amount": 508.98, + "date_created": { + "type": 6, + "value": 1684612673872 + }, + "history_id": 1684612673872, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "2061ae780c354e62b0a69d22", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 499,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 508,98", + "revision": "e244f768f15f4d26ba8a6d07", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872/costs", + "content": { + "type": 2, + "value": {}, + "revision": "fd75edb0d4c94b90ab1773eb", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "74782642ba3748388bfbab48", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "5376b56577234236b10f78ba", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 1000, + "limitUsed": 0, + "analysisRequested": { + "type": 6, + "value": 1684321757322 + }, + "lastReview": { + "type": 6, + "value": 1684329814101 + } + }, + "revision": "a48631af9bca4b3e87d18316", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684091909123, + "dateValidity": 1684091909123, + "totalValue": 5846.89, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } + }, + "revision": "df87932135274c4ba36bb0e6", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/002445768964969286/balances/BRL", + "content": { + "type": 1, + "value": { + "symbol": "BRL", + "available": "100.00000000", + "value": 20.09 + }, + "revision": "440baaf1e8f149f296a7fc09", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/002445768964969286/balances", + "content": { + "type": 1, + "value": {}, + "revision": "6a50270575b74e19bfc6cbbd", + "revision_nr": 1, + "created": 1702563036328, + "modified": 1702563036328 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history/1684119457629/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "a671d924b93f402fa1534d21", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history/1684119457629", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1684119457629, + "id": 1684119457629, + "date_created": { + "type": 6, + "value": 1684119457629 + }, + "date_last_updated": { + "type": 6, + "value": 1684119734913 + }, + "date_of_expiration": { + "type": 6, + "value": 1686711457629 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684119734913 + }, + "money_release_date": { + "type": 6, + "value": 1684119734913 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "17f7c025cbad4c0391d6bd76", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history/1684119457629/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0024.4576.8964.9692-86", + "revision": "3c962d2d24b34dd184009b23", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history", + "content": { + "type": 1, + "value": {}, + "revision": "d386812d747847768fec8d6a", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/002445768964969286/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "d6b2f8ad2a714ed48cbde5a1", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/002445768964969286/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "9d76893dafa64d1fae0050e7", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/002445768964969286", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684119427446, + "dateValidity": 1684119427446, + "totalValue": 20.09, + "currencyType": "USD" + }, + "revision": "f5525ab92fc74790984d13c4", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "5324627.00000000", + "symbol": "IVIP", + "value": 1075.36 + }, + "revision": "2652d11e65eb4947b0ecae8b", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/balances", + "content": { + "type": 1, + "value": {}, + "revision": "ab55b5dba974477eba9bd1c9", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1677798769726/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "36d876806043440c88b8c1c9", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1677798769726", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "history_id": 1677798769726, + "id": 1677798769726, + "date_created": { + "type": 6, + "value": 1677798769726 + }, + "date_last_updated": { + "type": 6, + "value": 1678713365659 + }, + "date_of_expiration": { + "type": 6, + "value": 1680390769726 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1678713365659 + }, + "money_release_status": "rejected" + }, + "revision": "a320744dec914019a9f9001b", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1677798769726/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0037.5729.7582.0925-33", + "revision": "59cee2fefdf64f4faff32370", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678058459792/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "52ae3d3c20f94498a1a68d78", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678058459792", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1678058459792, + "id": 1678058459792, + "date_created": { + "type": 6, + "value": 1678058459792 + }, + "date_last_updated": { + "type": 6, + "value": 1678714885155 + }, + "date_of_expiration": { + "type": 6, + "value": 1680650459792 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1678714885155 + }, + "money_release_status": "rejected" + }, + "revision": "3bdbabafd85a4cbeaadeeb01", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678058459792/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0037.5729.7582.0925-33", + "revision": "d41813b2a0bf44e191c44e2d", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678527306058/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "d01d22ef62b74e539ee1a278", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678527306058", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1678527306058, + "id": 1678527306058, + "date_created": { + "type": 6, + "value": 1678527306058 + }, + "date_last_updated": { + "type": 6, + "value": 1678544524146 + }, + "date_of_expiration": { + "type": 6, + "value": 1681119306058 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678544524146 + }, + "money_release_date": { + "type": 6, + "value": 1678544524146 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "de78ffb39c6f472892df37a3", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678527306058/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0037.5729.7582.0925-33", + "revision": "264d80952da840bdac844d09", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1679908062539/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679908062539, + "acquirer_reference": "", + "verification_code": 1679908062539, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "0b48b201c650422bb86b5e7c", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1679908062539", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 5325627, + "total_amount": 5325627, + "id": 1679908062539, + "date_created": { + "type": 6, + "value": 1679908062539 + }, + "date_last_updated": { + "type": 6, + "value": 1679908062539 + }, + "date_of_expiration": { + "type": 6, + "value": 1679908062539 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679908062539, + "description": "Compra de 5.325.627,00 IVIP por 1.000,00 BRL" + }, + "revision": "96b22f82e877431fb7edca46", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1687109837625/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687109837625, + "acquirer_reference": "", + "verification_code": 1687109837625, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "bb5005344d1343fb9e5043ad", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1687109837625", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1687109837625, + "date_created": { + "type": 6, + "value": 1687109837625 + }, + "date_last_updated": { + "type": 6, + "value": 1687109837625 + }, + "date_of_expiration": { + "type": 6, + "value": 1702921037625 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687109837625 + }, + "revision": "43028ed62938456ba40b2dbb", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1687109837625/description", + "content": { + "type": 5, + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/18/2023", + "revision": "8056688f293045e7a836a9b8", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history", + "content": { + "type": 1, + "value": {}, + "revision": "5341765353074a1aa0b334dc", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "f2c06459ea5d41c1999f4a86", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "e19921b0a1ba4d4b95017a7b", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677457152875, + "dateValidity": 1678995120507, + "totalValue": 249.76613748285868, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696129200000 + } + }, + "revision": "0fa7875d035e4c498498d1af", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/005753000686812060/balances", + "content": { + "type": 1, + "value": {}, + "revision": "234f22766a1d474da87a3381", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/005753000686812060/history", + "content": { + "type": 1, + "value": {}, + "revision": "ff01dddc82264ef3be3fe192", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/005753000686812060", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678127212147, + "dateValidity": 1678325697693, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "e8d6f1cccafd4d548d656cd6", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "150.00000000", + "symbol": "BRL", + "value": 29.27 + }, + "revision": "2127f1b4ba2442f8b31ecddd", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/balances", + "content": { + "type": 1, + "value": {}, + "revision": "69b6384977b545958637b45d", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689373938365/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "1df01c44204a41f897796d6f", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689373938365", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1689373938365, + "id": 1689373938365, + "date_created": { + "type": 6, + "value": 1689373938365 + }, + "date_last_updated": { + "type": 6, + "value": 1690407661153 + }, + "date_of_expiration": { + "type": 6, + "value": 1691965938365 + }, + "operation_type": "regular_payment", + "status": "cancelled", + "status_detail": "cancelled", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1690407661153 + }, + "money_release_status": "cancelled", + "wasDebited": true + }, + "revision": "ae1675fb52994e22a58cfc5c", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689373938365/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0072.1969.3774.2530-22", + "revision": "3a02135c20994a7f963c0560", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689719003118/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "a4dd587993544c35b63af2a3", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689719003118", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 130, + "total_amount": 130, + "history_id": 1689719003118, + "id": 1689719003118, + "date_created": { + "type": 6, + "value": 1689719003118 + }, + "date_last_updated": { + "type": 6, + "value": 1690407636264 + }, + "date_of_expiration": { + "type": 6, + "value": 1692311003118 + }, + "operation_type": "regular_payment", + "status": "cancelled", + "status_detail": "cancelled", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1690407636264 + }, + "money_release_status": "cancelled", + "wasDebited": true + }, + "revision": "2e91cf2cc2a64920ba86fc2b", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689719003118/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 130,00 para a carteira iVip 0072.1969.3774.2530-22", + "revision": "e93034e007f2457fbc71fc95", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692808041978 + } + }, + "revision": "9e9aa5678f59410db8cc344b", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690216041978, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 150, + "installment_amount": 150, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "65d80a2348964d7f845b1168", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/007219693774253022/history/1690216041978", + "revision": "5a292810a63e4f4eb3154291", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 150, + "total_amount": 150, + "id": 1690216041978, + "history_id": 1690216041978, + "date_created": { + "type": 6, + "value": 1690216041978 + }, + "date_last_updated": { + "type": 6, + "value": 1690219390794 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1690219390794 + }, + "money_release_date": { + "type": 6, + "value": 1690219390794 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "17c64193667f4d40b7289d7f", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0072.1969.3774.2530-22", + "revision": "ee309ea7b90c4718b99f7f3e", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history", + "content": { + "type": 1, + "value": {}, + "revision": "c41f62a8c7ad4931bdf6734e", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "6bad1b5465ff44359e8cc452", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "df10df268ae34590a3b22e0a", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689373828234, + "dateValidity": 1689373828234, + "totalValue": 0, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697252400000 + } + }, + "revision": "cc22c2bfc31147c5995fbbb8", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007971641402707341/balances", + "content": { + "type": 1, + "value": {}, + "revision": "bb9a633788dc4a709760c0d3", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007971641402707341/history", + "content": { + "type": 1, + "value": {}, + "revision": "d3fcc16b97934641b4df7d87", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007971641402707341", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678227735051, + "dateValidity": 1678242135085, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "01b6443f96f945ceae6555cd", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/010022330876236384/balances", + "content": { + "type": 1, + "value": {}, + "revision": "145fa55d88b6482a89d23677", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/010022330876236384/history", + "content": { + "type": 1, + "value": {}, + "revision": "ade20b888b3c4f3db47e6519", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/010022330876236384", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677760347570, + "dateValidity": 1677760347570, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "1f693693e6bb46a08ca0af78", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/balances", + "content": { + "type": 1, + "value": {}, + "revision": "fb4c426d94df4a358ab1c0e8", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684424340055/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "256a4c0fd9cc488f9bff75f0", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684424340055", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 507, + "total_amount": 507, + "history_id": 1684424340055, + "id": 1684424340055, + "date_created": { + "type": 6, + "value": 1684424340055 + }, + "date_last_updated": { + "type": 6, + "value": 1684429370415 + }, + "date_of_expiration": { + "type": 6, + "value": 1687016340055 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684429370415 + }, + "money_release_date": { + "type": 6, + "value": 1684429370415 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "79de37e7b623475aa9b7e78d", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684424340055/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 507,00 para a carteira iVip 0117.2048.7643.9274-14", + "revision": "58f8dc2a7c174f7aa41e9153", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684539875683/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "07a6a86e97134468a8aee752", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684539875683", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1093, + "total_amount": 1093, + "history_id": 1684539875683, + "id": 1684539875683, + "date_created": { + "type": 6, + "value": 1684539875683 + }, + "date_last_updated": { + "type": 6, + "value": 1684540637031 + }, + "date_of_expiration": { + "type": 6, + "value": 1687131875683 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684540637031 + }, + "money_release_date": { + "type": 6, + "value": 1684540637031 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "0e884739134f453d9bfbc14c", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684539875683/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.093,00 para a carteira iVip 0117.2048.7643.9274-14", + "revision": "e410f9d9c03b4f2e9e1a5a08", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684625025298/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684625025298, + "acquirer_reference": "", + "verification_code": 1684625025298, + "net_received_amount": 0, + "total_paid_amount": 1600, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "74b28df52756463987ce2f5f", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684625025298", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 7793170, + "total_amount": 7793170, + "id": 1684625025298, + "date_created": { + "type": 6, + "value": 1684625025298 + }, + "date_last_updated": { + "type": 6, + "value": 1684625025298 + }, + "date_of_expiration": { + "type": 6, + "value": 1684625025298 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684625025298, + "description": "Compra de 7.793.170,00 IVIP por 1.600,00 BRL" + }, + "revision": "0bffa9ebc3f74378a4be626f", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685465338404/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "bb45a6bbf44741a29bc35987", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685465338404", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 5588008, + "total_amount": 5588008, + "history_id": 1685465338404, + "id": 1685465338404, + "date_created": { + "type": 6, + "value": 1685465338404 + }, + "date_last_updated": { + "type": 6, + "value": 1685472203347 + }, + "date_of_expiration": { + "type": 6, + "value": 1685465338404 + }, + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1685472203347 + }, + "money_release_date": { + "type": 6, + "value": 1685472203347 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "d4633e3dfdee40ad9e82d807", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685465338404/description", + "content": { + "type": 5, + "value": "Saque de 5.588.008,00 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", + "revision": "429abd93ae8a48859b156656", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720288992/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685720288992, + "acquirer_reference": "", + "verification_code": 1685720288992, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "c0815cc37979402dbea9db08", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720288992", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1685720288992, + "date_created": { + "type": 6, + "value": 1685720288992 + }, + "date_last_updated": { + "type": 6, + "value": 1685720288992 + }, + "date_of_expiration": { + "type": 6, + "value": 1701531488992 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685720288992 + }, + "revision": "a9164c8b0fb34b1eb45724df", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720288992/description", + "content": { + "type": 5, + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/2/2023", + "revision": "a3d3fba1621f4ff886cdc6de", + "revision_nr": 1, + "created": 1702563036329, + "modified": 1702563036329 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720363618/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685720363618, + "acquirer_reference": "", + "verification_code": 1685720363618, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "df6f762a6e5a4eed8f1be464", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720363618", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1685720363618, + "date_created": { + "type": 6, + "value": 1685720363618 + }, + "date_last_updated": { + "type": 6, + "value": 1685720363618 + }, + "date_of_expiration": { + "type": 6, + "value": 1688312363618 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685720363618 + }, + "revision": "62125df27ada4d64870bff33", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720363618/description", + "content": { + "type": 5, + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/2/2023", + "revision": "c8feaf1a1f3f4f4b973bb5da", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688400602023/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688400602023, + "acquirer_reference": "", + "verification_code": 1688400602023, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "a702f429829544a18b1fada5", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688400602023", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1020, + "total_amount": 1020, + "id": 1688400602023, + "date_created": { + "type": 6, + "value": 1688400602023 + }, + "date_last_updated": { + "type": 6, + "value": 1688400602023 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400602023 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688400602023, + "wasDebited": true + }, + "revision": "566e370b2c0243cf81233704", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688400602023/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%)", + "revision": "a089031f947f4ed8ba32ce5b", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688595538475/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688595538475, + "acquirer_reference": "", + "verification_code": 1688595538475, + "net_received_amount": 0, + "total_paid_amount": 2154096, + "overpaid_amount": 0, + "installment_amount": 2154096, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "beaba4989554460fbc5427ef", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688595538475", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 2154096, + "total_amount": 2154096, + "id": 1688595538475, + "date_created": { + "type": 6, + "value": 1688595538475 + }, + "date_last_updated": { + "type": 6, + "value": 1688595538475 + }, + "date_of_expiration": { + "type": 6, + "value": 1691273938475 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688595538475 + }, + "revision": "d63774cdf0dd472a890c8a3e", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688595538475/description", + "content": { + "type": 5, + "value": "Investimento de 2.154.096,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023", + "revision": "3d063a66e9ab48efbb41da81", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691274110792/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691274110792, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2197177.92, + "installment_amount": 2197177.92, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "88f9720b7e97405ba278c051", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691274110792/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691274110792", + "revision": "b1172ca429c943119f2d2ddd", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691274110792", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 2197177.92, + "total_amount": 2197177.92, + "id": 1691274110792, + "history_id": 1691274110792, + "date_created": { + "type": 6, + "value": 1691274110792 + }, + "date_last_updated": { + "type": 6, + "value": 1691274110792 + }, + "date_of_expiration": { + "type": 6, + "value": 1691274110792 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "0edc1372ed2040c2bf8c84ff", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691274110792/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 2.154.096,00 IVIP com um rendimento de +43.081,92 IVIP (2,00%)", + "revision": "c7f15c85968641f28980a6ef", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 36290.1735 + }, + "revision": "5ba737df640546369d2255eb", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691439593377, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1247085, + "installment_amount": 1247085, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "accbd94f26314a1ea452dbbb", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691439593377", + "revision": "1e4465656f234be9a598aa41", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "508ec0aebafb47c68e85be78", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1247085, + "total_amount": 1209672.45, + "id": 1691439593377, + "history_id": 1691439593377, + "date_created": { + "type": 6, + "value": 1691439593377 + }, + "date_last_updated": { + "type": 6, + "value": 1692191601115 + }, + "date_of_expiration": { + "type": 6, + "value": 1691439593377 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_amount", + "money_release_date": { + "type": 6, + "value": 1692191601115 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "661a66c639b247579d83981f", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/description", + "content": { + "type": 5, + "value": "Saque de 1.209.672,45 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", + "revision": "2fad26054f174d6a9da25565", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 36184.977 + }, + "revision": "437e0c9d66ef44ca946bb7a7", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691439992266, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1243470, + "installment_amount": 1243470, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "4ed847ce397a4656b2824631", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691439992266", + "revision": "c73227435d154db8807ceda7", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "938cb5eb12524f0397d228c4", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1243470, + "total_amount": 1206165.9, + "id": 1691439992266, + "history_id": 1691439992266, + "date_created": { + "type": 6, + "value": 1691439992266 + }, + "date_last_updated": { + "type": 6, + "value": 1692191577715 + }, + "date_of_expiration": { + "type": 6, + "value": 1691439992266 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_amount", + "money_release_date": { + "type": 6, + "value": 1692191577715 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "1cbfe40af0814847822d10e5", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/description", + "content": { + "type": 5, + "value": "Saque de 1.206.165,9 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", + "revision": "50f16c6f29c24a3d8d2c2102", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 65395.38 + }, + "revision": "24eddbf993ad46638f9af19b", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691447884361, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2247263.92, + "installment_amount": 2247263.92, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "eb6ccd5cbe2c46de8bc0dc57", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691447884361", + "revision": "bf004ac017cb4a65bb8fa231", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "903ab67e2b484c589172c051", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 2247263.92, + "total_amount": 2179846, + "id": 1691447884361, + "history_id": 1691447884361, + "date_created": { + "type": 6, + "value": 1691447884361 + }, + "date_last_updated": { + "type": 6, + "value": 1691501288315 + }, + "date_of_expiration": { + "type": 6, + "value": 1691447884361 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": { + "type": 6, + "value": 1691501288315 + }, + "money_release_date": { + "type": 6, + "value": 1691501288315 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "3fccf5f3f92e41eeb438cea6", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/description", + "content": { + "type": 5, + "value": "Saque de 2.179.846,00 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", + "revision": "8c998a15300e4ef6a0189aaf", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history", + "content": { + "type": 1, + "value": {}, + "revision": "8cd85b05c7d5423ebdd1cdcf", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "024c5dd68633444dbaa5b297", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "2207cf8dff18461784e79462", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684369387404, + "dateValidity": 1684369387404, + "totalValue": 4.914821489351172, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } + }, + "revision": "72ca2e55858d451d9ed5ad05", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012415886921139930/balances", + "content": { + "type": 1, + "value": {}, + "revision": "e50d8c32651c46ac91380b8b", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012415886921139930/history", + "content": { + "type": 1, + "value": {}, + "revision": "71991ea7eb2b40bf8c2df6cd", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012415886921139930", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696522229806, + "dateValidity": 1696522229867, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696474800000 + } + }, + "revision": "a8e26f4069e644aea85f7b7e", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/balances", + "content": { + "type": 1, + "value": {}, + "revision": "32a16c605a6a4aa5aabd6975", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1678555308384/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "2789576023b14d3baac8345b", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1678555308384", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1678555308384, + "id": 1678555308384, + "date_created": { + "type": 6, + "value": 1678555308384 + }, + "date_last_updated": { + "type": 6, + "value": 1678631722207 + }, + "date_of_expiration": { + "type": 6, + "value": 1681147308384 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678631722207 + }, + "money_release_date": { + "type": 6, + "value": 1678631722207 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "e5257f6d2aaf481c94c5623c", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1678555308384/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0128.8622.7244.5948-72", + "revision": "04b1de18598d4156b32c1818", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1679266899414/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679266899414, + "acquirer_reference": "", + "verification_code": 1679266899414, + "net_received_amount": 0, + "total_paid_amount": 50, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "1d055fa5bef94da4995542fb", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1679266899414", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 291076, + "total_amount": 291076, + "id": 1679266899414, + "date_created": { + "type": 6, + "value": 1679266899414 + }, + "date_last_updated": { + "type": 6, + "value": 1679266899414 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266899414 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679266899414, + "description": "Compra de 291076 IVIP por 50 BRL" + }, + "revision": "655a0abd500b4d0db1c30cfb", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1685668294321/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685668294321, + "acquirer_reference": "", + "verification_code": 1685668294321, + "net_received_amount": 0, + "total_paid_amount": 291076, + "overpaid_amount": 0, + "installment_amount": 291076, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "5e52f0fb2dcb4ea1aa5cdeb3", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1685668294321", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 291076, + "total_amount": 291076, + "id": 1685668294321, + "date_created": { + "type": 6, + "value": 1685668294321 + }, + "date_last_updated": { + "type": 6, + "value": 1685668294321 + }, + "date_of_expiration": { + "type": 6, + "value": 1748826694321 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685668294321, + "wasDebited": true + }, + "revision": "d468fed6c2e14eaf82308859", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1685668294321/description", + "content": { + "type": 5, + "value": "Investimento de 291.076,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", + "revision": "4d8a78145e7a4bfcbbeab40f", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history", + "content": { + "type": 1, + "value": {}, + "revision": "4a845c73dafc48b1a38e93e6", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "1caebe2fb8004f9da6a7f0f5", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "6041ec6eb1cd4e81966af5fa", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012886227244594872", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678552860672, + "dateValidity": 1678668725687, + "totalValue": 16.26, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } + }, + "revision": "26dd48a5b3804e379ba315a2", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "739882.02000000", + "symbol": "IVIP", + "value": 77.94 + }, + "revision": "92a59b54e9234c0bba418af2", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/balances", + "content": { + "type": 1, + "value": {}, + "revision": "2b33fdd4bdcb468f81583f86", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684102091531/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "584db939377e46768f11d320", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684102091531", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 150, + "total_amount": 150, + "history_id": 1684102091531, + "id": 1684102091531, + "date_created": { + "type": 6, + "value": 1684102091531 + }, + "date_last_updated": { + "type": 6, + "value": 1684102990115 + }, + "date_of_expiration": { + "type": 6, + "value": 1686694091531 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684102990115 + }, + "money_release_date": { + "type": 6, + "value": 1684102990115 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "4ff3202a456449c79aea87bf", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684102091531/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0150.9473.3487.9762-98", + "revision": "60dacb592dc947fbbd04065c", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684624257232/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624257232, + "acquirer_reference": "", + "verification_code": 1684624257232, + "net_received_amount": 0, + "total_paid_amount": 150, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "b2f38dbf3ff947dcb6ad508e", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684624257232", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 730609, + "total_amount": 730609, + "id": 1684624257232, + "date_created": { + "type": 6, + "value": 1684624257232 + }, + "date_last_updated": { + "type": 6, + "value": 1684624257232 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624257232 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624257232, + "description": "Compra de 730.609,00 IVIP por 150,00 BRL" + }, + "revision": "dcef322e2f5b47f6a2db2509", + "revision_nr": 1, + "created": 1702563036330, + "modified": 1702563036330 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113576960/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687113576960, + "acquirer_reference": "", + "verification_code": 1687113576960, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "e5b59633f69744b6af3874f8", + "revision_nr": 1, + "created": 1702563036331, + "modified": 1702563036331 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113576960", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1687113576960, + "date_created": { + "type": 6, + "value": 1687113576960 + }, + "date_last_updated": { + "type": 6, + "value": 1687113576960 + }, + "date_of_expiration": { + "type": 6, + "value": 1702924776960 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687113576960, + "wasDebited": true + }, + "revision": "07a1628821e849698da6542c", + "revision_nr": 1, + "created": 1702563036331, + "modified": 1702563036331 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113576960/description", + "content": { + "type": 5, + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/18/2023", + "revision": "3288b267f23f437aa505d25c", + "revision_nr": 1, + "created": 1702563036331, + "modified": 1702563036331 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113714689/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687113714689, + "acquirer_reference": "", + "verification_code": 1687113714689, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "1fb0dbba5e0c454aac2816e8", + "revision_nr": 1, + "created": 1702563036331, + "modified": 1702563036331 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113714689", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1687113714689, + "date_created": { + "type": 6, + "value": 1687113714689 + }, + "date_last_updated": { + "type": 6, + "value": 1687113714689 + }, + "date_of_expiration": { + "type": 6, + "value": 1718736114689 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687113714689 + }, + "revision": "dbcb48bd348641d3b047c76d", + "revision_nr": 1, + "created": 1702563036331, + "modified": 1702563036331 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113714689/description", + "content": { + "type": 5, + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/18/2024", + "revision": "1f21afad37d442bfb56b46d0", + "revision_nr": 1, + "created": 1702563036331, + "modified": 1702563036331 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113759469/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687113759469, + "acquirer_reference": "", + "verification_code": 1687113759469, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "34a30929530a4413ba402ca5", + "revision_nr": 1, + "created": 1702563036331, + "modified": 1702563036331 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113759469", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1687113759469, + "date_created": { + "type": 6, + "value": 1687113759469 + }, + "date_last_updated": { + "type": 6, + "value": 1687113759469 + }, + "date_of_expiration": { + "type": 6, + "value": 1750272159469 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687113759469 + }, + "revision": "4800a77e950247a59ae202bd", + "revision_nr": 1, + "created": 1702563036331, + "modified": 1702563036331 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113759469/description", + "content": { + "type": 5, + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/18/2025", + "revision": "64a6ed5bd7004d61beb38ffd", + "revision_nr": 1, + "created": 1702563036331, + "modified": 1702563036331 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313544564/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687313544564, + "acquirer_reference": "", + "verification_code": 1687313544564, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "d4b1ae054a0e402ea64efc3d", + "revision_nr": 1, + "created": 1702563036331, + "modified": 1702563036331 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313544564", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1687313544564, + "date_created": { + "type": 6, + "value": 1687313544564 + }, + "date_last_updated": { + "type": 6, + "value": 1687313544564 + }, + "date_of_expiration": { + "type": 6, + "value": 1750471944564 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687313544564 + }, + "revision": "a4378a5703e043a98616d3fa", + "revision_nr": 1, + "created": 1702563036331, + "modified": 1702563036331 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313544564/description", + "content": { + "type": 5, + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2025", + "revision": "488b0e178a6c4deb827f01d3", + "revision_nr": 1, + "created": 1702563036331, + "modified": 1702563036331 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313588225/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687313588225, + "acquirer_reference": "", + "verification_code": 1687313588225, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "718f0e00ab684db095254d79", + "revision_nr": 1, + "created": 1702563036331, + "modified": 1702563036331 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313588225", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1687313588225, + "date_created": { + "type": 6, + "value": 1687313588225 + }, + "date_last_updated": { + "type": 6, + "value": 1687313588225 + }, + "date_of_expiration": { + "type": 6, + "value": 1718935988225 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687313588225 + }, + "revision": "b2352c9be7d04961ae36e9cc", + "revision_nr": 1, + "created": 1702563036331, + "modified": 1702563036331 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313588225/description", + "content": { + "type": 5, + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024", + "revision": "e934c88fa5bc4d03be0ff4d5", + "revision_nr": 1, + "created": 1702563036331, + "modified": 1702563036331 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1688595606369/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688595606369, + "acquirer_reference": "", + "verification_code": 1688595606369, + "net_received_amount": 0, + "total_paid_amount": 713651, + "overpaid_amount": 0, + "installment_amount": 713651, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "b5760d56fc3d424186aca0fc", + "revision_nr": 1, + "created": 1702563036331, + "modified": 1702563036331 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1688595606369", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 713651, + "total_amount": 713651, + "id": 1688595606369, + "date_created": { + "type": 6, + "value": 1688595606369 + }, + "date_last_updated": { + "type": 6, + "value": 1688595606369 + }, + "date_of_expiration": { + "type": 6, + "value": 1691274006369 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688595606369 + }, + "revision": "43019e457ad645a696fd1df9", + "revision_nr": 1, + "created": 1702563036331, + "modified": 1702563036331 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1688595606369/description", + "content": { + "type": 5, + "value": "Investimento de 713.651,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023", + "revision": "b3beb791e9284b76bdb615fd", + "revision_nr": 1, + "created": 1702563036331, + "modified": 1702563036331 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1691274110709/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691274110709, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 727924.02, + "installment_amount": 727924.02, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "77078906748a40c79185a2dc", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1691274110709/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/015094733487976298/history/1691274110709", + "revision": "af341cf565cb476085285781", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1691274110709", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 727924.02, + "total_amount": 727924.02, + "id": 1691274110709, + "history_id": 1691274110709, + "date_created": { + "type": 6, + "value": 1691274110709 + }, + "date_last_updated": { + "type": 6, + "value": 1691274110709 + }, + "date_of_expiration": { + "type": 6, + "value": 1691274110709 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "09e992a8b2db45ea8a283cf1", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1691274110709/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 713.651,00 IVIP com um rendimento de +14.273,02 IVIP (2,00%)", + "revision": "963d45c0c1f049a8bec9271d", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history", + "content": { + "type": 1, + "value": {}, + "revision": "2417b4eb95a04755aa680c14", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "e8f58beb796e4fbab85bb231", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "caceaa959eb643d98ccb4c51", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684102027321, + "dateValidity": 1684102027322, + "totalValue": 1.39, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697252400000 + } + }, + "revision": "f9f45f11c8c7482686e77d3a", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016159398553157178/balances", + "content": { + "type": 1, + "value": {}, + "revision": "e283354fde1147bca06c2627", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016159398553157178/history", + "content": { + "type": 1, + "value": {}, + "revision": "1f9d4bb9c7e24bb99db5a798", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016159398553157178/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "670ca7b15506483d8d14427f", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016159398553157178/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "4d57bf9be4c24f699ed05259", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016159398553157178", + "content": { + "type": 1, + "value": { + "dataModificacao": 1688737390323, + "dateValidity": 1688737390323, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "44ceab0b94c94e44be1daffc", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/balances/BRL", + "content": { + "type": 1, + "value": { + "symbol": "BRL", + "available": "0.00000000", + "value": 0 + }, + "revision": "f533b846224c4f348187c592", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/balances/IVIP", + "content": { + "type": 1, + "value": { + "symbol": "IVIP", + "available": "0.00000000", + "value": 0 + }, + "revision": "a215b722518c4c4eaed8cd56", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/balances", + "content": { + "type": 1, + "value": {}, + "revision": "fe119dd74164487388a566f5", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684198299992/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "98d95dfb3c714452a02cf4c7", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684198299992", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1684198299992, + "id": 1684198299992, + "date_created": { + "type": 6, + "value": 1684198299992 + }, + "date_last_updated": { + "type": 6, + "value": 1684558235747 + }, + "date_of_expiration": { + "type": 6, + "value": 1686790299992 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1684558235747 + }, + "money_release_status": "rejected" + }, + "revision": "c90b66e992b1434eb489496d", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684198299992/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0164.7568.6934.0474-40", + "revision": "3be6b08c01a84499bc4d7b24", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684201414429/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "13aa06ade2c347fbae60b777", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684201414429", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1684201414429, + "id": 1684201414429, + "date_created": { + "type": 6, + "value": 1684201414429 + }, + "date_last_updated": { + "type": 6, + "value": 1684246130715 + }, + "date_of_expiration": { + "type": 6, + "value": 1686793414429 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684246130715 + }, + "money_release_date": { + "type": 6, + "value": 1684246130715 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "595571c938524590a747a6a5", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684201414429/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0164.7568.6934.0474-40", + "revision": "6de014bfdc2c46c297ded732", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684440954255/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "8fb0b2873922419faa5527f1", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684440954255", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 600, + "total_amount": 600, + "history_id": 1684440954255, + "id": 1684440954255, + "date_created": { + "type": 6, + "value": 1684440954255 + }, + "date_last_updated": { + "type": 6, + "value": 1684444155806 + }, + "date_of_expiration": { + "type": 6, + "value": 1687032954255 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684444155806 + }, + "money_release_date": { + "type": 6, + "value": 1684444155806 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "d831757330a7412bbe2736d0", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684440954255/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 600,00 para a carteira iVip 0164.7568.6934.0474-40", + "revision": "42e6e5996bb640ef96f9fa02", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684626826140/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684626826140, + "acquirer_reference": "", + "verification_code": 1684626826140, + "net_received_amount": 0, + "total_paid_amount": 1600, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "d0f2433789c9469cbcafe161", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684626826140", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 7793170, + "total_amount": 7793170, + "id": 1684626826140, + "date_created": { + "type": 6, + "value": 1684626826140 + }, + "date_last_updated": { + "type": 6, + "value": 1684626826140 + }, + "date_of_expiration": { + "type": 6, + "value": 1684626826140 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684626826140, + "description": "Compra de 7.793.170,00 IVIP por 1.600,00 BRL" + }, + "revision": "7bad830375cc42108bc286f8", + "revision_nr": 1, + "created": 1702563036334, + "modified": 1702563036334 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685396913259/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "63a711bc5f09487a80f4b713", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685396913259", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 788564, + "total_amount": 788564, + "history_id": 1685396913259, + "id": 1685396913259, + "date_created": { + "type": 6, + "value": 1685396913259 + }, + "date_last_updated": { + "type": 6, + "value": 1685396913259 + }, + "date_of_expiration": { + "type": 6, + "value": 1685396913259 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "ebef35b6f03b438b9764110c", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685396913259/description", + "content": { + "type": 5, + "value": "Saque de 788.564,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", + "revision": "d65d4ce7d01344a39f0fb73e", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470076106/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "b92cbbe4bd9041f2af36a153", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470076106", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 788564, + "total_amount": 788564, + "history_id": 1685470076106, + "id": 1685470076106, + "date_created": { + "type": 6, + "value": 1685470076106 + }, + "date_last_updated": { + "type": 6, + "value": 1685535131930 + }, + "date_of_expiration": { + "type": 6, + "value": 1685470076106 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "IVIP", + "money_release_date": { + "type": 6, + "value": 1685535131930 + }, + "money_release_status": "rejected" + }, + "revision": "8711334797734b89a4bb35ba", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470076106/description", + "content": { + "type": 5, + "value": "Saque de 788.564,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", + "revision": "69c0131cafb14968a9d142a3", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470615415/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "90456c0487394eaf97c1b318", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470615415", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 7793170, + "total_amount": 7793170, + "history_id": 1685470615415, + "id": 1685470615415, + "date_created": { + "type": 6, + "value": 1685470615415 + }, + "date_last_updated": { + "type": 6, + "value": 1685537125835 + }, + "date_of_expiration": { + "type": 6, + "value": 1685470615415 + }, + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1685537125835 + }, + "money_release_date": { + "type": 6, + "value": 1685537125835 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "e0e2c7e73a3d4cc5a1f58876", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470615415/description", + "content": { + "type": 5, + "value": "Saque de 7.793.170,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", + "revision": "419230e82d594c9595f277cb", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685537035322/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "0f9883193aea475dae4478af", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685537035322", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 7793170, + "total_amount": 7793170, + "history_id": 1685537035322, + "id": 1685537035322, + "date_created": { + "type": 6, + "value": 1685537035322 + }, + "date_last_updated": { + "type": 6, + "value": 1685537068819 + }, + "date_of_expiration": { + "type": 6, + "value": 1685537035322 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "IVIP", + "money_release_date": { + "type": 6, + "value": 1685537068819 + }, + "money_release_status": "rejected" + }, + "revision": "90d86bd68fe84b988493c54f", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685537035322/description", + "content": { + "type": 5, + "value": "Saque de 7.793.170,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", + "revision": "47bb9390b6384cf389201f95", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history", + "content": { + "type": 1, + "value": {}, + "revision": "4030b2cecbed4c2092c2e086", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "7c4bc6ce06644368a20298ea", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "3861216f8cd84954840a6384", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684198152404, + "dateValidity": 1684198152404, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "0e7de1697d7047339818c355", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017170382309708910/balances", + "content": { + "type": 1, + "value": {}, + "revision": "100b3b5e80e7475abcd2905c", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017170382309708910/history", + "content": { + "type": 1, + "value": {}, + "revision": "ff5861bf4f08412a9cd0869a", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017170382309708910/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "ef262b6a194641768ae15771", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017170382309708910/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "0084fa819c8f4e7fb0ce660e", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017170382309708910", + "content": { + "type": 1, + "value": { + "dataModificacao": 1685395419731, + "dateValidity": 1685395419731, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "f859eb185b9245a29e0adc16", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "0.74000000", + "symbol": "IVIP", + "value": 0.000077 + }, + "revision": "a3f80f29c8c841ffb7deda4a", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/balances", + "content": { + "type": 1, + "value": {}, + "revision": "68f8d8ece8fe4571908b0546", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1683998693589/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "c94cbeabc79d42e9ae68157a", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1683998693589", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "history_id": 1683998693589, + "id": 1683998693589, + "date_created": { + "type": 6, + "value": 1683998693589 + }, + "date_last_updated": { + "type": 6, + "value": 1684000354399 + }, + "date_of_expiration": { + "type": 6, + "value": 1686590693589 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684000354399 + }, + "money_release_date": { + "type": 6, + "value": 1684000354399 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "08d2ec48c156441db384d37c", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1683998693589/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0176.0919.3050.0250-62", + "revision": "f41375a61f844aab8d005ce4", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "1691ca8a27774b00b55bb559", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388/details", + "content": { + "type": 1, + "value": {}, + "revision": "3d4772bb50b3459a9e4517da", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "96b994d910d34b64a2dcb60b", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "history_id": 1684003059388, + "id": 1684003059388, + "date_created": { + "type": 6, + "value": 1684003059388 + }, + "date_last_updated": { + "type": 6, + "value": 1684003059388 + }, + "date_of_expiration": { + "type": 6, + "value": 1686595059388 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "9e78db6a080742a2930fc9e8", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "6b226380512f45eda2b0d2a3", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684018960001/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684018960001, + "acquirer_reference": "", + "verification_code": 1684018960001, + "net_received_amount": 0, + "total_paid_amount": 1500, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "c282698fc8e343aa8285f946", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684018960001", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 8106588, + "total_amount": 8106588, + "id": 1684018960001, + "date_created": { + "type": 6, + "value": 1684018960001 + }, + "date_last_updated": { + "type": 6, + "value": 1684018960001 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018960001 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684018960001, + "description": "Compra de 8.106.588,00 IVIP por 1.500,00 BRL" + }, + "revision": "43ca8d7d3d0b458cbfd009e7", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684106238297/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "08a9f2d71a284d5db29c9990", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684106238297", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1684106238297, + "id": 1684106238297, + "date_created": { + "type": 6, + "value": 1684106238297 + }, + "date_last_updated": { + "type": 6, + "value": 1684239280222 + }, + "date_of_expiration": { + "type": 6, + "value": 1686698238297 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684239280222 + }, + "money_release_date": { + "type": 6, + "value": 1684239280222 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "4f3aa8831ad546c1ad8412b3", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684106238297/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0176.0919.3050.0250-62", + "revision": "501416a754764cb7a3e86f47", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684631103258/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684631103258, + "acquirer_reference": "", + "verification_code": 1684631103258, + "net_received_amount": 0, + "total_paid_amount": 100, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "f566ba04edc643b9844fc650", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684631103258", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 487804, + "total_amount": 487804, + "id": 1684631103258, + "date_created": { + "type": 6, + "value": 1684631103258 + }, + "date_last_updated": { + "type": 6, + "value": 1684631103258 + }, + "date_of_expiration": { + "type": 6, + "value": 1684631103258 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684631103258, + "description": "Compra de 487.804,00 IVIP por 100,00 BRL" + }, + "revision": "2a89352fa6b943b886b78d63", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1685388293760/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "822612c165764fffaf8752bc", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1685388293760", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 4297196, + "total_amount": 4297196, + "history_id": 1685388293760, + "id": 1685388293760, + "date_created": { + "type": 6, + "value": 1685388293760 + }, + "date_last_updated": { + "type": 6, + "value": 1685388293760 + }, + "date_of_expiration": { + "type": 6, + "value": 1685388293760 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "fc40cee3698c4ade905ebda3", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1685388293760/description", + "content": { + "type": 5, + "value": "Saque de 4.297.196,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", + "revision": "be313f0e50d548ab9616eabb", + "revision_nr": 1, + "created": 1702563036335, + "modified": 1702563036335 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686323712726/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "db4998c5f63b4123857b172b", + "revision_nr": 1, + "created": 1702563036336, + "modified": 1702563036336 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686323712726", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 250, + "total_amount": 250, + "history_id": 1686323712726, + "id": 1686323712726, + "date_created": { + "type": 6, + "value": 1686323712726 + }, + "date_last_updated": { + "type": 6, + "value": 1686591519918 + }, + "date_of_expiration": { + "type": 6, + "value": 1688915712726 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686591519918 + }, + "money_release_date": { + "type": 6, + "value": 1686591519918 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "7d2eedda9d144b82a8bc49b2", + "revision_nr": 1, + "created": 1702563036336, + "modified": 1702563036336 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686323712726/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0176.0919.3050.0250-62", + "revision": "7a7334e71b7b4911a3525bbc", + "revision_nr": 1, + "created": 1702563036336, + "modified": 1702563036336 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686591730981/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 3, + "payment_method_reference_id": 1686591730981, + "acquirer_reference": "", + "verification_code": 1686591730981, + "net_received_amount": 0, + "total_paid_amount": 220, + "overpaid_amount": 0, + "installment_amount": 220, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "991041263033422bbef81e58", + "revision_nr": 1, + "created": 1702563036336, + "modified": 1702563036336 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686591730981", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": 1686591730981, + "contract_id": "1684003059388", + "date_created": { + "type": 6, + "value": 1686591730981 + }, + "date_last_updated": { + "type": 6, + "value": 1686591730981 + }, + "date_of_expiration": { + "type": 6, + "value": 1686591730981 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1686591730981 + }, + "revision": "a53799c452c949cd87e2d695", + "revision_nr": 1, + "created": 1702563036336, + "modified": 1702563036336 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686591730981/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", + "revision": "cff0618ece3c479cb8e388f0", + "revision_nr": 1, + "created": 1702563036336, + "modified": 1702563036336 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688314787645/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "24c8d031ac4b489da522d722", + "revision_nr": 1, + "created": 1702563036336, + "modified": 1702563036336 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688314787645", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1688314787645, + "id": 1688314787645, + "date_created": { + "type": 6, + "value": 1688314787645 + }, + "date_last_updated": { + "type": 6, + "value": 1688315014952 + }, + "date_of_expiration": { + "type": 6, + "value": 1690906787645 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1688315014952 + }, + "money_release_date": { + "type": 6, + "value": 1688315014952 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "16e0d32add584890809d6aad", + "revision_nr": 1, + "created": 1702563036336, + "modified": 1702563036336 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688314787645/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0176.0919.3050.0250-62", + "revision": "f92b79fdedf7487f903dc684", + "revision_nr": 1, + "created": 1702563036336, + "modified": 1702563036336 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688315152944/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 3, + "payment_method_reference_id": 1688315152944, + "acquirer_reference": "", + "verification_code": 1688315152944, + "net_received_amount": 0, + "total_paid_amount": 220, + "overpaid_amount": 0, + "installment_amount": 220, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "b6ec43c810c84c65a8160900", + "revision_nr": 1, + "created": 1702563036336, + "modified": 1702563036336 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688315152944", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": 1688315152944, + "contract_id": "1684003059388", + "date_created": { + "type": 6, + "value": 1688315152944 + }, + "date_last_updated": { + "type": 6, + "value": 1688315152944 + }, + "date_of_expiration": { + "type": 6, + "value": 1688315152944 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1688315152944 + }, + "revision": "2b854a67b9e647b9b70c057b", + "revision_nr": 1, + "created": 1702563036336, + "modified": 1702563036336 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688315152944/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", + "revision": "3cd462a2168a4c0d8fa02b48", + "revision_nr": 1, + "created": 1702563036336, + "modified": 1702563036336 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688426195717/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688426195717, + "acquirer_reference": "", + "verification_code": 1688426195717, + "net_received_amount": 0, + "total_paid_amount": 344736, + "overpaid_amount": 0, + "installment_amount": 344736, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "c1032662d8a748fc9e025562", + "revision_nr": 1, + "created": 1702563036336, + "modified": 1702563036336 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688426195717", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 344736, + "total_amount": 344736, + "id": 1688426195717, + "date_created": { + "type": 6, + "value": 1688426195717 + }, + "date_last_updated": { + "type": 6, + "value": 1688426195717 + }, + "date_of_expiration": { + "type": 6, + "value": 1691104595717 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688426195717, + "wasDebited": true + }, + "revision": "4a212394382a4581a984b8a1", + "revision_nr": 1, + "created": 1702563036336, + "modified": 1702563036336 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688426195717/description", + "content": { + "type": 5, + "value": "Investimento de 344.736,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", + "revision": "ce610ee5a46e48f29d838ff4", + "revision_nr": 1, + "created": 1702563036336, + "modified": 1702563036336 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689095226322/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "8a94eaf715d945339d4721bd", + "revision_nr": 1, + "created": 1702563036336, + "modified": 1702563036336 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689095226322", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 430, + "total_amount": 430, + "history_id": 1689095226322, + "id": 1689095226322, + "date_created": { + "type": 6, + "value": 1689095226322 + }, + "date_last_updated": { + "type": 6, + "value": 1689099370658 + }, + "date_of_expiration": { + "type": 6, + "value": 1691687226322 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689099370658 + }, + "money_release_date": { + "type": 6, + "value": 1689099370658 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "17dd411edf7046faa1909a62", + "revision_nr": 1, + "created": 1702563036336, + "modified": 1702563036336 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689095226322/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 430,00 para a carteira iVip 0176.0919.3050.0250-62", + "revision": "4ec76f22ea8a467d8865e4be", + "revision_nr": 1, + "created": 1702563036336, + "modified": 1702563036336 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349679189/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689349679189, + "acquirer_reference": "", + "verification_code": 1689349679189, + "net_received_amount": 0, + "total_paid_amount": 440, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "ade97a67b9164b4b94716d1a", + "revision_nr": 1, + "created": 1702563036336, + "modified": 1702563036336 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349679189", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 284782, + "total_amount": 284782, + "id": 1689349679189, + "date_created": { + "type": 6, + "value": 1689349679189 + }, + "date_last_updated": { + "type": 6, + "value": 1689349679189 + }, + "date_of_expiration": { + "type": 6, + "value": 1689349679189 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689349679189, + "description": "Compra de 284.782,00 IVIP por 440,00 BRL" + }, + "revision": "5ce67e4103d84aac8088b876", + "revision_nr": 1, + "created": 1702563036336, + "modified": 1702563036336 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349971065/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "0e2190978b864a8784b11d3d", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349971065", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 284782, + "total_amount": 284782, + "history_id": 1689349971065, + "id": 1689349971065, + "date_created": { + "type": 6, + "value": 1689349971065 + }, + "date_last_updated": { + "type": 6, + "value": 1689350098919 + }, + "date_of_expiration": { + "type": 6, + "value": 1689349971065 + }, + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1689350098919 + }, + "money_release_date": { + "type": 6, + "value": 1689350098919 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "3ef5c56764574f56b791c58a", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349971065/description", + "content": { + "type": 5, + "value": "Saque de 284.782,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", + "revision": "1e8273750a414b0baab86c0f", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689794977578/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689794977578, + "acquirer_reference": "", + "verification_code": 1689794977578, + "net_received_amount": 0, + "total_paid_amount": 500000, + "overpaid_amount": 0, + "installment_amount": 500000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "a8d2159bf81e4aeeb56da3bf", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689794977578", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 500000, + "total_amount": 500000, + "id": 1689794977578, + "date_created": { + "type": 6, + "value": 1689794977578 + }, + "date_last_updated": { + "type": 6, + "value": 1689794977578 + }, + "date_of_expiration": { + "type": 6, + "value": 1752953377578 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689794977578 + }, + "revision": "11c749c226fc4bb596e90768", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689794977578/description", + "content": { + "type": 5, + "value": "Investimento de 500.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/19/2025", + "revision": "985318ba29594e1ab93abf4f", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689796488476/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "c7e2679d4d264843b6fad487", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689796488476", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 345419, + "total_amount": 345419, + "history_id": 1689796488476, + "id": 1689796488476, + "date_created": { + "type": 6, + "value": 1689796488476 + }, + "date_last_updated": { + "type": 6, + "value": 1689796488476 + }, + "date_of_expiration": { + "type": 6, + "value": 1689796488476 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "e42ea3a4ee7b4c279e04cd19", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689796488476/description", + "content": { + "type": 5, + "value": "Saque de 345.419,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", + "revision": "a7a29ca016bb4e83a42e6ac4", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690130150231/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690130150231, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1908099, + "installment_amount": 1908099, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "7530ba4475b146b99f905e6a", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690130150231/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1690130150231", + "revision": "d8927890bd6d4979b3e6ef7a", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690130150231", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1908099, + "total_amount": 1908099, + "id": 1690130150231, + "history_id": 1690130150231, + "date_created": { + "type": 6, + "value": 1690130150231 + }, + "date_last_updated": { + "type": 6, + "value": 1690130150231 + }, + "date_of_expiration": { + "type": 6, + "value": 1690130150231 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment" + }, + "revision": "e3552f4b1bd340fa9c52dacf", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690130150231/description", + "content": { + "type": 5, + "value": "Saque de 1.908.099,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", + "revision": "aadc689151af4c1fbf3effb5", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690225429559/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690225429559, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1829159, + "installment_amount": 1829159, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "00fde02674b648bcb4dcdaff", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690225429559/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1690225429559", + "revision": "cd6e7d80ca1b4372a89abd60", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690225429559", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1829159, + "total_amount": 1829159, + "id": 1690225429559, + "history_id": 1690225429559, + "date_created": { + "type": 6, + "value": 1690225429559 + }, + "date_last_updated": { + "type": 6, + "value": 1690225429559 + }, + "date_of_expiration": { + "type": 6, + "value": 1690225429559 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment" + }, + "revision": "0a88d7b23c774603af50aedb", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690225429559/description", + "content": { + "type": 5, + "value": "Saque de 1.829.159,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", + "revision": "155f399f50004b0e940c77d2", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691104619419/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691104619419, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 351630.72000000003, + "installment_amount": 351630.72000000003, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "0cfa5061beb540389fad0645", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691104619419/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1691104619419", + "revision": "67b4b90fc6374103b3435b74", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691104619419", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 351630.72000000003, + "total_amount": 351630.72000000003, + "id": 1691104619419, + "history_id": 1691104619419, + "date_created": { + "type": 6, + "value": 1691104619419 + }, + "date_last_updated": { + "type": 6, + "value": 1691104619419 + }, + "date_of_expiration": { + "type": 6, + "value": 1691104619419 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "fd7b1c39d7ad4f20acd2a254", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691104619419/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 344.736,00 IVIP com um rendimento de +6.894,72 IVIP (2,00%)", + "revision": "0838d1cb5c94491688524471", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691246155706/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691246155706, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 4123251, + "installment_amount": 4123251, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "2520e9dc7ff24680a3f003ac", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691246155706/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1691246155706", + "revision": "7018c4bd0163481f8938d5ea", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691246155706", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 4123251, + "total_amount": 4123251, + "id": 1691246155706, + "history_id": 1691246155706, + "date_created": { + "type": 6, + "value": 1691246155706 + }, + "date_last_updated": { + "type": 6, + "value": 1691246155706 + }, + "date_of_expiration": { + "type": 6, + "value": 1693924555705 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "0a9ae5717d284f30bef61891", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691246155706/description", + "content": { + "type": 5, + "value": "Investimento de 4.123.251,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023", + "revision": "7fa4290db5d54b0fb6b344f8", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694714218629 + } + }, + "revision": "c0833d4404b9484fb2dd898e", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692122218629, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 220, + "installment_amount": 220, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "e4ed4dc63adf4e3897eebd77", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1692122218629", + "revision": "e7b4b7d15c134220a346e3f7", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 220, + "total_amount": 220, + "id": 1692122218629, + "history_id": 1692122218629, + "date_created": { + "type": 6, + "value": 1692122218629 + }, + "date_last_updated": { + "type": 6, + "value": 1692123209335 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1692123209335 + }, + "money_release_date": { + "type": 6, + "value": 1692123209335 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "4e4055577dba4efcb67af220", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629/description", + "content": { + "type": 5, + "value": "Deposito de um valor 220,00 para a carteira iVip 0176.0919.3050.0250-62", + "revision": "04880d307c394d599e25eaed", + "revision_nr": 1, + "created": 1702563036337, + "modified": 1702563036337 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692210661601/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 3, + "installments_payable": 2, + "payment_method_reference_id": 1692210661601, + "acquirer_reference": "", + "verification_code": 1692210661601, + "net_received_amount": 0, + "total_paid_amount": 220, + "overpaid_amount": 0, + "installment_amount": 220, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "53027f6c14af4f088b52198f", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692210661601", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": 1692210661601, + "contract_id": "1684003059388", + "date_created": { + "type": 6, + "value": 1692210661601 + }, + "date_last_updated": { + "type": 6, + "value": 1692210661601 + }, + "date_of_expiration": { + "type": 6, + "value": 1692210661601 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1692210661601 + }, + "revision": "aa82239472ca4b2fbde9ba47", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692210661601/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", + "revision": "1b547d55f46a4c658d599abd", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1693924607794/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693924607794, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 4123251, + "installment_amount": 4123251, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "c72715f2ab4e4e9fae33eb60", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1693924607794/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1693924607794", + "revision": "e50c2d21912d4e3195db3f1e", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1693924607794", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 4205716.02, + "total_amount": 4205716.02, + "id": "1693924607794", + "history_id": "1693924607794", + "date_created": { + "type": 6, + "value": 1693924607794 + }, + "date_last_updated": { + "type": 6, + "value": 1693924607794 + }, + "date_of_expiration": { + "type": 6, + "value": 1693924607794 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "fe17c79bdbb145a18710f987", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1693924607794/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 4.123.251,00 IVIP com um rendimento de +82.465,02 IVIP (2,00%) - Y12XDT27", + "revision": "372633f26ab148e098b5fb4d", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 107596.65 + }, + "revision": "a90acacb49bc4022a0e85991", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694019139358, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 3586555, + "installment_amount": 3586555, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "32aa99edd9cd422c8ed2b4fe", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694019139358", + "revision": "08bbcc938ca74cbfa86b4007", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "775a8af959c649e38e3cb2fd", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 3586555, + "total_amount": 3478958.35, + "id": "1694019139358", + "history_id": "1694019139358", + "date_created": { + "type": 6, + "value": 1694019139358 + }, + "date_last_updated": { + "type": 6, + "value": 1694471002474 + }, + "date_of_expiration": { + "type": 6, + "value": 1694019139358 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": { + "type": 6, + "value": 1694471002474 + }, + "money_release_date": { + "type": 6, + "value": 1694471002474 + }, + "money_release_status": "drawee", + "wasDebited": true + }, + "revision": "1083d3505e5d4d03a524020b", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/description", + "content": { + "type": 5, + "value": "Saque de 3.478.958,35 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", + "revision": "1bad832c01524d229b1e84b9", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694530925477/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694530925477, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 13248, + "installment_amount": 13248, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "78bd0a03497448fb87116fe4", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694530925477/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694530925477", + "revision": "eebf404fb7894a329b4ee110", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694530925477", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 13248, + "total_amount": 13248, + "id": "1694530925477", + "history_id": "1694530925477", + "date_created": { + "type": 6, + "value": 1694530925477 + }, + "date_last_updated": { + "type": 6, + "value": 1696462319830 + }, + "date_of_expiration": { + "type": 6, + "value": 1697122925475 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_staked_amount", + "money_release_date": { + "type": 6, + "value": 1696462319830 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "6a5f6c8e745c42c5a18d2da8", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694530925477/description", + "content": { + "type": 5, + "value": "Investimento de 13.248,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 12/10/2023 - Y12XDT27", + "revision": "dc79f24b26fb494fbbecd1f8", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697151249010 + } + }, + "revision": "e547defd96ee41c893931054", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694559249011, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 220, + "installment_amount": 220, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "4c8cf6ddc6fe4ca8a8103413", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694559249011", + "revision": "224392cbfeda45738b5a5017", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 220, + "total_amount": 220, + "id": "1694559249011", + "history_id": "1694559249011", + "date_created": { + "type": 6, + "value": 1694559249011 + }, + "date_last_updated": { + "type": 6, + "value": 1694560255083 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1694560255083 + }, + "money_release_date": { + "type": 6, + "value": 1694560255083 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "a9ced7bf806345d8a6e0fc98", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011/description", + "content": { + "type": 5, + "value": "Deposito de um valor 220,00 BRL para a carteira iVip 0176.0919.3050.0250-62", + "revision": "f9fa0cf759174c73a3c5faf8", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694560328887/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694560328887, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 220, + "installment_amount": 220, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 4, + "installments_payable": 1 + }, + "revision": "12a5de3117014f31832e12ec", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694560328887/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694560328887", + "revision": "540498f60141483fb0adb677", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694560328887", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": "1694560328887", + "history_id": "1694560328887", + "date_created": { + "type": 6, + "value": 1694560328887 + }, + "date_last_updated": { + "type": 6, + "value": 1694560328887 + }, + "date_of_expiration": { + "type": 6, + "value": 1694560328887 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "eaccff4735d140879f9a0935", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694560328887/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", + "revision": "82493ed4ae0e484892342187", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1695164776163/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695164776163, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 4583948, + "installment_amount": 4583948, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "97eafed0c1e34b798fc3d922", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1695164776163/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1695164776163", + "revision": "c9993a13b48b42a1a639fdcd", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1695164776163", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 4583948, + "total_amount": 4583948, + "id": "1695164776163", + "history_id": "1695164776163", + "date_created": { + "type": 6, + "value": 1695164776163 + }, + "date_last_updated": { + "type": 6, + "value": 1695678285837 + }, + "date_of_expiration": { + "type": 6, + "value": 1710889576135 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_staked_amount", + "money_release_date": { + "type": 6, + "value": 1695678285837 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "8c95092c6cb0450182cd89c5", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1695164776163/description", + "content": { + "type": 5, + "value": "Investimento de 4.583.948,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H", + "revision": "944d5f37331f49a69bb12345", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1696551378554/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696551378554, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 4597196, + "installment_amount": 4597196, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "aa83d8db2b0c424c85868d3d", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1696551378554/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1696551378554", + "revision": "a9945a684b03496abd9f5f62", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1696551378554", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "017609193050025062", + "payment_method": "staking", + "original_amount": 4597196, + "total_amount": 4597196, + "id": "1696551378554", + "history_id": "1696551378554", + "date_created": { + "type": 6, + "value": 1696551378554 + }, + "date_last_updated": { + "type": 6, + "value": 1696551378554 + }, + "date_of_expiration": { + "type": 6, + "value": 1699229778481 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "24c4b2f2e9f34b48bfa3cab3", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1696551378554/description", + "content": { + "type": 5, + "value": "Investimento de 4.597.196,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27", + "revision": "de98274ad8f143be8e4327ac", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699792000740 + } + }, + "revision": "a4948b5ff36940fda78b0a6f", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1697200000740", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 220, + "installment_amount": 220, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "305c9ff8abf74497b3a513c6", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1697200000740", + "revision": "e8ade4cca13c4fae94233d84", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "017609193050025062", + "payment_method": "whatsapp", + "original_amount": 220, + "total_amount": 220, + "id": "1697200000740", + "history_id": "1697200000740", + "date_created": { + "type": 6, + "value": 1697200000740 + }, + "date_last_updated": { + "type": 6, + "value": 1697203184767 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1697203184767 + }, + "money_release_date": { + "type": 6, + "value": 1697203184767 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "3a69155e9fcc49e98b5d8026", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740/description", + "content": { + "type": 5, + "value": "Deposito de um valor 220,00 BRL para a carteira iVip 0176.0919.3050.0250-62", + "revision": "fdea1b51622b42079dbc69ec", + "revision_nr": 1, + "created": 1702563036338, + "modified": 1702563036338 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697203305717/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1697203305717", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 220, + "installment_amount": 220, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 5, + "installments_payable": 0 + }, + "revision": "643f091bc9f945d3b93da206", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697203305717/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1697203305717", + "revision": "35c1168d1fec4a9781ba506d", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697203305717", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "017609193050025062", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": "1697203305717", + "history_id": "1697203305717", + "date_created": { + "type": 6, + "value": 1697203305717 + }, + "date_last_updated": { + "type": 6, + "value": 1697203305717 + }, + "date_of_expiration": { + "type": 6, + "value": 1697203305717 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "e304a0636dca4c2690ec79b8", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697203305717/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", + "revision": "efdb667f95494565a63ae083", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history", + "content": { + "type": 1, + "value": {}, + "revision": "d93258efe3334da9915e8073", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "ead501447ad748dba7e2e7bf", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388", + "content": { + "type": 1, + "value": { + "id": 1684003059388, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": { + "type": 6, + "value": 1684003059388 + }, + "history_id": 1684003059388, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "ddbaab7767f5440fbf48dcb4", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "fbc3d1a9579e446ea48ba7fa", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388/costs", + "content": { + "type": 2, + "value": {}, + "revision": "396adc73ab23402798add45d", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "0861884a99a247489aa49d96", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "a72c5b20779442b9962f3c3f", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388", + "content": { + "type": 1, + "value": { + "id": 1684003059388, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": { + "type": 6, + "value": 1684003059388 + }, + "history_id": 1684003059388, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "0ca61fa40bc4448db9f5c847", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "e31be98ed913416583066e9d", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388/costs", + "content": { + "type": 2, + "value": {}, + "revision": "6fd4c59e569a4de28fde2280", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "33b410dc9df248b9a9a5be94", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "1914c048b1344a648bb5dd87", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388", + "content": { + "type": 1, + "value": { + "id": 1684003059388, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": { + "type": 6, + "value": 1684003059388 + }, + "history_id": 1684003059388, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "ea6f091cd8694e92b148102c", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "7b78fc66bc57441182914646", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388/costs", + "content": { + "type": 2, + "value": {}, + "revision": "05423d47ae55434db3f00c8f", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308", + "content": { + "type": 1, + "value": {}, + "revision": "29e7a3aa3742448aaf975911", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "db9dcd2b46e642c2b8fc8fb2", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388", + "content": { + "type": 1, + "value": { + "id": 1684003059388, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": { + "type": 6, + "value": 1684003059388 + }, + "history_id": 1684003059388, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1694560328902 + } + }, + "revision": "a1b9ad26694c457da3c6e271", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "a8ed714ef7324cae9e56133f", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388/costs", + "content": { + "type": 2, + "value": {}, + "revision": "da85af585cb5499c96bd79b9", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309", + "content": { + "type": 1, + "value": {}, + "revision": "e290ca89582b44d7b56e12e9", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "99b1d9122de04465a18df0b2", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388", + "content": { + "type": 1, + "value": { + "id": 1684003059388, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": { + "type": 6, + "value": 1684003059388 + }, + "history_id": 1684003059388, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1697203305729 + } + }, + "revision": "09d9d0684fa64e05a9dc4de8", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "70e8df28df084791bda3b69b", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388/costs", + "content": { + "type": 2, + "value": {}, + "revision": "4190b99a3f5043ecbdd1a64d", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310", + "content": { + "type": 1, + "value": {}, + "revision": "7c0199b51b034beb81090ad9", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "d16051d469b34135bb876bcf", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 1000, + "limitUsed": 400, + "analysisRequested": { + "type": 6, + "value": 1684000813915 + }, + "lastReview": { + "type": 6, + "value": 1684000989928 + } + }, + "revision": "87b587081864413e83dae4e1", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062", + "content": { + "type": 1, + "value": { + "dataModificacao": 1682097646342, + "dateValidity": 1682097646342, + "totalValue": 2544.535, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } + }, + "revision": "f1ef8db6a8a845a7bbb7d99b", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1684943727392/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "eba6f8fa65a74aaaa5f62d67", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1684943727392", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 15000, + "total_amount": 15000, + "history_id": 1684943727392, + "id": 1684943727392, + "date_created": { + "type": 6, + "value": 1684943727392 + }, + "date_last_updated": { + "type": 6, + "value": 1684943753725 + }, + "date_of_expiration": { + "type": 6, + "value": 1687535727392 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684943753725 + }, + "money_release_date": { + "type": 6, + "value": 1684943753725 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "ac1308dec4834b84ad01ba44", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1684943727392/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 15.000,00 para a carteira iVip 0176.2260.5984.9780-02", + "revision": "466198ff4aa44ef0a46112fb", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1685471938618/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685471938618, + "acquirer_reference": "", + "verification_code": 1685471938618, + "net_received_amount": 0, + "total_paid_amount": 15000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "cfdfbc0774e04424b420f542", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1685471938618", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 200000000, + "total_amount": 200000000, + "id": 1685471938618, + "date_created": { + "type": 6, + "value": 1685471938618 + }, + "date_last_updated": { + "type": 6, + "value": 1685471938618 + }, + "date_of_expiration": { + "type": 6, + "value": 1685471938618 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685471938618, + "description": "Compra de 200.000.000,00 IVIP por 15.000,00 BRL" + }, + "revision": "46f89ee44fcc4837a2c1b556", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history", + "content": { + "type": 1, + "value": {}, + "revision": "6e51ca04f6314945822963eb", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017622605984978002/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "395c505ee70144899fd61ef8", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017622605984978002/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "84e45da3a54c4b019d9495bd", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017622605984978002/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "200000000.00000000", + "symbol": "IVIP", + "value": 20332.55 + }, + "revision": "3d5b5d02add04fb9bba5c092", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017622605984978002/balances", + "content": { + "type": 1, + "value": {}, + "revision": "74d235e4543444e2b506e454", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017622605984978002", + "content": { + "type": 1, + "value": { + "dataModificacao": 1683153627758, + "dateValidity": 1683153627758, + "totalValue": 13477.18, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } + }, + "revision": "05cb6085993a44e0a32bb6bc", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/018061972197789932/balances", + "content": { + "type": 1, + "value": {}, + "revision": "ac7ba594f41842c6b048e53e", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/018061972197789932/history", + "content": { + "type": 1, + "value": {}, + "revision": "af31c3daea4447e7b0b93bab", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/018061972197789932", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678058024401, + "dateValidity": 1678162416437, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "c4be94af93fa48569157b83d", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "0.60000000", + "symbol": "IVIP", + "value": 0.000081 + }, + "revision": "3babd000a7cf406ab48a005f", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/balances", + "content": { + "type": 1, + "value": {}, + "revision": "41befd65c911435da90ae7f6", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138020034/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "eed5dce18f2e4474be92796e", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138020034", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1678138020034, + "id": 1678138020034, + "date_created": { + "type": 6, + "value": 1678138020034 + }, + "date_last_updated": { + "type": 6, + "value": 1678138313569 + }, + "date_of_expiration": { + "type": 6, + "value": 1680730020034 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1678138313569 + }, + "money_release_status": "rejected" + }, + "revision": "033ca0f66e7f48e09e2724c3", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138020034/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0192.1172.1108.0322-64", + "revision": "2d6fd6d13a2d40c5ab676a04", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1677965965594/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "e8595f436abb460aaf857c90", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1677965965594", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "history_id": 1677965965594, + "id": 1677965965594, + "date_created": { + "type": 6, + "value": 1677965965594 + }, + "date_last_updated": { + "type": 6, + "value": 1677974846209 + }, + "date_of_expiration": { + "type": 6, + "value": 1680557965594 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677974846209 + }, + "money_release_date": { + "type": 6, + "value": 1677974846209 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "ef40b7576bff407a9d9c4eee", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1677965965594/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0192.1172.1108.0322-64", + "revision": "92da909d543e4ae19168c61a", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138148348/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "cc0624114d1549719d274a42", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138148348", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1678138148348, + "id": 1678138148348, + "date_created": { + "type": 6, + "value": 1678138148348 + }, + "date_last_updated": { + "type": 6, + "value": 1678201306976 + }, + "date_of_expiration": { + "type": 6, + "value": 1680730148348 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678201306976 + }, + "money_release_date": { + "type": 6, + "value": 1678201306976 + }, + "money_release_status": "approved" + }, + "revision": "52bae549572a4ebfafe8f2a6", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138148348/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0192.1172.1108.0322-64", + "revision": "e18ac4da28544d32bcecdf9e", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678162119494/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678162119494, + "acquirer_reference": "", + "verification_code": 1678162119494, + "net_received_amount": 0, + "total_paid_amount": 2000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "b598f87d9eba42b3ba80421a", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678162119494", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 14292068, + "total_amount": 14292068, + "id": 1678162119494, + "date_created": { + "type": 6, + "value": 1678162119494 + }, + "date_last_updated": { + "type": 6, + "value": 1678162119494 + }, + "date_of_expiration": { + "type": 6, + "value": 1678162119494 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678162119494, + "description": "Compra de 14292068 IVIP por 2000 BRL" + }, + "revision": "685b4b6030eb4f0983968849", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678201718893/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678201718893, + "acquirer_reference": "", + "verification_code": 1678201718893, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "98ff3bb249e54dacba73f128", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678201718893", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 7083024, + "total_amount": 7083024, + "id": 1678201718893, + "date_created": { + "type": 6, + "value": 1678201718893 + }, + "date_last_updated": { + "type": 6, + "value": 1678201718893 + }, + "date_of_expiration": { + "type": 6, + "value": 1678201718893 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678201718893, + "description": "Compra de 7083024 IVIP por 1000 BRL" + }, + "revision": "f37a2ff9a1ea4acb94912eb9", + "revision_nr": 1, + "created": 1702563036339, + "modified": 1702563036339 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306180932/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "efd11a372c9447d485c088ff", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306180932", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 15000000, + "total_amount": 15000000, + "history_id": 1687306180932, + "id": 1687306180932, + "date_created": { + "type": 6, + "value": 1687306180932 + }, + "date_last_updated": { + "type": 6, + "value": 1687439686349 + }, + "date_of_expiration": { + "type": 6, + "value": 1687306180932 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "IVIP", + "money_release_date": { + "type": 6, + "value": 1687439686349 + }, + "money_release_status": "rejected" + }, + "revision": "e83a9ace023a417385fa7346", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306180932/description", + "content": { + "type": 5, + "value": "Saque de 15.000.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732", + "revision": "c6d9b6a4121347b79d7a63a6", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306331776/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "ed9db06ca56e42d2a39028b8", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306331776", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 15000000, + "total_amount": 15000000, + "history_id": 1687306331776, + "id": 1687306331776, + "date_created": { + "type": 6, + "value": 1687306331776 + }, + "date_last_updated": { + "type": 6, + "value": 1687439707717 + }, + "date_of_expiration": { + "type": 6, + "value": 1687306331776 + }, + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1687439707717 + }, + "money_release_date": { + "type": 6, + "value": 1687439707717 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "69e2b56026f34798a4a7cfac", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306331776/description", + "content": { + "type": 5, + "value": "Saque de 15.000.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732", + "revision": "4ef938d9e7a44397b180b2c2", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687525932247/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687525932247, + "acquirer_reference": "", + "verification_code": 1687525932247, + "net_received_amount": 0, + "total_paid_amount": 6375092, + "overpaid_amount": 0, + "installment_amount": 6375092, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "cb7b6b7a7e5e411796109131", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687525932247", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 6375092, + "total_amount": 6375092, + "id": 1687525932247, + "date_created": { + "type": 6, + "value": 1687525932247 + }, + "date_last_updated": { + "type": 6, + "value": 1687525932247 + }, + "date_of_expiration": { + "type": 6, + "value": 1750684332247 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687525932247, + "wasDebited": true + }, + "revision": "f9e20d710aff4321940a002b", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687525932247/description", + "content": { + "type": 5, + "value": "Investimento de 6.375.092,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025", + "revision": "cbdf359c525844b9ad3b2883", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688054453004/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688054453004, + "acquirer_reference": "", + "verification_code": 1688054453004, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "e7302ab04cd041b58e5d6687", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688054453004", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1688054453004, + "date_created": { + "type": 6, + "value": 1688054453004 + }, + "date_last_updated": { + "type": 6, + "value": 1688054453004 + }, + "date_of_expiration": { + "type": 6, + "value": 1719676853004 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688054453004, + "wasDebited": true + }, + "revision": "eff00753e871453fa8ee4cae", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688054453004/description", + "content": { + "type": 5, + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/29/2024", + "revision": "e6767590beca45e09baf29da", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688055217395/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "5e26212669f4409c9e21c45f", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688055217395", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1375000, + "total_amount": 1375000, + "history_id": 1688055217395, + "id": 1688055217395, + "date_created": { + "type": 6, + "value": 1688055217395 + }, + "date_last_updated": { + "type": 6, + "value": 1688055217395 + }, + "date_of_expiration": { + "type": 6, + "value": 1688055217395 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "62c7c1631e984cfcab9750a5", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688055217395/description", + "content": { + "type": 5, + "value": "Saque de 1.375.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732", + "revision": "1f3251bca1bf47d2bfc10020", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688400574946/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688400574946, + "acquirer_reference": "", + "verification_code": 1688400574946, + "net_received_amount": 0, + "total_paid_amount": 5000000, + "overpaid_amount": 0, + "installment_amount": 5000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "b23204575bdf4990a03436f5", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688400574946", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 5000000, + "total_amount": 5000000, + "id": 1688400574946, + "date_created": { + "type": 6, + "value": 1688400574946 + }, + "date_last_updated": { + "type": 6, + "value": 1688400574946 + }, + "date_of_expiration": { + "type": 6, + "value": 1691078974946 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688400574946 + }, + "revision": "ab890eb203fd4a2389f5414d", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688400574946/description", + "content": { + "type": 5, + "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", + "revision": "9cc102a8f1994455ad52192d", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079119787/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1691079119787, + "acquirer_reference": "", + "verification_code": 1691079119787, + "net_received_amount": 0, + "total_paid_amount": 5000000, + "overpaid_amount": 0, + "installment_amount": 5000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "c0fa43a9284647e2aaa8a698", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079119787", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 5100000, + "total_amount": 5100000, + "id": 1691079119787, + "date_created": { + "type": 6, + "value": 1691079119787 + }, + "date_last_updated": { + "type": 6, + "value": 1691079119787 + }, + "date_of_expiration": { + "type": 6, + "value": 1691079119787 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1691079119787, + "wasDebited": true + }, + "revision": "85dfec070527448d83df6253", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079119787/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 5.000.000,00 IVIP com um rendimento de +100.000,00 IVIP (2,00%)", + "revision": "fb6086c1d0864f638bc23e6f", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079120545/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1691079120545, + "acquirer_reference": "", + "verification_code": 1691079120545, + "net_received_amount": 0, + "total_paid_amount": 5000000, + "overpaid_amount": 0, + "installment_amount": 5000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "db4be6f0cf3443a4844e37ca", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079120545", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 5100000, + "total_amount": 5100000, + "id": 1691079120545, + "date_created": { + "type": 6, + "value": 1691079120545 + }, + "date_last_updated": { + "type": 6, + "value": 1691079120545 + }, + "date_of_expiration": { + "type": 6, + "value": 1691079120545 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1691079120545, + "wasDebited": true + }, + "revision": "7ba3515a040b4436b7dd6157", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079120545/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 5.000.000,00 IVIP com um rendimento de +100.000,00 IVIP (2,00%)", + "revision": "7774ac385b9c4f8da4e85aab", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691085199409/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691085199409, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5199000, + "installment_amount": 5199000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "29e2c17b473d4a21abb6dddd", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691085199409/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1691085199409", + "revision": "c9b8da282d0642e983f9e3d5", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691085199409", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 5199000, + "total_amount": 5199000, + "id": 1691085199409, + "history_id": 1691085199409, + "date_created": { + "type": 6, + "value": 1691085199409 + }, + "date_last_updated": { + "type": 6, + "value": 1691085199409 + }, + "date_of_expiration": { + "type": 6, + "value": 1693763599408 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "682328a3e7914d08b74ca175", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691085199409/description", + "content": { + "type": 5, + "value": "Investimento de 5.199.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", + "revision": "3ed0513c646749789407e3cc", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693763776046/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693763776046, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5199000, + "installment_amount": 5199000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "94716651275d48028da9f398", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693763776046/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1693763776046", + "revision": "2866483862ff46988848cca1", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693763776046", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 5302980, + "total_amount": 5302980, + "id": "1693763776046", + "history_id": "1693763776046", + "date_created": { + "type": 6, + "value": 1693763776046 + }, + "date_last_updated": { + "type": 6, + "value": 1693763776046 + }, + "date_of_expiration": { + "type": 6, + "value": 1693763776046 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "c25c1b4991f44568b5123b9c", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693763776046/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 5.199.000,00 IVIP com um rendimento de +103.980,00 IVIP (2,00%) - Y12XDT27", + "revision": "06dbb52fae374f2c97be3f5c", + "revision_nr": 1, + "created": 1702563036340, + "modified": 1702563036340 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693924633176/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693924633176, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5302980, + "installment_amount": 5302980, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "1890e9b318ed47ec836644dd", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693924633176/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1693924633176", + "revision": "ad1b6c4f4e27439d81360f25", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693924633176", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 5302980, + "total_amount": 5302980, + "id": "1693924633176", + "history_id": "1693924633176", + "date_created": { + "type": 6, + "value": 1693924633176 + }, + "date_last_updated": { + "type": 6, + "value": 1693924633176 + }, + "date_of_expiration": { + "type": 6, + "value": 1696516633174 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "7fd9b8f94cdc4ec0ae3cd174", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693924633176/description", + "content": { + "type": 5, + "value": "Investimento de 5.302.980,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", + "revision": "f434ec10ac744d8aa38565b5", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696516664226/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696516664226, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5302980, + "installment_amount": 5302980, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "8574ef2935c54b399a7bff7f", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696516664226/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1696516664226", + "revision": "b9b068fa331c4695a513659a", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696516664226", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "019211721108032264", + "payment_method": "staking", + "original_amount": 5409039.6, + "total_amount": 5409039.6, + "id": "1696516664226", + "history_id": "1696516664226", + "date_created": { + "type": 6, + "value": 1696516664226 + }, + "date_last_updated": { + "type": 6, + "value": 1696516664226 + }, + "date_of_expiration": { + "type": 6, + "value": 1696516664226 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "fadf6f005e2542a7bc18ccbe", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696516664226/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 5.302.980,00 IVIP com um rendimento de +106.059,6 IVIP (2,00%) - Y12XDT27", + "revision": "5d37799146014f3184a13414", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696621887766/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696621887766", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5409039, + "installment_amount": 5409039, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "aab1eb61c81a40baa84a9b1a", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696621887766/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1696621887766", + "revision": "072c7db86036459cbd7f3027", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696621887766", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "019211721108032264", + "payment_method": "staking", + "original_amount": 5409039, + "total_amount": 5409039, + "id": "1696621887766", + "history_id": "1696621887766", + "date_created": { + "type": 6, + "value": 1696621887766 + }, + "date_last_updated": { + "type": 6, + "value": 1696621887766 + }, + "date_of_expiration": { + "type": 6, + "value": 1699300287733 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "93c320f65c9d4a029e1d7c05", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696621887766/description", + "content": { + "type": 5, + "value": "Investimento de 5.409.039,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", + "revision": "8464c1bce4da4a9fabfebb7d", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history", + "content": { + "type": 1, + "value": {}, + "revision": "3eab8e1609b44b01b108e6cf", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "450a8f4a14f84b0783a95749", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "analysisRequested": { + "type": 6, + "value": 1689780416218 + } + }, + "revision": "183c369f44de4193be4712ed", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677444787438, + "dateValidity": 1678664927087, + "totalValue": 1001.4056590358118, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } + }, + "revision": "c6d6456dccce49e2bd44dce5", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "80.00000000", + "symbol": "BRL", + "value": 16.58 + }, + "revision": "1efe1a41b64f42f8b05a9d44", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/balances", + "content": { + "type": 1, + "value": {}, + "revision": "e9fb8f95c0f042999c6ebd97", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1679011728068/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "a496edfa9cde4f6bb66c4b62", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1679011728068", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1679011728068, + "id": 1679011728068, + "date_created": { + "type": 6, + "value": 1679011728068 + }, + "date_last_updated": { + "type": 6, + "value": 1679057279547 + }, + "date_of_expiration": { + "type": 6, + "value": 1681603728068 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679057279547 + }, + "money_release_date": { + "type": 6, + "value": 1679057279547 + }, + "money_release_status": "approved" + }, + "revision": "4a8a101cf2cf47d5a5c227e4", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1679011728068/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0199.6555.6064.9756-30", + "revision": "efad7d7c25fd442491e613e7", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1689901373588/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1689901373588, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "e0772f7c9bc94112afe7d60e", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1689901373588/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/019965556064975630/history/1689901373588", + "revision": "bc861e1719904810bc034bab", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1689901373588", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 20, + "total_amount": 20, + "id": 1689901373588, + "history_id": 1689901373588, + "date_created": { + "type": 6, + "value": 1689901373588 + }, + "date_last_updated": { + "type": 6, + "value": 1689901373588 + }, + "date_of_expiration": { + "type": 6, + "value": 1716253373584 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited" + }, + "revision": "6f556bdacb1a48dc9f356a8a", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1689901373588/description", + "content": { + "type": 5, + "value": "Investimento de 20,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/20/2024", + "revision": "e317092a9d784c4db6ed8788", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history", + "content": { + "type": 1, + "value": {}, + "revision": "3e16d6e9246a4f368e5c59e9", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "9d0b1cc466914137975d5c8b", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "a39968de667e4d8b9cc9b2c9", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019965556064975630", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679011642708, + "dateValidity": 1679026042762, + "totalValue": 0, + "currencyType": "USD", + "balancesModificacao": 1689822000000 + }, + "revision": "2a53f5f4188248839b9f306b", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, + "revision": "89bf1a5de6484d5b99374899", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "72120104.00000000", + "symbol": "IVIP", + "value": 10477.68 + }, + "revision": "e49eeb87a1c4406488b675c0", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/balances", + "content": { + "type": 1, + "value": {}, + "revision": "5c3c14efa0fd457caa372dc7", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677725964136/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "702863130e614f6ca21c4abb", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677725964136", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 10000, + "total_amount": 10000, + "history_id": 1677725964136, + "id": 1677725964136, + "date_created": { + "type": 6, + "value": 1677725964136 + }, + "date_last_updated": { + "type": 6, + "value": 1677755006417 + }, + "date_of_expiration": { + "type": 6, + "value": 1680317964136 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677755006417 + }, + "money_release_date": { + "type": 6, + "value": 1677755006417 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "2972dc0cd92f42abb868f2f7", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677725964136/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0219.7710.1011.6756-04", + "revision": "73b6631d95d34e29a7560f7f", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678147737654/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678147737654, + "acquirer_reference": "", + "verification_code": 1678147737654, + "net_received_amount": 0, + "total_paid_amount": 10000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "6ceca8979beb4912a1c17cce", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678147737654", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 71386212, + "total_amount": 71386212, + "id": 1678147737654, + "date_created": { + "type": 6, + "value": 1678147737654 + }, + "date_last_updated": { + "type": 6, + "value": 1678147737654 + }, + "date_of_expiration": { + "type": 6, + "value": 1678147737654 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678147737654, + "description": "Compra de 71386212 IVIP por 10000 BRL" + }, + "revision": "75f8bf17feb14d4a8615276a", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678160584706/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678160584706, + "acquirer_reference": "", + "verification_code": 1678160584706, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "b3dc09b96a084dbea4fc44a9", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678160584706", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1000, + "total_amount": 1000, + "id": 1678160584706, + "date_created": { + "type": 6, + "value": 1678160584706 + }, + "date_last_updated": { + "type": 6, + "value": 1678160584706 + }, + "date_of_expiration": { + "type": 6, + "value": 1678160584706 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1678160584706 + }, + "revision": "ae4f0361ceff4e49aab76072", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678160584706/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "93f1ed106a5547d497839db0", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678162248934/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678162248934, + "acquirer_reference": "", + "verification_code": 1678162248934, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "aef13034ba9d4e6a98152e49", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678162248934", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 7146034, + "total_amount": 7146034, + "id": 1678162248934, + "date_created": { + "type": 6, + "value": 1678162248934 + }, + "date_last_updated": { + "type": 6, + "value": 1678162248934 + }, + "date_of_expiration": { + "type": 6, + "value": 1678162248934 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678162248934, + "description": "Compra de 7146034 IVIP por 1000 BRL" + }, + "revision": "8c475c36725f405398512079", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/barcode", + "content": { + "type": 1, + "value": { + "content": "23797927500010103493380261019562276900633330" + }, + "revision": "e54ff9a5ccba4071abe0624d", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, + "revision": "2a0b3bbb92584b73bccf379d", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": "10195622769", + "acquirer_reference": "", + "verification_code": "10195622769", + "net_received_amount": 0, + "total_paid_amount": 10103.49, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "bradesco" + }, + "revision": "7720fedef2a44a388d640067", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/external_resource_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/sandbox/payments/1311811220/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311811220&payment_method_reference_id=10195622769&hash=8d50adc1-12db-410d-a168-79594db6001b", + "revision": "0d3a1538450d482aa7e4f543", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "5b386ad7c0c94fe6a66dc08d", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "bolbradesco", + "original_amount": 10100, + "total_amount": 10103.49, + "history_id": 1677379209968, + "id": 1311811220, + "date_created": { + "type": 6, + "value": 1677379210662 + }, + "date_last_updated": { + "type": 6, + "value": 1677379210662 + }, + "date_of_expiration": { + "type": 6, + "value": 1677639599000 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "e2142e903937480fa761fb76", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.100,00 para a carteira iVip 0219.7710.1011.6756-04", + "revision": "627bcd03103a48cc97657ef9", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1684348383580/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684348383580, + "acquirer_reference": "", + "verification_code": 1684348383580, + "net_received_amount": 0, + "total_paid_amount": 326, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "adeb51437f2649738c92a765", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1684348383580", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 326, + "total_amount": 326, + "id": 1684348383580, + "date_created": { + "type": 6, + "value": 1684348383580 + }, + "date_last_updated": { + "type": 6, + "value": 1684348383580 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348383580 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684348383580 + }, + "revision": "8df07c83bd654138887242a2", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1684348383580/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "82a37c3d77c345d0ab3f8131", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1684624810300/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624810300, + "acquirer_reference": "", + "verification_code": 1684624810300, + "net_received_amount": 0, + "total_paid_amount": 326, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "cd14f8083a6a40b9b468289e", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1684624810300", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1587858, + "total_amount": 1587858, + "id": 1684624810300, + "date_created": { + "type": 6, + "value": 1684624810300 + }, + "date_last_updated": { + "type": 6, + "value": 1684624810300 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624810300 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624810300, + "description": "Compra de 1.587.858,00 IVIP por 326,00 BRL" + }, + "revision": "f358d85b74f641d3a101eb93", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1685668591211/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685668591211, + "acquirer_reference": "", + "verification_code": 1685668591211, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "e6c38969c6aa41878f37fb08", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1685668591211", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1685668591211, + "date_created": { + "type": 6, + "value": 1685668591211 + }, + "date_last_updated": { + "type": 6, + "value": 1685668591211 + }, + "date_of_expiration": { + "type": 6, + "value": 1717290991211 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685668591211 + }, + "revision": "31acb5d6c39f4693977ce40d", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1685668591211/description", + "content": { + "type": 5, + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", + "revision": "4f087f7ba6df485a8808a2c0", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1689198160853/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "abf02120c3774fcb87c33330", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1689198160853", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 72120104, + "total_amount": 72120104, + "history_id": 1689198160853, + "id": 1689198160853, + "date_created": { + "type": 6, + "value": 1689198160853 + }, + "date_last_updated": { + "type": 6, + "value": 1689198160853 + }, + "date_of_expiration": { + "type": 6, + "value": 1689198160853 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "34506afc484f4d0e8559ed1e", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1689198160853/description", + "content": { + "type": 5, + "value": "Saque de 72.120.104,00 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80", + "revision": "75245ee526a74b539075305b", + "revision_nr": 1, + "created": 1702563036341, + "modified": 1702563036341 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 2098695.0264 + }, + "revision": "010b07bcf9384e1ba2356461", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690914468659, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 72120104, + "installment_amount": 72120104, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "9384609658304e55b04252e8", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/021977101011675604/history/1690914468659", + "revision": "eb877040998d4ccc906ebe11", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "d3ebb6bbf37c415a81d546fc", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 72120104, + "total_amount": 69956500.88, + "id": 1690914468659, + "history_id": 1690914468659, + "date_created": { + "type": 6, + "value": 1690914468659 + }, + "date_last_updated": { + "type": 6, + "value": 1691419368367 + }, + "date_of_expiration": { + "type": 6, + "value": 1690914468659 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": { + "type": 6, + "value": 1691419368367 + }, + "money_release_date": { + "type": 6, + "value": 1691419368367 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "7d32662d738641828a32968c", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/description", + "content": { + "type": 5, + "value": "Saque de 69.956.500,88 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80", + "revision": "71114b4ac3594502918faef0", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 1026103.0443000001 + }, + "revision": "dfe2158fea624fe596a0d386", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690914748870, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 35261273, + "installment_amount": 35261273, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "5727528401784c688fb94f31", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/021977101011675604/history/1690914748870", + "revision": "8fa265d11ad0431cb8bf764d", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "65eaa3f258434d09981b16a0", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 35261273, + "total_amount": 34203434.81, + "id": 1690914748870, + "history_id": 1690914748870, + "date_created": { + "type": 6, + "value": 1690914748870 + }, + "date_last_updated": { + "type": 6, + "value": 1692195719152 + }, + "date_of_expiration": { + "type": 6, + "value": 1690914748870 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "rejected", + "money_release_date": { + "type": 6, + "value": 1692195719152 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "2ade1b8d87934fdf8945603b", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/description", + "content": { + "type": 5, + "value": "Saque de 34.203.434,81 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80", + "revision": "7f472d9c1595449b94466915", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history", + "content": { + "type": 1, + "value": {}, + "revision": "eb95b2914c6241489bc46e0e", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "91b314cbaf4a4a0f90921197", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "c149783e181a48c8abcf5d96", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677376425892, + "dateValidity": 1678341464139, + "totalValue": 3999.180462637249, + "currencyType": "USD", + "balancesModificacao": 1691419368675 + }, + "revision": "f108f90372164b41af750b43", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "62553.00000000", + "symbol": "IVIP", + "value": 6.93 + }, + "revision": "f396b57d06a84da39def22d4", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/balances", + "content": { + "type": 1, + "value": {}, + "revision": "96ea0e2808ae4c339ad59a28", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689290027436/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "a6b35306dac7464b85454198", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689290027436", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1689290027436, + "id": 1689290027436, + "date_created": { + "type": 6, + "value": 1689290027436 + }, + "date_last_updated": { + "type": 6, + "value": 1689355935839 + }, + "date_of_expiration": { + "type": 6, + "value": 1691882027436 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689355935839 + }, + "money_release_date": { + "type": 6, + "value": 1689355935839 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "f200dbcb6d00473c81978512", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689290027436/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50", + "revision": "ab3c07bbd0284e998248e2c7", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689338968555/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "b3975f6b961f4bf887b60297", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689338968555", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1689338968555, + "id": 1689338968555, + "date_created": { + "type": 6, + "value": 1689338968555 + }, + "date_last_updated": { + "type": 6, + "value": 1689338968555 + }, + "date_of_expiration": { + "type": 6, + "value": 1691930968555 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "2dcba186d03848f28331439e", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689338968555/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50", + "revision": "1cdbbe585c224e9aa6d3684e", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689345853748/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "d9a3d18bff69414389c60feb", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689345853748", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1689345853748, + "id": 1689345853748, + "date_created": { + "type": 6, + "value": 1689345853748 + }, + "date_last_updated": { + "type": 6, + "value": 1689345853748 + }, + "date_of_expiration": { + "type": 6, + "value": 1691937853748 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "b7932c77b8d34871bfc29a52", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689345853748/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50", + "revision": "c1ce369fbdbc4ec1b44b5bb0", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689357674118/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689357674118, + "acquirer_reference": "", + "verification_code": 1689357674118, + "net_received_amount": 0, + "total_paid_amount": 100, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "8d320826abe04d87814a624c", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689357674118", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 62553, + "total_amount": 62553, + "id": 1689357674118, + "date_created": { + "type": 6, + "value": 1689357674118 + }, + "date_last_updated": { + "type": 6, + "value": 1689357674118 + }, + "date_of_expiration": { + "type": 6, + "value": 1689357674118 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689357674118, + "description": "Compra de 62.553,00 IVIP por 100,00 BRL" + }, + "revision": "b6d6761fa5cf4429a4180003", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1690557889809/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690557889809, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 62553, + "installment_amount": 62553, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "0715f835b2d04ac08d98e972", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1690557889809/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/023129781601157750/history/1690557889809", + "revision": "c77ba18cfc7d4a238e717afe", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1690557889809", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 62553, + "total_amount": 62553, + "id": 1690557889809, + "history_id": 1690557889809, + "date_created": { + "type": 6, + "value": 1690557889809 + }, + "date_last_updated": { + "type": 6, + "value": 1690557889809 + }, + "date_of_expiration": { + "type": 6, + "value": 1690557889809 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment" + }, + "revision": "63db14bd4e4d46f39095971d", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1690557889809/description", + "content": { + "type": 5, + "value": "Saque de 62.553,00 IVIP para a carteira 0x0f58150836c0785C212ea8Eb4eC1Cce6E595CE4a", + "revision": "c837a52fd9744664834a48cd", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history", + "content": { + "type": 1, + "value": {}, + "revision": "8ad143c681b0463ab8a047e1", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "78d77c6de4f240e99b37bbf8", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "3a099133729149089334929c", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689289832519, + "dateValidity": 1689289832519, + "totalValue": 20.68, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697079600000 + } + }, + "revision": "0781e8522c6746438348574c", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688838966144/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "713f1c91a5044e6996d812c8", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688838966144", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 62000, + "total_amount": 62000, + "history_id": 1688838966144, + "id": 1688838966144, + "date_created": { + "type": 6, + "value": 1688838966144 + }, + "date_last_updated": { + "type": 6, + "value": 1688838966144 + }, + "date_of_expiration": { + "type": 6, + "value": 1688838966144 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1688838966144 + }, + "money_release_date": { + "type": 6, + "value": 1688838966144 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "d20426a0f22c4fbab26945cc", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688838966144/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 62.000,00 para a carteira iVip 0255.1405.5020.5792-40", + "revision": "427f5b7f27504baf95745cbe", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688839141121/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688839141121, + "acquirer_reference": "", + "verification_code": 1688839141121, + "net_received_amount": 0, + "total_paid_amount": 62000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "331dcec63e5b4f8585ffebc4", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688839141121", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 100000000, + "total_amount": 100000000, + "id": 1688839141121, + "date_created": { + "type": 6, + "value": 1688839141121 + }, + "date_last_updated": { + "type": 6, + "value": 1688839141121 + }, + "date_of_expiration": { + "type": 6, + "value": 1688839141121 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688839141121, + "description": "Compra de 100.000.000,00 IVIP por 62.000,00 BRL" + }, + "revision": "b11887140b304539bdeb0be4", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689276795860/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "410aa77c9aee46d5909c253e", + "revision_nr": 1, + "created": 1702563036344, + "modified": 1702563036344 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689276795860", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50000000, + "total_amount": 50000000, + "history_id": 1689276795860, + "id": 1689276795860, + "date_created": { + "type": 6, + "value": 1689276795860 + }, + "date_last_updated": { + "type": 6, + "value": 1689276795860 + }, + "date_of_expiration": { + "type": 6, + "value": 1689276795860 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1689276795860 + }, + "money_release_date": { + "type": 6, + "value": 1689276795860 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "086432c2241540cba060b01e", + "revision_nr": 1, + "created": 1702563036344, + "modified": 1702563036344 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689276795860/description", + "content": { + "type": 5, + "value": "Deposito de um valor 50.000.000,00 IVIP para a carteira iVip 0255.1405.5020.5792-40", + "revision": "9343835839a94990ac857bac", + "revision_nr": 1, + "created": 1702563036342, + "modified": 1702563036342 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689278842357/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689278842357, + "acquirer_reference": "", + "verification_code": 1689278842357, + "net_received_amount": 0, + "total_paid_amount": 149517672, + "overpaid_amount": 0, + "installment_amount": 149517672, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "681ee8db0397432580d88397", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689278842357", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 149517672, + "total_amount": 149517672, + "id": 1689278842357, + "date_created": { + "type": 6, + "value": 1689278842357 + }, + "date_last_updated": { + "type": 6, + "value": 1689278842357 + }, + "date_of_expiration": { + "type": 6, + "value": 1705176442357 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689278842357 + }, + "revision": "c129b374ebff415aadd0adf2", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689278842357/description", + "content": { + "type": 5, + "value": "Investimento de 149.517.672,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 1/13/2024", + "revision": "d44fca13e91a4e429810759e", + "revision_nr": 1, + "created": 1702563036344, + "modified": 1702563036344 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689295244660/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689295244660, + "acquirer_reference": "", + "verification_code": 1689295244660, + "net_received_amount": 0, + "total_paid_amount": 450820, + "overpaid_amount": 0, + "installment_amount": 450820, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "a54c5816c98a42308304e06b", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689295244660", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 450820, + "total_amount": 450820, + "id": 1689295244660, + "date_created": { + "type": 6, + "value": 1689295244660 + }, + "date_last_updated": { + "type": 6, + "value": 1689295244660 + }, + "date_of_expiration": { + "type": 6, + "value": 1752453644660 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689295244660 + }, + "revision": "212bd6ee96144d018c6cd26c", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689295244660/description", + "content": { + "type": 5, + "value": "Investimento de 450.820,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/13/2025", + "revision": "c8c5872a4f6c4bc18dfe4ec2", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689350577243/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "c9671237f45d4679ae360ebc", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689350577243", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 9396, + "total_amount": 9396, + "history_id": 1689350577243, + "id": 1689350577243, + "date_created": { + "type": 6, + "value": 1689350577243 + }, + "date_last_updated": { + "type": 6, + "value": 1689350577243 + }, + "date_of_expiration": { + "type": 6, + "value": 1691942577243 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "200572562dd84dd08ffb27b1", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689350577243/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 9.396,00 para a carteira iVip 0255.1405.5020.5792-40", + "revision": "f03247fda7c94a659d748f87", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1690472510945/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "112cb0d67b19464c87002516", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1690472510945", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 30010000, + "total_amount": 30010000, + "history_id": 1690472510945, + "id": 1690472510945, + "date_created": { + "type": 6, + "value": 1690472510945 + }, + "date_last_updated": { + "type": 6, + "value": 1690472510945 + }, + "date_of_expiration": { + "type": 6, + "value": 1690472510945 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP" + }, + "revision": "4b64ae44e7994c35aae7b2d2", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1690472510945/description", + "content": { + "type": 5, + "value": "Deposito de um valor 30.010.000,00 IVIP para a carteira iVip 0255.1405.5020.5792-40", + "revision": "106feb4f728f4988b67ff116", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1691081114647/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691081114647, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 6001475, + "installment_amount": 6001475, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "daaa1385145e448085262af5", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1691081114647/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1691081114647", + "revision": "3463d455a60a4b9ea1e6e4cc", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1691081114647", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 6001475, + "total_amount": 6001475, + "id": 1691081114647, + "history_id": 1691081114647, + "date_created": { + "type": 6, + "value": 1691081114647 + }, + "date_last_updated": { + "type": 6, + "value": 1691081114647 + }, + "date_of_expiration": { + "type": 6, + "value": 1693759514646 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "cca5c940c99b487e97b631b7", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1691081114647/description", + "content": { + "type": 5, + "value": "Investimento de 6.001.475,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", + "revision": "7766128b01664843aebb8893", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 721200.99 + }, + "revision": "0b5d7cc4b93344599033d484", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692462419697, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 24040033, + "installment_amount": 24040033, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "cfa5aacd0d7147eab284a016", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1692462419697", + "revision": "5e5528c6621b431284961815", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "834eae829bd24a3a86ccf07d", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 24040033, + "total_amount": 23318832.01, + "id": 1692462419697, + "history_id": 1692462419697, + "date_created": { + "type": 6, + "value": 1692462419697 + }, + "date_last_updated": { + "type": 6, + "value": 1692612895779 + }, + "date_of_expiration": { + "type": 6, + "value": 1692462419697 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "rejected", + "money_release_date": { + "type": 6, + "value": 1692612895779 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "22419619834440c1a028fd35", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/description", + "content": { + "type": 5, + "value": "Saque de 23.318.832,01 IVIP para a carteira 0x4BA972D54bb60Db93749D2cf5c4e160a3dd735c8", + "revision": "25afc85d7e6243e5887743fb", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693759701053/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693759701053, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 6001475, + "installment_amount": 6001475, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "4b041a8a77f943eba5119402", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693759701053/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1693759701053", + "revision": "0934a3bbb1304252b909aafe", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693759701053", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 6121504.5, + "total_amount": 6121504.5, + "id": "1693759701053", + "history_id": "1693759701053", + "date_created": { + "type": 6, + "value": 1693759701053 + }, + "date_last_updated": { + "type": 6, + "value": 1693759701053 + }, + "date_of_expiration": { + "type": 6, + "value": 1693759701053 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "6e258181041a47509a39ba0e", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693759701053/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 6.001.475,00 IVIP com um rendimento de +120.029,5 IVIP (2,00%) - Y12XDT27", + "revision": "c0e3daef376144e3bc62f0b4", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693861899974/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693861899974, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 7836614, + "installment_amount": 7836614, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "7337129c6f4e4820b06a46e9", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693861899974/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1693861899974", + "revision": "4be4cbd9a6c145099dea467e", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693861899974", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 7836614, + "total_amount": 7836614, + "id": "1693861899974", + "history_id": "1693861899974", + "date_created": { + "type": 6, + "value": 1693861899974 + }, + "date_last_updated": { + "type": 6, + "value": 1696424640162 + }, + "date_of_expiration": { + "type": 6, + "value": 1696453899973 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_staked_amount", + "money_release_date": { + "type": 6, + "value": 1696424640162 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "b217cd4601c64c13a2abf900", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693861899974/description", + "content": { + "type": 5, + "value": "Investimento de 7.836.614,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/10/2023 - Y12XDT27", + "revision": "1cd56f07fb554527abbc9e58", + "revision_nr": 1, + "created": 1702563036345, + "modified": 1702563036345 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697203059628 + } + }, + "revision": "a1d17fefdfdc49039c868078", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694611059637, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 24582, + "installment_amount": 24582, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "2f58b2b29a59403f97a5fe0d", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694611059637", + "revision": "8f10b0203c004c2a8c7116ff", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 24582, + "total_amount": 24582, + "id": "1694611059637", + "history_id": "1694611059637", + "date_created": { + "type": 6, + "value": 1694611059637 + }, + "date_last_updated": { + "type": 6, + "value": 1694611086754 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1694611086754 + }, + "money_release_date": { + "type": 6, + "value": 1694611086754 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "98dd1d00550d4eba97b9e615", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637/description", + "content": { + "type": 5, + "value": "Deposito de um valor 24.582,00 BRL para a carteira iVip 0255.1405.5020.5792-40", + "revision": "7efa6c080d7a45d9a323fe41", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694612208335/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694612208335, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 24582, + "installment_amount": 24582, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "41a6584556e7444689f42cf6", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694612208335/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694612208335", + "revision": "90d47f6602744346a8c69bb2", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694612208335", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 39021269, + "total_amount": 39021269, + "id": "1694612208335", + "history_id": "1694612208335", + "date_created": { + "type": 6, + "value": 1694612208335 + }, + "date_last_updated": { + "type": 6, + "value": 1694612208335 + }, + "date_of_expiration": { + "type": 6, + "value": 1694612208335 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 39.021.269,00 IVIP por 24.582,00 BRL", + "status_detail": "accredited" + }, + "revision": "61a1632f5c014962af8f7b6e", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697212107989 + } + }, + "revision": "631b78f2f62045f98e479c57", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694620107990, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 168, + "installment_amount": 168, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "815eb5e76c37401497a84d9e", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694620107990", + "revision": "4226cb8a76cf4d7596626acf", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 168, + "total_amount": 168, + "id": "1694620107990", + "history_id": "1694620107990", + "date_created": { + "type": 6, + "value": 1694620107990 + }, + "date_last_updated": { + "type": 6, + "value": 1694625063588 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1694625063588 + }, + "money_release_date": { + "type": 6, + "value": 1694625063588 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "75c3e53870964451a8f95752", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990/description", + "content": { + "type": 5, + "value": "Deposito de um valor 168,00 BRL para a carteira iVip 0255.1405.5020.5792-40", + "revision": "070fdf30f20346e3972b2884", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694641684988/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694641684988, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 168, + "installment_amount": 168, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "982b9b64412d47298a8b51b8", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694641684988/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694641684988", + "revision": "df95b38a7aff424bac8f271e", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694641684988", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 258446, + "total_amount": 258446, + "id": "1694641684988", + "history_id": "1694641684988", + "date_created": { + "type": 6, + "value": 1694641684988 + }, + "date_last_updated": { + "type": 6, + "value": 1694641684988 + }, + "date_of_expiration": { + "type": 6, + "value": 1694641684988 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 258.446,00 IVIP por 168,00 BRL", + "status_detail": "accredited" + }, + "revision": "dddf291fce3d4468b573fd0b", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 750000 + }, + "revision": "0980db12215446afb29c70fb", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694692198880, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 25000000, + "installment_amount": 25000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "1c51cc0e1dbc44c080757ab8", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694692198880", + "revision": "a72316f25c034361a6826737", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "01878bf89a7f4ec78367a2b7", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 25000000, + "total_amount": 24250000, + "id": "1694692198880", + "history_id": "1694692198880", + "date_created": { + "type": 6, + "value": 1694692198880 + }, + "date_last_updated": { + "type": 6, + "value": 1695042142983 + }, + "date_of_expiration": { + "type": 6, + "value": 1694692198880 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": { + "type": 6, + "value": 1695042142983 + }, + "money_release_date": { + "type": 6, + "value": 1695042142983 + }, + "money_release_status": "drawee", + "wasDebited": true + }, + "revision": "28e53fe18670448895b97a69", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/description", + "content": { + "type": 5, + "value": "Saque de 24.250.000,00 IVIP para a carteira 0xd3CF5Ea2Dcfb3c96d31AE10BA19cc4c7218b45b1", + "revision": "6de27ded8b40478fb1ceceaf", + "revision_nr": 1, + "created": 1702563036346, + "modified": 1702563036346 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1696451540047/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696451540047, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "564c8f0e3a2a4385805a0d22", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1696451540047/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1696451540047", + "revision": "490109413d5e49deb72876be", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1696451540047", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "025514055020579240", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": "1696451540047", + "history_id": "1696451540047", + "date_created": { + "type": 6, + "value": 1696451540047 + }, + "date_last_updated": { + "type": 6, + "value": 1696451540047 + }, + "date_of_expiration": { + "type": 6, + "value": 1699129939879 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "12f29040ef0749a2b4532b4e", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1696451540047/description", + "content": { + "type": 5, + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", + "revision": "ec8d8b034f14419496a1b6f2", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history", + "content": { + "type": 1, + "value": {}, + "revision": "c3cab0cc555145d5bd9650d1", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "c8141b775ef14a4680098579", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "analysisRequested": { + "type": 6, + "value": 1695054577899 + } + }, + "revision": "57f146b0022444c38126c2e2", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "36441252.50000000", + "symbol": "IVIP", + "value": 4538.39 + }, + "revision": "145a6fa61ed04eeb91b52fca", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/balances", + "content": { + "type": 1, + "value": {}, + "revision": "c31eab6e60e749528d95f90f", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240", + "content": { + "type": 1, + "value": { + "dataModificacao": 1688773726146, + "dateValidity": 1688773726146, + "totalValue": 15.572371266885096, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696993200000 + } + }, + "revision": "2c79905906ea4c388809b96d", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "8958033.00000000", + "symbol": "IVIP", + "value": 9273.73 + }, + "revision": "3e3c15aa03d047e2acd75263", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/balances", + "content": { + "type": 1, + "value": {}, + "revision": "89a38644dac54421bc0e02fa", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681332472707/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "2cf5e364084b4e488fc1d216", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681332472707", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1681332472707, + "id": 1681332472707, + "date_created": { + "type": 6, + "value": 1681332472707 + }, + "date_last_updated": { + "type": 6, + "value": 1681334114528 + }, + "date_of_expiration": { + "type": 6, + "value": 1683924472707 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1681334114528 + }, + "money_release_date": { + "type": 6, + "value": 1681334114528 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "587e93078547472b9a168ebc", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681332472707/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0266.8515.5320.8373-72", + "revision": "3e2ae9471636422988a70f45", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681334377618/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "a054dbabf5584c008db97147", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681334377618", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 350, + "total_amount": 350, + "history_id": 1681334377618, + "id": 1681334377618, + "date_created": { + "type": 6, + "value": 1681334377618 + }, + "date_last_updated": { + "type": 6, + "value": 1681334547169 + }, + "date_of_expiration": { + "type": 6, + "value": 1683926377618 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1681334547169 + }, + "money_release_date": { + "type": 6, + "value": 1681334547169 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "7b31d85e13104d5499635d99", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681334377618/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 350,00 para a carteira iVip 0266.8515.5320.8373-72", + "revision": "dc50c29df99d47f3b65dace7", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682092492202/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "27ca7d55566542a3b8bb526c", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682092492202", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1682092492202, + "id": 1682092492202, + "date_created": { + "type": 6, + "value": 1682092492202 + }, + "date_last_updated": { + "type": 6, + "value": 1682357453305 + }, + "date_of_expiration": { + "type": 6, + "value": 1684684492202 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1682357453305 + }, + "money_release_date": { + "type": 6, + "value": 1682357453305 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "77102c3c385f43ed9cdca7a9", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682092492202/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0266.8515.5320.8373-72", + "revision": "cfc91b3d2a3d4d6eab1ead5e", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682353441521/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "9c736bc1afb049cf8649f4a9", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682353441521", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1682353441521, + "id": 1682353441521, + "date_created": { + "type": 6, + "value": 1682353441521 + }, + "date_last_updated": { + "type": 6, + "value": 1682353441521 + }, + "date_of_expiration": { + "type": 6, + "value": 1684945441521 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "a641b92cee674752b617ca51", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682353441521/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0266.8515.5320.8373-72", + "revision": "82d3f954c352413180b4581b", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 20 + }, + "revision": "fe1abef924b54a2aafb651c2", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344/details", + "content": { + "type": 1, + "value": {}, + "revision": "0a7076b36ab24846b9036f8a", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "fd2bf555c67248c4848141be", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 1000, + "total_amount": 1020, + "history_id": 1682354342344, + "id": 1682354342344, + "date_created": { + "type": 6, + "value": 1682354342344 + }, + "date_last_updated": { + "type": 6, + "value": 1682354342344 + }, + "date_of_expiration": { + "type": 6, + "value": 1684946342344 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "1ab0038161dd4e1aae157cc2", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0266.8515.5320.8373-72 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.020,00", + "revision": "fc327e58c08a4ab795ee5118", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1684018921033/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684018921033, + "acquirer_reference": "", + "verification_code": 1684018921033, + "net_received_amount": 0, + "total_paid_amount": 1600, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "f1eadf3d506e4c57a8ab8e63", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1684018921033", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 8647027, + "total_amount": 8647027, + "id": 1684018921033, + "date_created": { + "type": 6, + "value": 1684018921033 + }, + "date_last_updated": { + "type": 6, + "value": 1684018921033 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018921033 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684018921033, + "description": "Compra de 8.647.027,00 IVIP por 1.600,00 BRL" + }, + "revision": "01454d349d294ffba01eca4b", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689084265995/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "616930762e5b4957a581bb8e", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689084265995", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 400, + "total_amount": 400, + "history_id": 1689084265995, + "id": 1689084265995, + "date_created": { + "type": 6, + "value": 1689084265995 + }, + "date_last_updated": { + "type": 6, + "value": 1689275138556 + }, + "date_of_expiration": { + "type": 6, + "value": 1691676265995 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689275138556 + }, + "money_release_date": { + "type": 6, + "value": 1689275138556 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "02646205d9d34609a549e115", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689084265995/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0266.8515.5320.8373-72", + "revision": "9d5de7d582fe4f91bdbb0c80", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689095021542/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "715e137a4d534eeba11f8c18", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689095021542", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 401.02, + "total_amount": 401.02, + "history_id": 1689095021542, + "id": 1689095021542, + "date_created": { + "type": 6, + "value": 1689095021542 + }, + "date_last_updated": { + "type": 6, + "value": 1689095021542 + }, + "date_of_expiration": { + "type": 6, + "value": 1691687021542 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "cf551132123745f3981f2d15", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689095021542/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 401,02 para a carteira iVip 0266.8515.5320.8373-72", + "revision": "9b5d4317104a45a89848b6c6", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689275206669/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689275206669, + "acquirer_reference": "", + "verification_code": 1689275206669, + "net_received_amount": 0, + "total_paid_amount": 400, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "56000f76f987413b9e1701be", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689275206669", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 168630, + "total_amount": 168630, + "id": 1689275206669, + "date_created": { + "type": 6, + "value": 1689275206669 + }, + "date_last_updated": { + "type": 6, + "value": 1689275206669 + }, + "date_of_expiration": { + "type": 6, + "value": 1689275206669 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689275206669, + "description": "Compra de 168.630,00 IVIP por 400,00 BRL" + }, + "revision": "1f2cc557a52c479188567570", + "revision_nr": 1, + "created": 1702563036347, + "modified": 1702563036347 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693192070124 + } + }, + "revision": "f23b0130655c4c178a3a5bdb", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690600070124, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 30, + "installment_amount": 30, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "4eaddb5ecf7446d4a52c7e8d", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690600070124", + "revision": "4a60a22fb6084e5b8f0564d6", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 30, + "total_amount": 30, + "id": 1690600070124, + "history_id": 1690600070124, + "date_created": { + "type": 6, + "value": 1690600070124 + }, + "date_last_updated": { + "type": 6, + "value": 1690809267089 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1690809267089 + }, + "money_release_date": { + "type": 6, + "value": 1690809267089 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "8af10a6ee8cf45e0b892ad2d", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124/description", + "content": { + "type": 5, + "value": "Deposito de um valor 30,00 para a carteira iVip 0266.8515.5320.8373-72", + "revision": "526d83bebac244638e6311db", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690822928470/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690822928470, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 30, + "installment_amount": 30, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "8c500c2e3ece4d3b92468921", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690822928470/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690822928470", + "revision": "beb2dcdc4e16403e86bc67fc", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690822928470", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 26363, + "total_amount": 26363, + "id": 1690822928470, + "history_id": 1690822928470, + "date_created": { + "type": 6, + "value": 1690822928470 + }, + "date_last_updated": { + "type": 6, + "value": 1690822928470 + }, + "date_of_expiration": { + "type": 6, + "value": 1690822928470 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 26.363,00 IVIP por 30,00 BRL", + "status_detail": "accredited" + }, + "revision": "95bb6f301a8c4ef9bf90558a", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693501456427 + } + }, + "revision": "52a1ccd8d69b4019b443e4f9", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690909456427, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "bd5b54a5c6d64c1aa187b31f", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690909456427", + "revision": "e3aa73b9d3dc4b6e8902520b", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "id": 1690909456427, + "history_id": 1690909456427, + "date_created": { + "type": 6, + "value": 1690909456427 + }, + "date_last_updated": { + "type": 6, + "value": 1690977485678 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1690977485678 + }, + "money_release_date": { + "type": 6, + "value": 1690977485678 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "8441d0c835764cac993fe417", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427/description", + "content": { + "type": 5, + "value": "Deposito de um valor 100,00 para a carteira iVip 0266.8515.5320.8373-72", + "revision": "cbcd20f27ebe48529d6426f2", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690977815869/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690977815869, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "0411367544984f789133b02f", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690977815869/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690977815869", + "revision": "4b984c24bd4b4ae4b23863e9", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690977815869", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 116013, + "total_amount": 116013, + "id": 1690977815869, + "history_id": 1690977815869, + "date_created": { + "type": 6, + "value": 1690977815869 + }, + "date_last_updated": { + "type": 6, + "value": 1690977815869 + }, + "date_of_expiration": { + "type": 6, + "value": 1690977815869 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 116.013,00 IVIP por 100,00 BRL", + "status_detail": "accredited" + }, + "revision": "285c7b8f216f4503826a7225", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history", + "content": { + "type": 1, + "value": {}, + "revision": "dbacdc88f0dc4be8af3d37dd", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 20 + }, + "revision": "d685e9517ff640a6887cb9f4", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344", + "content": { + "type": 1, + "value": { + "id": 1682354342344, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1020, + "installments": 1, + "installment_amount": 1020, + "date_created": { + "type": 6, + "value": 1682354342344 + }, + "history_id": 1682354342344, + "currency_id": "BRL" + }, + "revision": "4a4c6c7c80ef4043ba843818", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0266.8515.5320.8373-72 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.020,00", + "revision": "e315d057ea11472eb4f60a25", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344/costs", + "content": { + "type": 2, + "value": {}, + "revision": "a5a1dfc9e6f7434897d34f15", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305", + "content": { + "type": 1, + "value": {}, + "revision": "d454cb398ca64a028531a02c", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "5c6f686ae7f448df92dc86c4", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 1000, + "limitUsed": 1000, + "analysisRequested": { + "type": 6, + "value": 1682092437620 + }, + "lastReview": { + "type": 6, + "value": 1682092464302 + } + }, + "revision": "394617dca2a442508890def1", + "revision_nr": 1, + "created": 1702563036348, + "modified": 1702563036348 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372", + "content": { + "type": 1, + "value": { + "dataModificacao": 1681239500343, + "dateValidity": 1681239500343, + "totalValue": 405.92, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696215600000 + } + }, + "revision": "5d6a1e0dc7154e0eac393070", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027193309143186410/balances", + "content": { + "type": 1, + "value": {}, + "revision": "e53b934c5c0e422f8955034c", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027193309143186410/history", + "content": { + "type": 1, + "value": {}, + "revision": "34bba3fa36c14d218562bb31", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027193309143186410", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678237675259, + "dateValidity": 1678252075296, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "50e9cc8d79cf4c219999f3e1", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, + "revision": "2d46ca7db91a4749b39dc66e", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "7306097.00000000", + "symbol": "IVIP", + "value": 2344.22 + }, + "revision": "c08b5ea62afc498b9a9d2c6d", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/balances", + "content": { + "type": 1, + "value": {}, + "revision": "8e7f429207394d588c1aadf9", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684115687035/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "17fc8959704847edaba2704b", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684115687035", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1684115687035, + "id": 1684115687035, + "date_created": { + "type": 6, + "value": 1684115687035 + }, + "date_last_updated": { + "type": 6, + "value": 1684116686172 + }, + "date_of_expiration": { + "type": 6, + "value": 1686707687035 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684116686172 + }, + "money_release_date": { + "type": 6, + "value": 1684116686172 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "f0e6046d0057457c88ab17a4", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684115687035/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0275.3660.7098.8736-24", + "revision": "ba540f5ac1424934bcba58cd", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684116712162/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "994109180da1429ea631c105", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684116712162", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "history_id": 1684116712162, + "id": 1684116712162, + "date_created": { + "type": 6, + "value": 1684116712162 + }, + "date_last_updated": { + "type": 6, + "value": 1684116737988 + }, + "date_of_expiration": { + "type": 6, + "value": 1686708712162 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684116737988 + }, + "money_release_date": { + "type": 6, + "value": 1684116737988 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "beedb71209e041498d32d0f2", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684116712162/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0275.3660.7098.8736-24", + "revision": "84e884f288fb4c01a85f9520", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684625508072/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684625508072, + "acquirer_reference": "", + "verification_code": 1684625508072, + "net_received_amount": 0, + "total_paid_amount": 1500, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "280d8496e8504aa78f24b5e5", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684625508072", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 7306097, + "total_amount": 7306097, + "id": 1684625508072, + "date_created": { + "type": 6, + "value": 1684625508072 + }, + "date_last_updated": { + "type": 6, + "value": 1684625508072 + }, + "date_of_expiration": { + "type": 6, + "value": 1684625508072 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684625508072, + "description": "Compra de 7.306.097,00 IVIP por 1.500,00 BRL" + }, + "revision": "ed61ed888ab84bceb80ae063", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398096730/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "ec9ad04f0afe4e059175c990", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398096730", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 7306097, + "total_amount": 7306097, + "history_id": 1685398096730, + "id": 1685398096730, + "date_created": { + "type": 6, + "value": 1685398096730 + }, + "date_last_updated": { + "type": 6, + "value": 1685398096730 + }, + "date_of_expiration": { + "type": 6, + "value": 1685398096730 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "aa41a48ecef249dfbd5fd1fb", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398096730/description", + "content": { + "type": 5, + "value": "Saque de 7.306.097,00 IVIP para a carteira 0x5127C3d0B17433E2f03F2bdC96157ca9B00eeD8e", + "revision": "0b097113b9fe4d21ad869a1d", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398151765/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "19abec9627194774a8321417", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398151765", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 7306097, + "total_amount": 7306097, + "history_id": 1685398151765, + "id": 1685398151765, + "date_created": { + "type": 6, + "value": 1685398151765 + }, + "date_last_updated": { + "type": 6, + "value": 1685398151765 + }, + "date_of_expiration": { + "type": 6, + "value": 1685398151765 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "20bc7642442b414aa7487824", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398151765/description", + "content": { + "type": 5, + "value": "Saque de 7.306.097,00 IVIP para a carteira 0x5127C3d0B17433E2f03F2bdC96157ca9B00eeD8e", + "revision": "0573a349d3114f7596092d94", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history", + "content": { + "type": 1, + "value": {}, + "revision": "93f52a9195944bac8e92f12c", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "cee789b28cf542559bd0fda4", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "5732cdf2b6d942fa945fd31d", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684115568267, + "dateValidity": 1684115568267, + "totalValue": 301.2, + "currencyType": "USD", + "balancesModificacao": 1689822000000 + }, + "revision": "620b9ed96abe4231b1ddeeff", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/028175815433013172/balances", + "content": { + "type": 1, + "value": {}, + "revision": "5160b994536f467e87fa9869", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/028175815433013172/history", + "content": { + "type": 1, + "value": {}, + "revision": "0ff67516545b4d7c82dc6ebf", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/028175815433013172", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678161645477, + "dateValidity": 1678176045916, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "a887eafef1154dda9a51b56e", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/028947617959504292/balances", + "content": { + "type": 1, + "value": {}, + "revision": "1fb74c53c05f40aaa417b037", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/028947617959504292/history", + "content": { + "type": 1, + "value": {}, + "revision": "1fd04f508b234e84b61df0d3", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/028947617959504292", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678243619498, + "dateValidity": 1678254419535, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "7252e645817348b0b0f8dc70", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/balances", + "content": { + "type": 1, + "value": {}, + "revision": "75a086bc764b4fb88c3579a5", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "049c29013a9e4737b58d0c97", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "20b268cc46c04072ad2a4033", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693005005269 + } + }, + "revision": "be57a230bb91487f840b2d5f", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690413005269, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "b0d9e1efee374d75ba782558", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1690413005269", + "revision": "08fbf90949314edbb1390552", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": 1690413005269, + "history_id": 1690413005269, + "date_created": { + "type": 6, + "value": 1690413005269 + }, + "date_last_updated": { + "type": 6, + "value": 1690413005269 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "8a575e728131421998d6c1fe", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0292.8722.8206.6813-90", + "revision": "a7200154bfe649168abc179a", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693613470147 + } + }, + "revision": "59910408b1d84aa6898ddb9f", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691021470147, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "cbe8b3db2dfe4ec59a3086ac", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691021470147", + "revision": "8240e1af774649aaad2e94fb", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": 1691021470147, + "history_id": 1691021470147, + "date_created": { + "type": 6, + "value": 1691021470147 + }, + "date_last_updated": { + "type": 6, + "value": 1691021470147 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "3a26ecfff8964008bdbe9aa8", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147/description", + "content": { + "type": 5, + "value": "Deposito de um valor 20,00 para a carteira iVip 0292.8722.8206.6813-90", + "revision": "589b717ab0984ea8ad584766", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694007318336 + } + }, + "revision": "2a0eda17c4e14dd7b323008d", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691415318336, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 30, + "installment_amount": 30, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "dd6dbd2b710a4ba08354301a", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691415318336", + "revision": "52fdbfcbf39f470db2d961c7", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 30, + "total_amount": 30, + "id": 1691415318336, + "history_id": 1691415318336, + "date_created": { + "type": 6, + "value": 1691415318336 + }, + "date_last_updated": { + "type": 6, + "value": 1691415472035 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1691415472035 + }, + "money_release_date": { + "type": 6, + "value": 1691415472035 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "07e2278aa48743cfb2dc95b4", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336/description", + "content": { + "type": 5, + "value": "Deposito de um valor 30,00 para a carteira iVip 0292.8722.8206.6813-90", + "revision": "7a5a28e4253440f091bc41a7", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415588273/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691415588273, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 30, + "installment_amount": 30, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "f60c7c4558ee4934ad85ecf7", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415588273/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691415588273", + "revision": "9b9036dbbe8c480fa6ffc1bd", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415588273", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 41845, + "total_amount": 41845, + "id": 1691415588273, + "history_id": 1691415588273, + "date_created": { + "type": 6, + "value": 1691415588273 + }, + "date_last_updated": { + "type": 6, + "value": 1691415588273 + }, + "date_of_expiration": { + "type": 6, + "value": 1691415588273 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 41.845,00 IVIP por 30,00 BRL", + "status_detail": "accredited" + }, + "revision": "96d4120d8fdb413a9e1871aa", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 1255.35 + }, + "revision": "a5ae1b2b1a834cce8066f154", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696141267349, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 41845, + "installment_amount": 41845, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "ddef61ac8f1c4bf88bf9fed0", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1696141267349", + "revision": "ee471eae28c94a819d44f302", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "f6302acf8f244fbea3f90003", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "029287228206681390", + "payment_method": "transfer", + "original_amount": 41845, + "total_amount": 40589.65, + "id": "1696141267349", + "history_id": "1696141267349", + "date_created": { + "type": 6, + "value": 1696141267349 + }, + "date_last_updated": { + "type": 6, + "value": 1696293156722 + }, + "date_of_expiration": { + "type": 6, + "value": 1696141267349 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": { + "type": 6, + "value": 1696293156722 + }, + "money_release_date": { + "type": 6, + "value": 1696293156722 + }, + "money_release_status": "drawee", + "wasDebited": true + }, + "revision": "b7e1577b676f452da3aaf81c", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/description", + "content": { + "type": 5, + "value": "Saque de 40.589,65 IVIP para a carteira 0x8A01aF53Ea3A83B5f89C029a625Bc2B840aa0B17", + "revision": "fc36824d024c4cc6a9f5f329", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 1255.35 + }, + "revision": "9129f2bec72d400a85bdbc89", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696142296852, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 41845, + "installment_amount": 41845, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "e95fd7aecfbf4a93aece023b", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1696142296852", + "revision": "2fdcced0e5534d48b99bf359", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "277e835e3ce640e3a014a811", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "029287228206681390", + "payment_method": "transfer", + "original_amount": 41845, + "total_amount": 40589.65, + "id": "1696142296852", + "history_id": "1696142296852", + "date_created": { + "type": 6, + "value": 1696142296852 + }, + "date_last_updated": { + "type": 6, + "value": 1696293977233 + }, + "date_of_expiration": { + "type": 6, + "value": 1696142296852 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_amount", + "money_release_date": { + "type": 6, + "value": 1696293977233 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "355b99da46304e089d4b4d77", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/description", + "content": { + "type": 5, + "value": "Saque de 40.589,65 IVIP para a carteira 0x8A01aF53Ea3A83B5f89C029a625Bc2B840aa0B17", + "revision": "bf32a72521ec4a15aeaebc96", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history", + "content": { + "type": 1, + "value": {}, + "revision": "c9ffe0b44a98431cb7d83782", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390", + "content": { + "type": 1, + "value": { + "dateValidity": 1690386695913, + "balancesModificacao": { + "type": 6, + "value": 1697252400000 + } + }, + "revision": "005e43e256eb4da3a1a68ee5", + "revision_nr": 1, + "created": 1702563036349, + "modified": 1702563036349 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029673451892467508/balances", + "content": { + "type": 1, + "value": {}, + "revision": "c03f60f9832442faa670551f", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029673451892467508/history", + "content": { + "type": 1, + "value": {}, + "revision": "2dd226b31096473c9a621714", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029673451892467508", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678135581348, + "dateValidity": 1678166670994, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "8b5a46bf42e4481b952af63a", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/030266248194021460/balances", + "content": { + "type": 1, + "value": {}, + "revision": "10c44e8b220247a1ad706805", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/030266248194021460/history", + "content": { + "type": 1, + "value": {}, + "revision": "7bda0a0b85414b3bb94320ee", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/030266248194021460", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684104956115, + "dateValidity": 1684104956115, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "4e70001cfc1443bca77a4d3b", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/031498453118469660/balances", + "content": { + "type": 1, + "value": {}, + "revision": "815aa5aadf08433a9717004e", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/031498453118469660/history", + "content": { + "type": 1, + "value": {}, + "revision": "4964f6c09e864c38ac76386e", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/031498453118469660", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696478671880, + "dateValidity": 1696478671929, + "currencyType": "USD" + }, + "revision": "bc4dc3306c7c434bbcc92b3c", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "5000843.00000000", + "symbol": "IVIP", + "value": 622.94 + }, + "revision": "dbdc48be0a8849f19f91d588", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/balances", + "content": { + "type": 1, + "value": {}, + "revision": "3f26e57f28694989bca54454", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1688955478238/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "ddc1dd18916f4803b5b268ca", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1688955478238", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1688955478238, + "id": 1688955478238, + "date_created": { + "type": 6, + "value": 1688955478238 + }, + "date_last_updated": { + "type": 6, + "value": 1689002683693 + }, + "date_of_expiration": { + "type": 6, + "value": 1691547478238 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689002683693 + }, + "money_release_date": { + "type": 6, + "value": 1689002683693 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "51b8c4363e4444d08e845858", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1688955478238/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0329.8017.0462.5356-52", + "revision": "831e1bf45dcd4d3ab91c13ad", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1689002980878/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689002980878, + "acquirer_reference": "", + "verification_code": 1689002980878, + "net_received_amount": 0, + "total_paid_amount": 100, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "e73c1f3945504deb9dde3b4a", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1689002980878", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 145670, + "total_amount": 145670, + "id": 1689002980878, + "date_created": { + "type": 6, + "value": 1689002980878 + }, + "date_last_updated": { + "type": 6, + "value": 1689002980878 + }, + "date_of_expiration": { + "type": 6, + "value": 1689002980878 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689002980878, + "description": "Compra de 145.670,00 IVIP por 100,00 BRL" + }, + "revision": "1ce814533e7742aea27d88ff", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693784217742 + } + }, + "revision": "835f61028ff5477ca794b960", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691192217742, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 356, + "installment_amount": 356, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "cffc2a41fde2486bae44310d", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691192217742", + "revision": "e537e3a7648840b0bf030302", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 356, + "total_amount": 356, + "id": 1691192217742, + "history_id": 1691192217742, + "date_created": { + "type": 6, + "value": 1691192217742 + }, + "date_last_updated": { + "type": 6, + "value": 1691249189728 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1691249189728 + }, + "money_release_date": { + "type": 6, + "value": 1691249189728 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "e9160aa9f7d94410a10af213", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742/description", + "content": { + "type": 5, + "value": "Deposito de um valor 356,00 para a carteira iVip 0329.8017.0462.5356-52", + "revision": "0e148eb7c8134f6f8c0a93b2", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691277371847/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691277371847, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 356, + "installment_amount": 356, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "648700589a2f490498f891a0", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691277371847/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691277371847", + "revision": "7b9abf5e4eea4d1aa144349f", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691277371847", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 505200, + "total_amount": 505200, + "id": 1691277371847, + "history_id": 1691277371847, + "date_created": { + "type": 6, + "value": 1691277371847 + }, + "date_last_updated": { + "type": 6, + "value": 1691277371847 + }, + "date_of_expiration": { + "type": 6, + "value": 1691277371847 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 505.200,00 IVIP por 356,00 BRL", + "status_detail": "accredited" + }, + "revision": "3a61fb4a957f439ebb645684", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694307306900 + } + }, + "revision": "e84cf3e5f1644907b40f34d7", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691715306900, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1800, + "installment_amount": 1800, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "c627ae2c6e10442a857f3046", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691715306900", + "revision": "2c7acb9e0ede42f6a62d6843", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1800, + "total_amount": 1800, + "id": 1691715306900, + "history_id": 1691715306900, + "date_created": { + "type": 6, + "value": 1691715306900 + }, + "date_last_updated": { + "type": 6, + "value": 1691807444902 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1691807444902 + }, + "money_release_date": { + "type": 6, + "value": 1691807444902 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "3fff0f96c4ab41b0a5d0a947", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900/description", + "content": { + "type": 5, + "value": "Deposito de um valor 1.800,00 para a carteira iVip 0329.8017.0462.5356-52", + "revision": "9da04d2b92ed417c9de030dc", + "revision_nr": 1, + "created": 1702563036350, + "modified": 1702563036350 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691847078457/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691847078457, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1800, + "installment_amount": 1800, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "d7a86d762c6c473faeb7c6c5", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691847078457/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691847078457", + "revision": "f992d79c5ef04fb783625d4b", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691847078457", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 3402797, + "total_amount": 3402797, + "id": 1691847078457, + "history_id": 1691847078457, + "date_created": { + "type": 6, + "value": 1691847078457 + }, + "date_last_updated": { + "type": 6, + "value": 1691847078457 + }, + "date_of_expiration": { + "type": 6, + "value": 1691847078457 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 3.402.797,00 IVIP por 1.800,00 BRL", + "status_detail": "accredited" + }, + "revision": "d1dd389e5e094d8086890269", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698279005865 + } + }, + "revision": "a10c224622ba45a9b94ac987", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695687005865, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 647176, + "installment_amount": 647176, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "bb96426adc2b4f8c8bfe37b7", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1695687005865", + "revision": "1666423b8d8149e2b9b2003d", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "032980170462535652", + "payment_method": "whatsapp", + "original_amount": 647176, + "total_amount": 647176, + "id": "1695687005865", + "history_id": "1695687005865", + "date_created": { + "type": 6, + "value": 1695687005865 + }, + "date_last_updated": { + "type": 6, + "value": 1695687878463 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1695687878463 + }, + "money_release_date": { + "type": 6, + "value": 1695687878463 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "5a089a24111341ebb7fc8597", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865/description", + "content": { + "type": 5, + "value": "Deposito de um valor 647.176,00 IVIP para a carteira iVip 0329.8017.0462.5356-52", + "revision": "407098aabdee47c5877e97d1", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698443432960 + } + }, + "revision": "6136dca75e2b4c78a3a8a12c", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695851432961, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 300000, + "installment_amount": 300000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "af0aa79a845140768604aeb2", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1695851432961", + "revision": "94a87b3d692e42658a7cbb18", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "032980170462535652", + "payment_method": "whatsapp", + "original_amount": 300000, + "total_amount": 300000, + "id": "1695851432961", + "history_id": "1695851432961", + "date_created": { + "type": 6, + "value": 1695851432961 + }, + "date_last_updated": { + "type": 6, + "value": 1695934087672 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1695934087672 + }, + "money_release_date": { + "type": 6, + "value": 1695934087672 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "c98eadc66a6c4205ab98f8eb", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961/description", + "content": { + "type": 5, + "value": "Deposito de um valor 300.000,00 IVIP para a carteira iVip 0329.8017.0462.5356-52", + "revision": "083e81d0ea66496eb5d39884", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history", + "content": { + "type": 1, + "value": {}, + "revision": "13339935571e44ac954cd893", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "16c10f95f48d4667bc26bb7f", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "81609babcee14113b10cd12a", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652", + "content": { + "type": 1, + "value": { + "dataModificacao": 1688955354063, + "dateValidity": 1688955354063, + "totalValue": 20.42, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696906800000 + } + }, + "revision": "1f724959c3944698aca4e737", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "62.42718182", + "symbol": "BRL", + "value": 12.2 + }, + "revision": "e42b5e47cee840f9abe23f47", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "302069023.00000000", + "symbol": "IVIP", + "value": 32205.5 + }, + "revision": "e8a9afb8a9a3464b9491a097", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/balances", + "content": { + "type": 1, + "value": {}, + "revision": "d6718652958b439fb0cf9d41", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785461525/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "ab86f14727e34fad920cba53", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785461525", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 5510, + "total_amount": 5510, + "history_id": 1677785461525, + "id": 1677785461525, + "date_created": { + "type": 6, + "value": 1677785461525 + }, + "date_last_updated": { + "type": 6, + "value": 1677793984457 + }, + "date_of_expiration": { + "type": 6, + "value": 1680377461525 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677793984457 + }, + "money_release_date": { + "type": 6, + "value": 1677793984457 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "8e54641163f4433296052cc8", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785461525/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 5.510,00 para a carteira iVip 0331.9555.3972.0461-00", + "revision": "e9e9f0a82030465da6381bf6", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785378675/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "8df3a6019c01410fa527aab1", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785378675", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 6500, + "total_amount": 6500, + "history_id": 1677785378675, + "id": 1677785378675, + "date_created": { + "type": 6, + "value": 1677785378675 + }, + "date_last_updated": { + "type": 6, + "value": 1677794043971 + }, + "date_of_expiration": { + "type": 6, + "value": 1680377378675 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677794043971 + }, + "money_release_date": { + "type": 6, + "value": 1677794043971 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "de58008997bb436d978d01c6", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785378675/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 6.500,00 para a carteira iVip 0331.9555.3972.0461-00", + "revision": "3c2ae5d236df43f791db573c", + "revision_nr": 1, + "created": 1702563036351, + "modified": 1702563036351 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785194938/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "5efeaa739e644237aa1de68b", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785194938", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 7700, + "total_amount": 7700, + "history_id": 1677785194938, + "id": 1677785194938, + "date_created": { + "type": 6, + "value": 1677785194938 + }, + "date_last_updated": { + "type": 6, + "value": 1677794098990 + }, + "date_of_expiration": { + "type": 6, + "value": 1680377194938 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677794098990 + }, + "money_release_date": { + "type": 6, + "value": 1677794098990 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "bc6a27de841b4862a5b0a468", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785194938/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 7.700,00 para a carteira iVip 0331.9555.3972.0461-00", + "revision": "2842a5a2cf9f49bf93610773", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748547608/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "495cfe1cb70d40f6b91ddd99", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748547608", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 9900, + "total_amount": 9900, + "history_id": 1677748547608, + "id": 1677748547608, + "date_created": { + "type": 6, + "value": 1677748547608 + }, + "date_last_updated": { + "type": 6, + "value": 1677760522227 + }, + "date_of_expiration": { + "type": 6, + "value": 1680340547608 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677760522227 + }, + "money_release_date": { + "type": 6, + "value": 1677760522227 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "362ef96069844ffe906a0170", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748547608/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 9.900,00 para a carteira iVip 0331.9555.3972.0461-00", + "revision": "9aded380cdc540218aedff06", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748489604/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "f7ea758ce5b54d25b5fad629", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748489604", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1677748489604, + "id": 1677748489604, + "date_created": { + "type": 6, + "value": 1677748489604 + }, + "date_last_updated": { + "type": 6, + "value": 1677755475426 + }, + "date_of_expiration": { + "type": 6, + "value": 1680340489604 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677755475426 + }, + "money_release_date": { + "type": 6, + "value": 1677755475426 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "4830458cd5614661b2174ff5", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748489604/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0331.9555.3972.0461-00", + "revision": "7b031799e6e64985b61b0f36", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678472649293/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "cab4591728da4455b03e9735", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678472649293", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 12000, + "total_amount": 12000, + "history_id": 1678472649293, + "id": 1678472649293, + "date_created": { + "type": 6, + "value": 1678472649293 + }, + "date_last_updated": { + "type": 6, + "value": 1678539415180 + }, + "date_of_expiration": { + "type": 6, + "value": 1681064649293 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678539415180 + }, + "money_release_date": { + "type": 6, + "value": 1678539415180 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "ef104b86f6b345cfa7ae6642", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678472649293/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 12.000,00 para a carteira iVip 0331.9555.3972.0461-00", + "revision": "1f35e954ac3d4054b1a382df", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153842542/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678153842542, + "acquirer_reference": "", + "verification_code": 1678153842542, + "net_received_amount": 0, + "total_paid_amount": 10000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "029cba6480e24b97bf425ca9", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153842542", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 71460340, + "total_amount": 71460340, + "id": 1678153842542, + "date_created": { + "type": 6, + "value": 1678153842542 + }, + "date_last_updated": { + "type": 6, + "value": 1678153842542 + }, + "date_of_expiration": { + "type": 6, + "value": 1678153842542 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678153842542, + "description": "Compra de 71460340 IVIP por 10000 BRL" + }, + "revision": "2b81a95c2f804f30b27b2c98", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153902578/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678153902578, + "acquirer_reference": "", + "verification_code": 1678153902578, + "net_received_amount": 0, + "total_paid_amount": 10000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "6bd3b4e11d4841aeae020e42", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153902578", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 71460340, + "total_amount": 71460340, + "id": 1678153902578, + "date_created": { + "type": 6, + "value": 1678153902578 + }, + "date_last_updated": { + "type": 6, + "value": 1678153902578 + }, + "date_of_expiration": { + "type": 6, + "value": 1678153902578 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678153902578, + "description": "Compra de 71460340 IVIP por 10000 BRL" + }, + "revision": "7eb7146e68e146a58c700f19", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 19.8 + }, + "revision": "33e3dc1f9b344deca70c7e9c", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "b85842ebac2c44aa8524d6b5", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, + "revision": "d6e850b6194b429c8b1ff7c2", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "191e85e602524b1a9c1824da", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 2019.8, + "overpaid_amount": 0, + "installment_amount": 0 + }, + "revision": "923a9000f76f49a181ac3938", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/qr_code_base64", + "content": { + "type": 5, + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dXYrlNhAGUO1A+9+lduAQCBlb9UnugUAS6/hhmO7rto/uW1F/7fofXaPR0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v7z2jZf/c/f9b8/6Pm+v373+PTPB98+fb6x/brlrx/73x/0zKClpaWlpaWlpaWlpT1E2++PvT/kF6o9n/6Qladfz+M+8OV7GPcvKKtoaWlpaWlpaWlpaWkP0E4BZPm0l2P8+nGKBKc/u8eYV7hlEbjS0tLS0tLS0tLS0tLSXiVNN9oiKdhLdu8eQI6S7CtGWlpaWlpaWlpaWlpa2hDNpfivZO1S0eQj5Fz+kwo4aWlpaWlpaWlpaWlpj9UmfMnk1chy2TVXGuF2mbxN8SctLS0tLS0tLS0tLe0R2lba2v6Vf9qqu46WlpaWlpaWlpaWlvbb2nxNYyDH/PeLGSa13y1Hm6MkD7cWWlpaWlpaWlpaWlrab2tTC9v0pLHtfKtVl2VySTrulNgbq2QfLS0tLS0tLS0tLS3tt7VT+9u9Z21KANa9a2lw5P2h+3rOZTw55rJNWlpaWlpaWlpaWlraL2una3pFPtD1nEOSTpWm/1/PBODIn77EvLS0tLS0tLS0tLS0tN/TjpJ+S6uwU4ZuemOBLq5pl/b+aLS0tLS0tLS0tLS0tF/XpldsSiqn371WTpaodNqbndrkxm6mCi0tLS0tLS0tLS0t7de09xCxlfkiOcas8d9UL5mb49rmHblrjpaWlpaWlpaWlpaW9gBtCd/aCrCINpdFkymyXJ6lfHOdlpaWlpaWlpaWlpb2JO2Uq/vpaMi7dpRRk6X+spcItOzIbj/JRdLS0tLS0tLS0tLS0n5W2zZJvNwNV2PC+//qCoA0LjLHmLS0tLS0tLS0tLS0tEdpy3jHviqGHOXdZb1aiglb0Kap/qOlglBaWlpaWlpaWlpaWtova6d7U05vSZkiwU0UeZUD5RGS/aXqkpaWlpaWlpaWlpaW9nva0v6WEntXHiGZai03C9RqKPm2ho2WlpaWlpaWlpaWlvYcbc/LrsuTrpziy5NGaqBZTt/L9P+XqktaWlpaWlpaWlpaWtqvaROl9MUtE3ujRKDpAUlR8GlYCi0tLS0tLS0tLS0t7QHagppCv0cRZh4IWfdXp1O93XKVp9DS0tLS0tLS0tLS0p6jDRm1lpNuNSW31KaCy1J1uSv+pKWlpaWlpaWlpaWlPUJb/qrnOftTyLlcXZ3mlZTxk/WhZZsALS0tLS0tLS0tLS3tUdo8lqTns2wqMXc9dSlIXQ75p6WlpaWlpaWlpaWlPVN7ldAvxXUTr3S0PUb2/3SZWzkGLS0tLS0tLS0tLS3tOdpR+t1K91oLG9Pa6hVVkaozU/RaZpjQ0tLS0tLS0tLS0tIeoM39blO95DT3Mc0rqTNHSjVlz5Wd6b20tLS0tLS0tLS0tLQnaWurW3ltK0FlPlp6XsrzLSLGPMOElpaWlpaWlpaWlpb229rlfJGUtSvk1Bw3GVvJB26a6HqYk0JLS0tLS0tLS0tLS/t1ba2cXObl7u6pOS5FgmlSZMtVnMuIlpaWlpaWlpaWlpaW9vvaRdZuChYnVA4ql0nB6S+ubbT5NqWElpaWlpaWlpaWlpb2e9rUx5YKJDcx4Xj+r+cg9R5A1igyrxSgpaWlpaWlpaWlpaX9traUWS6u6SGJvOyaW+YDN++jpaWlpaWlpaWlpaU9RZvLLBfvyd1wo0DTerX0jlLFOWIXHi0tLS0tLS0tLS0t7ee1U/ptOX2kLFVLEWjfxKebYZJtnQCkpaWlpaWlpaWlpaU9QFvjxFD9WB/c37J7m0g1zUT5YRRJS0tLS0tLS0tLS0v7Ne1bH1vLYyCXJ97XX07FlfngtLS0tLS0tLS0tLS052jHZgt2nvFYX5bSedNxN+f7napLWlpaWlpaWlpaWlrar2lLDq5WRG4Sdi1QFrwSWdaqy5JQpKWlpaWlpaWlpaWlPUVbCh/rWaZPl0WTG/x0Xw8ZxBEHo9DS0tLS0tLS0tLS0h6kTbFeKZqclq/1cJb2tndtuWQ7jEOhpaWlpaWlpaWlpaX9vHafb0sz+jdh6JUnkkxnfqv7pKWlpaWlpaWlpaWlPUWbSyUXxZClYa6H7F6NRcuXcYU838gtdrS0tLS0tLS0tLS0tF/X3tvfphLIGuaVAsnJvZtD8tYN18PbaGlpaWlpaWlpaWlpz9PmcZFpFfbIQyLvb6y35GTfFcLQTktLS0tLS0tLS0tLe5J2CuRSgWTuWUvNbHXcSG62u2KFZfu9GlFaWlpaWlpaWlpaWtr/vbaQW3hSihh7WAEwvbFtppQU9/jJlBJaWlpaWlpaWlpaWtrPapcj9q9V7Nie/XPXKgJdTvrvscIyNerR0tLS0tLS0tLS0tIeoJ0qLFtegJ0H/9fRIiWdVysxy1VThrS0tLS0tLS0tLS0tEdoy8vGWxHmstby3ttW037LuDMFrqsokpaWlpaWlpaWlpaW9rPaVvZX50kj16qjrb0FhjmhuBuHQktLS0tLS0tLS0tLe4Q2XVMSLy1Gm+6bQs7i6XkzdgpX36suaWlpaWlpaWlpaWlpP6XNoV/tXiuVk6lYsxftJoqsYWM5KS0tLS0tLS0tLS0t7RHangPItGMtzYxMUWRpmOur4srfjiJpaWlpaWlpaWlpaWk/qU2RYH5F3aKW4skQCbbN19Jyix0tLS0tLS0tLS0tLe3B2mWn2uO+zVl2Ryux429m92hpaWlpaWlpaWlpaU/Rpictt6ON5xrtUU41FVwuZ0a+zFShpaWlpaWlpaWlpaX9pDbhSw1lQtUGt2Vx5XL3deFdtLS0tLS0tLS0tLS0Z2lr4ePkya1u1zNX11bbsqd03iizJZfrtmlpaWlpaWlpaWlpaY/Q/vcvWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWtp/TPsHWTbkPnmLk88AAAAASUVORK5CYII=", + "revision": "2a7b822aea9a482397209ff7", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/qr_code", + "content": { + "type": 5, + "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654072019.805802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13128133836304AC44", + "revision": "1aba52d2d6e44ab2bfd98914", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/ticket_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/sandbox/payments/1312813383/ticket?caller_id=1310149122&hash=8e6c1cd1-3025-43b0-8279-4a0f2e9a7e7b", + "revision": "170333d58d1548b88ac1abae", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "13b39620911b4e6593fc0bce", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 2000, + "total_amount": 2019.8, + "history_id": 1677379374499, + "id": 1312813383, + "date_created": { + "type": 6, + "value": 1677379375196 + }, + "date_last_updated": { + "type": 6, + "value": 1677379375196 + }, + "date_of_expiration": { + "type": 6, + "value": 1677465774972 + }, + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "pending", + "status_detail": "pending_waiting_transfer", + "currency_id": "BRL" + }, + "revision": "714cfa9176854d60b2ce0ea0", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0331.9555.3972.0461-00", + "revision": "28d6bb3237be44a8867cb78b", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 19.8 + }, + "revision": "231fba62a80f4e2ca7a5bc83", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "ffe6bac8f70c48059c34b486", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, + "revision": "1721ac2007364468997e7142", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "960838c009ef4c0e886cae84", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 2019.8, + "overpaid_amount": 0, + "installment_amount": 0 + }, + "revision": "25d5a4df4efc46ffb9619b06", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/qr_code", + "content": { + "type": 5, + "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654072019.805802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13128133936304E9E4", + "revision": "296b6fdb516145b89d52682c", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/ticket_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/sandbox/payments/1312813393/ticket?caller_id=1310149122&hash=ba695c70-a0ed-49a1-b87f-05224cd38f84", + "revision": "a0d7cc6768414d8899510341", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/qr_code_base64", + "content": { + "type": 5, + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2UlEQVR42u3dQY7kNgwFUN3A97+lb6BggmRSFj/l7mCAZOznRaHRLstPtSNIkWP+Rtc5aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/vXas1/Hjf8fPG0f+3o9F1lX+/N9ff5U3Xh47f658/nxlZdDS0tLS0tLS0tLS0r5Ee3wu+7nI36/9fH7xnGH1ed3uGCPfWLSJQUtLS0tLS0tLS0tL+xbtEkCWu0fZxj+PLZHg8thnjHmJNpffYcOgpaWlpaWlpaWlpaV9qbak6Wo6L7t3WcD0E9DS0tLS0tLS0tLS0tLGaC7FfyVrl4omLyFn+7Hk/mhpaWlpaWlpaWlpad+tTfhUUnlXQ9kEn4Uywsr/ukaUlpaWlpaWlpaWlpb2d9fW9iD/yccXu5TQ0tLS0tLS0tLS0tI+TZuv1IzkyHfbKHIJEZfeJDnkzBZaWlpaWlpaWlpaWtpna9MRtmWlM9Rk1n4liyc1Mkm7X57YZvdoaWlpaWlpaWlpaWmfp12Ov32eWZt3c9da1KYR5SjT1tJv00WRtLS0tLS0tLS0tLS0z9Mu1/KKvKF57UMyY+g3UjrvU3bmuzcxLy0tLS0tLS0tLS0t7fO0Z0m/bSZeH+Gxkf9qr+XL+63R0tLS0tLS0tLS0tI+XVumW+9LKpf/LSHnGXpLpq/UKs5lDsBNr0taWlpaWlpaWlpaWtoHaZdsXErTlRjzNv7Lh+PG5h351BwtLS0tLS0tLS0tLe0LtCV8Gzmn10abbdFk6j7S7qX8cgctLS0tLS0tLS0tLe1LtGnY9T7ZV86xLeS2/vIoEWiZkT1us3u0tLS0tLS0tLS0tLTP06a4bpbm/fk0XH32868jr/K5/AxdJgctLS0tLS0tLS0tLe27tDVDt5l/dnY7SAfcRkgZnlfjgj9HKgilpaWlpaWlpaWlpaV9tnbeDbZeCimvKbvm7pHnuKUCznLi7kvZPVpaWlpaWlpaWlpa2qdo0/G3VE051ms5x7bvzD9LZLnkCMuPRktLS0tLS0tLS0tL+zLtcY0E0yjsuqFytm12x+madF4aELCtuqSlpaWlpaWlpaWlpX2etlBmeL5N7C2DslM8uVt0KcJMj9HS0tLS0tLS0tLS0j5dW1AjlF4eoTCzxHqxF2QJNNuv1FVoaWlpaWlpaWlpaWnfo81R33Hdy7KNowxVWyip4LJUXbbFn5OWlpaWlpaWlpaWlvYl2vJUUwdZdtCMrk79Ssp8tnbRmmmkpaWlpaWlpaWlpaV9hTYda8tH4moqsDSdPMIbl/USvmluQktLS0tLS0tLS0tL+ybtLKFfiutK1eWZY8z0lUVWkn3n987u0dLS0tLS0tLS0tLSPkJbh6CV02sjTEwb3SuqIs9Yq9Fr6WFCS0tLS0tLS0tLS0v7Am0+77bUS6YizHP0V66mPLpEYX0vLS0tLS0tLS0tLS3tm7SjlFmW144SVOatpfVSk/8mYsw9TGhpaWlpaWlpaWlpaZ+tbfuLpKxdGmK9RIzFOK75wGWBEV5+fDkXSUtLS0tLS0tLS0tL+whtE9e1ebny5Sb3lztFjlzF2Ua0tLS0tLS0tLS0tLS0z9emuG6ErpBLJeaxqb/MubrUnPLcFlzS0tLS0tLS0tLS0tK+R9u0d0z9HNuOJDkpOMP+moA0jxSgpaWlpaWlpaWlpaV9trZQbhuPlDLLVFd5loC0vOPYvI2WlpaWlpaWlpaWlvY92px5a96zRJZ5bNoyB2DmU25L6WVanpaWlpaWlpaWlpaW9mXaUlw5b5qHNKWXy7Mp93cp4EzlnX3VJS0tLS0tLS0tLS0t7UO1bTx5hADycnAth5y7ULJNFH45iqSlpaWlpaWlpaWlpX2a9u4c29g0hEzXvv4ytSUpRZi0tLS0tLS0tLS0tLTv0Z6bKdipXWR6WUrnLdvd7O87VZe0tLS0tLS0tLS0tLRP05YcXK2ILMvNsKtxxyuRZa26LAlFWlpaWlpaWlpaWlrat2hL4WNbf3lu+khm6BlCztrLP2UQaWlpaWlpaWlpaWlp36hNsV4pmqzD18pext3ctXbIdmiHQktLS0tLS0tLS0tL+3htzrelyHJ289mOLrKc224mcxOa0tLS0tLS0tLS0tLSvkKbSyWbYshyYO62038us5whz3fmI3a0tLS0tLS0tLS0tLRP134ef1tKIGuYVwokZzfYuvkxNqfhjvA2WlpaWlpaWlpaWlraV2jTELQ0VO3Ig9HSAOx9h5OS7KtBZR9F0tLS0tLS0tLS0tLSPk275OU+I8ua2EtH51KaLnU4yT3/Z5i0PWlpaWlpaWlpaWlpad+lPa8tSEbu219SfOmA21KnOTZdSjaLHrS0tLS0tLS0tLS0tO/SznCibamrTLHjuJ6fm9cayhFyf6PI2n4lXdUlLS0tLS0tLS0tLS3tY7XjWmaZmow0d/fdI9Nelh1sUoa0tLS0tLS0tLS0tLQv0JaX1b4hSxJvceezbaPEiTnubALXLoqkpaWlpaWlpaWlpaV9rHaU+dW508jsTrSNu8AwJxTP7omDlpaWlpaWlpaWlpb2Jdp0LUm83Idk5mzc58aPzSm3sujsxgLQ0tLS0tLS0tLS0tI+W5tDv3TKbamcnGVDS8R4F0XWsLHslJaWlpaWlpaWlpaW9hXaIwSQ+4+lpHJXolnC0JF7Rn45iqSlpaWlpaWlpaWlpX2kdlMlWXtB5raSlzA0RIIj/yxtCHvQ0tLS0tLS0tLS0tK+XduulCh3Hzv8t7N7tLS0tLS0tLS0tLS0L9C2K51rhNcPWistKec1idf0jLzpqUJLS0tLS0tLS0tLS/tIbcKXGsqEqgfc2uLKdvZ14U1aWlpaWlpaWlpaWtp3aWsSb/Hko27zmqsb3bTsXdVlSgXeVF3S0tLS0tLS0tLS0tI+Tfv/v2hpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpf5n2D0v667pa5ajGAAAAAElFTkSuQmCC", + "revision": "f9428b69566b4503879e32fa", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "b32a339796764076a0e2dc50", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 2000, + "total_amount": 2019.8, + "history_id": 1677379588878, + "id": 1312813393, + "date_created": { + "type": 6, + "value": 1677379589568 + }, + "date_last_updated": { + "type": 6, + "value": 1677379589568 + }, + "date_of_expiration": { + "type": 6, + "value": 1677465989346 + }, + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "pending", + "status_detail": "pending_waiting_transfer", + "currency_id": "BRL" + }, + "revision": "208f1c1cf0e043fea3fbf954", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0331.9555.3972.0461-00", + "revision": "c559745770a0476a8c6113fa", + "revision_nr": 1, + "created": 1702563036352, + "modified": 1702563036352 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679266944717/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679266944717, + "acquirer_reference": "", + "verification_code": 1679266944717, + "net_received_amount": 0, + "total_paid_amount": 21710, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "74665e20f9344c83910c6d55", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679266944717", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 126385600, + "total_amount": 126385600, + "id": 1679266944717, + "date_created": { + "type": 6, + "value": 1679266944717 + }, + "date_last_updated": { + "type": 6, + "value": 1679266944717 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266944717 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679266944717, + "description": "Compra de 126385600 IVIP por 21710 BRL" + }, + "revision": "b11cbf5222dd4412bc4779ca", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 51.1 + }, + "revision": "013443912ca34380955752dc", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395/details", + "content": { + "type": 1, + "value": {}, + "revision": "5a67ecefb46e41d4a00ab061", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "b18eea31d44446b2932fa239", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 2555, + "total_amount": 2606.1, + "history_id": 1679852406395, + "id": 1679852406395, + "date_created": { + "type": 6, + "value": 1679852406395 + }, + "date_last_updated": { + "type": 6, + "value": 1679852406395 + }, + "date_of_expiration": { + "type": 6, + "value": 1682444406395 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "505af1ba0fff4cf28f26a197", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.555,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.606,10", + "revision": "13913bdc636a4dc1a5caf45b", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679872071598/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679872071598, + "acquirer_reference": "", + "verification_code": 1679872071598, + "net_received_amount": 0, + "total_paid_amount": 2555, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "e874b70147cd4a3c95d1911a", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679872071598", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 13606977, + "total_amount": 13606977, + "id": 1679872071598, + "date_created": { + "type": 6, + "value": 1679872071598 + }, + "date_last_updated": { + "type": 6, + "value": 1679872071598 + }, + "date_of_expiration": { + "type": 6, + "value": 1679872071598 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679872071598, + "description": "Compra de 13.606.977,00 IVIP por 2.555,00 BRL" + }, + "revision": "04384cd653d449fda1ceaf4d", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 52.2 + }, + "revision": "b9dcc876cd684c2c8a83d7a2", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250/details", + "content": { + "type": 1, + "value": {}, + "revision": "30d336c028754b2d9f49605c", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "f88b60cfed1243c6a7ed4b10", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 2610, + "total_amount": 2662.2, + "history_id": 1682964262250, + "id": 1682964262250, + "date_created": { + "type": 6, + "value": 1682964262250 + }, + "date_last_updated": { + "type": 6, + "value": 1682964262250 + }, + "date_of_expiration": { + "type": 6, + "value": 1685556262250 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "5a1dcc5872064bf8abe86f6b", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.662,20", + "revision": "510a63bbe82e44b396f475c5", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964678725/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "95a1ed3639564a5ba81fdaa0", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964678725", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2610, + "total_amount": 2610, + "history_id": 1682964678725, + "id": 1682964678725, + "date_created": { + "type": 6, + "value": 1682964678725 + }, + "date_last_updated": { + "type": 6, + "value": 1682965176565 + }, + "date_of_expiration": { + "type": 6, + "value": 1685556678725 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1682965176565 + }, + "money_release_date": { + "type": 6, + "value": 1682965176565 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "be0445bb194044b7acbf0ba3", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964678725/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00", + "revision": "3eaab7f764634038bce7dd88", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682965648718/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 0, + "payment_method_reference_id": 1682965648718, + "acquirer_reference": "", + "verification_code": 1682965648718, + "net_received_amount": 0, + "total_paid_amount": 2606.1, + "overpaid_amount": 0, + "installment_amount": 2606.1, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "6a55c96e3ed947a581b02866", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682965648718", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 2606.1, + "total_amount": 2606.1, + "id": 1682965648718, + "contract_id": "1679852406395", + "date_created": { + "type": 6, + "value": 1682965648718 + }, + "date_last_updated": { + "type": 6, + "value": 1682965648718 + }, + "date_of_expiration": { + "type": 6, + "value": 1682965648718 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682965648718 + }, + "revision": "2b247274f8f349969cfd009c", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682965648718/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 1 de 1 no valor de 2.606,10 BRL referente ao contrato 1679852406395", + "revision": "295f970416014de9be370742", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683077498849/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "df48b270afac4eaeafae6252", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683077498849", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1683077498849, + "id": 1683077498849, + "date_created": { + "type": 6, + "value": 1683077498849 + }, + "date_last_updated": { + "type": 6, + "value": 1683078275310 + }, + "date_of_expiration": { + "type": 6, + "value": 1685669498849 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683078275310 + }, + "money_release_date": { + "type": 6, + "value": 1683078275310 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "6a2c575f82e2446f84c9cf4c", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683077498849/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0331.9555.3972.0461-00", + "revision": "1c8be6c0f440405e884eee6f", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078471570/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 0, + "payment_method_reference_id": 1683078471570, + "acquirer_reference": "", + "verification_code": 1683078471570, + "net_received_amount": 0, + "total_paid_amount": 2662.2, + "overpaid_amount": 0, + "installment_amount": 2662.2, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "3088570eebea44b382a4d196", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078471570", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 2662.2, + "total_amount": 2662.2, + "id": 1683078471570, + "contract_id": "1682964262250", + "date_created": { + "type": 6, + "value": 1683078471570 + }, + "date_last_updated": { + "type": 6, + "value": 1683078471570 + }, + "date_of_expiration": { + "type": 6, + "value": 1683078471570 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1683078471570 + }, + "revision": "31f008e1902f4c139c70e697", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078471570/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 1 de 1 no valor de 2.662,20 BRL referente ao contrato 1682964262250", + "revision": "1ec244bd462c4275911e45a1", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "45c5afb38eea4309832c7fdd", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834/details", + "content": { + "type": 1, + "value": {}, + "revision": "87824b9bab12446586496417", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "60bdc13ec0ab4fc694ec94e8", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "history_id": 1683078539834, + "id": 1683078539834, + "date_created": { + "type": 6, + "value": 1683078539834 + }, + "date_last_updated": { + "type": 6, + "value": 1683078539834 + }, + "date_of_expiration": { + "type": 6, + "value": 1685670539834 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "3d93cf18bc58441dba330df5", + "revision_nr": 1, + "created": 1702563036354, + "modified": 1702563036354 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "ed4901a1af974f14a9d14059", + "revision_nr": 1, + "created": 1702563036353, + "modified": 1702563036353 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1684018958577/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684018958577, + "acquirer_reference": "", + "verification_code": 1684018958577, + "net_received_amount": 0, + "total_paid_amount": 10001, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "8cd6af2e0670457a994bf900", + "revision_nr": 1, + "created": 1702563036354, + "modified": 1702563036354 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1684018958577", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 54049325, + "total_amount": 54049325, + "id": 1684018958577, + "date_created": { + "type": 6, + "value": 1684018958577 + }, + "date_last_updated": { + "type": 6, + "value": 1684018958577 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018958577 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684018958577, + "description": "Compra de 54.049.325,00 IVIP por 10.001,00 BRL" + }, + "revision": "578c53dda4bf4b69b3f1225b", + "revision_nr": 1, + "created": 1702563036354, + "modified": 1702563036354 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1684158157715/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684158157715, + "acquirer_reference": "", + "verification_code": 1684158157715, + "net_received_amount": 0, + "total_paid_amount": 1380.18281188, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "df1e69ec946240ecb8067f60", + "revision_nr": 1, + "created": 1702563036354, + "modified": 1702563036354 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1684158157715", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 369625820, + "total_amount": 369625820, + "id": 1684158157715, + "date_created": { + "type": 6, + "value": 1684158157715 + }, + "date_last_updated": { + "type": 6, + "value": 1684158157715 + }, + "date_of_expiration": { + "type": 6, + "value": 1684158157715 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIPAY", + "history_id": 1684158157715 + }, + "revision": "4607bcf8f1434ca1afec041d", + "revision_nr": 1, + "created": 1702563036354, + "modified": 1702563036354 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1684158157715/description", + "content": { + "type": 5, + "value": "Compra de 369.625.820,00 IVIPAY por 36.962.582,00 IVIP estabilizando US$ 1.380,18", + "revision": "3c4c7228bdcf4c36986a0af9", + "revision_nr": 1, + "created": 1702563036354, + "modified": 1702563036354 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924794730/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686924794730, + "acquirer_reference": "", + "verification_code": 1686924794730, + "net_received_amount": 0, + "total_paid_amount": 39891848, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "55aea7209a514613b4e1ef5c", + "revision_nr": 1, + "created": 1702563036354, + "modified": 1702563036354 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924794730", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 3989184, + "total_amount": 3989184, + "id": 1686924794730, + "date_created": { + "type": 6, + "value": 1686924794730 + }, + "date_last_updated": { + "type": 6, + "value": 1686924794730 + }, + "date_of_expiration": { + "type": 6, + "value": 1686924794730 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686924794730 + }, + "revision": "89fa38e68b0a4fecadb5fd2e", + "revision_nr": 1, + "created": 1702563036354, + "modified": 1702563036354 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924794730/description", + "content": { + "type": 5, + "value": "Compra de 3.989.184,00 IVIP por 39.891.848,00 IVIPAY", + "revision": "bc3712ff7b9c4667b04e8399", + "revision_nr": 1, + "created": 1702563036354, + "modified": 1702563036354 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924859436/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686924859436, + "acquirer_reference": "", + "verification_code": 1686924859436, + "net_received_amount": 0, + "total_paid_amount": 359026026, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "4041ea381e0b4102a43ae986", + "revision_nr": 1, + "created": 1702563036354, + "modified": 1702563036354 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924859436", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 35902602, + "total_amount": 35902602, + "id": 1686924859436, + "date_created": { + "type": 6, + "value": 1686924859436 + }, + "date_last_updated": { + "type": 6, + "value": 1686924859436 + }, + "date_of_expiration": { + "type": 6, + "value": 1686924859436 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686924859436 + }, + "revision": "75536f9db66c411fa7b34461", + "revision_nr": 1, + "created": 1702563036354, + "modified": 1702563036354 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924859436/description", + "content": { + "type": 5, + "value": "Compra de 35.902.602,00 IVIP por 359.026.026,00 IVIPAY", + "revision": "ccc317893170456381786f8a", + "revision_nr": 1, + "created": 1702563036354, + "modified": 1702563036354 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1688993449178/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "d99626267758487a8a789191", + "revision_nr": 1, + "created": 1702563036354, + "modified": 1702563036354 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1688993449178", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1735, + "total_amount": 1735, + "history_id": 1688993449178, + "id": 1688993449178, + "date_created": { + "type": 6, + "value": 1688993449178 + }, + "date_last_updated": { + "type": 6, + "value": 1689021800593 + }, + "date_of_expiration": { + "type": 6, + "value": 1691585449178 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689021800593 + }, + "money_release_date": { + "type": 6, + "value": 1689021800593 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "83f48d4387b64005af3589d9", + "revision_nr": 1, + "created": 1702563036354, + "modified": 1702563036354 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1688993449178/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.735,00 para a carteira iVip 0331.9555.3972.0461-00", + "revision": "ff4f588246d2434f980b692a", + "revision_nr": 1, + "created": 1702563036354, + "modified": 1702563036354 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689023462249/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 10, + "payment_method_reference_id": 1689023462249, + "acquirer_reference": "", + "verification_code": 1689023462249, + "net_received_amount": 0, + "total_paid_amount": 1209.091, + "overpaid_amount": 0, + "installment_amount": 1209.091, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "0e0eee1f858841bfb6e8f36e", + "revision_nr": 1, + "created": 1702563036354, + "modified": 1702563036354 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689023462249", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 1209.091, + "total_amount": 1209.091, + "id": 1689023462249, + "contract_id": "1683078539834", + "date_created": { + "type": 6, + "value": 1689023462249 + }, + "date_last_updated": { + "type": 6, + "value": 1689023462249 + }, + "date_of_expiration": { + "type": 6, + "value": 1689023462249 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1689023462249 + }, + "revision": "2a7052ef67cc4165a3d5719c", + "revision_nr": 1, + "created": 1702563036354, + "modified": 1702563036354 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689023462249/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 1 de 11 no valor de 1.209,09 BRL referente ao contrato 1683078539834", + "revision": "84f8ef66ff0343b48c9c5a16", + "revision_nr": 1, + "created": 1702563036354, + "modified": 1702563036354 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689027294801/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689027294801, + "acquirer_reference": "", + "verification_code": 1689027294801, + "net_received_amount": 0, + "total_paid_amount": 26, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "a5d6a58455ef43dab20d4ccd", + "revision_nr": 1, + "created": 1702563036354, + "modified": 1702563036354 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689027294801", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 23038, + "total_amount": 23038, + "id": 1689027294801, + "date_created": { + "type": 6, + "value": 1689027294801 + }, + "date_last_updated": { + "type": 6, + "value": 1689027294801 + }, + "date_of_expiration": { + "type": 6, + "value": 1689027294801 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689027294801, + "description": "Compra de 23.038,00 IVIP por 26,00 BRL" + }, + "revision": "5b89cb3a08194d86b2692539", + "revision_nr": 1, + "created": 1702563036354, + "modified": 1702563036354 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689119838635/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689119838635, + "acquirer_reference": "", + "verification_code": 1689119838635, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "16ec2f05c8e844708f2d3656", + "revision_nr": 1, + "created": 1702563036354, + "modified": 1702563036354 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689119838635", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 10892, + "total_amount": 10892, + "id": 1689119838635, + "date_created": { + "type": 6, + "value": 1689119838635 + }, + "date_last_updated": { + "type": 6, + "value": 1689119838635 + }, + "date_of_expiration": { + "type": 6, + "value": 1689119838635 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689119838635, + "description": "Compra de 10.892,00 IVIP por 20,00 BRL" + }, + "revision": "5c9e22c9fe9646a0a67bed4f", + "revision_nr": 1, + "created": 1702563036354, + "modified": 1702563036354 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689121233961/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689121233961, + "acquirer_reference": "", + "verification_code": 1689121233961, + "net_received_amount": 0, + "total_paid_amount": 80, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "4ad0f15ecf7e4e369a3805d0", + "revision_nr": 1, + "created": 1702563036355, + "modified": 1702563036355 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689121233961", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 44060, + "total_amount": 44060, + "id": 1689121233961, + "date_created": { + "type": 6, + "value": 1689121233961 + }, + "date_last_updated": { + "type": 6, + "value": 1689121233961 + }, + "date_of_expiration": { + "type": 6, + "value": 1689121233961 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689121233961, + "description": "Compra de 44.060,00 IVIP por 80,00 BRL" + }, + "revision": "30a5cafa63654143994169ea", + "revision_nr": 1, + "created": 1702563036355, + "modified": 1702563036355 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689164526021/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689164526021, + "acquirer_reference": "", + "verification_code": 1689164526021, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "ddbeff9260a646e7baa462df", + "revision_nr": 1, + "created": 1702563036355, + "modified": 1702563036355 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689164526021", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 9455, + "total_amount": 9455, + "id": 1689164526021, + "date_created": { + "type": 6, + "value": 1689164526021 + }, + "date_last_updated": { + "type": 6, + "value": 1689164526021 + }, + "date_of_expiration": { + "type": 6, + "value": 1689164526021 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689164526021, + "description": "Compra de 9.455,00 IVIP por 20,00 BRL" + }, + "revision": "56d5b60442a94dadab77fae7", + "revision_nr": 1, + "created": 1702563036355, + "modified": 1702563036355 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689704009270/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689704009270, + "acquirer_reference": "", + "verification_code": 1689704009270, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "0f56cc279506402286614344", + "revision_nr": 1, + "created": 1702563036355, + "modified": 1702563036355 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689704009270", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 12818, + "total_amount": 12818, + "id": 1689704009270, + "date_created": { + "type": 6, + "value": 1689704009270 + }, + "date_last_updated": { + "type": 6, + "value": 1689704009270 + }, + "date_of_expiration": { + "type": 6, + "value": 1689704009270 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689704009270, + "description": "Compra de 12.818,00 IVIP por 20,00 BRL" + }, + "revision": "9199bbcc3aa844eaa711343f", + "revision_nr": 1, + "created": 1702563036355, + "modified": 1702563036355 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245422296/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1690245422296, + "acquirer_reference": "", + "verification_code": 1690245422296, + "net_received_amount": 0, + "total_paid_amount": 100, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "0c63ae399d064d7f823d1b77", + "revision_nr": 1, + "created": 1702563036355, + "modified": 1702563036355 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245422296", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 82033, + "total_amount": 82033, + "id": 1690245422296, + "date_created": { + "type": 6, + "value": 1690245422296 + }, + "date_last_updated": { + "type": 6, + "value": 1690245422296 + }, + "date_of_expiration": { + "type": 6, + "value": 1690245422296 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1690245422296, + "description": "Compra de 82.033,00 IVIP por 100,00 BRL" + }, + "revision": "3fdd833c2e39461d9c987997", + "revision_nr": 1, + "created": 1702563036355, + "modified": 1702563036355 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245659912/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1690245659912, + "acquirer_reference": "", + "verification_code": 1690245659912, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "6322faf4d6e64135bc4be354", + "revision_nr": 1, + "created": 1702563036355, + "modified": 1702563036355 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245659912", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 16360, + "total_amount": 16360, + "id": 1690245659912, + "date_created": { + "type": 6, + "value": 1690245659912 + }, + "date_last_updated": { + "type": 6, + "value": 1690245659912 + }, + "date_of_expiration": { + "type": 6, + "value": 1690245659912 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1690245659912, + "description": "Compra de 16.360,00 IVIP por 20,00 BRL" + }, + "revision": "63d43f9c4974496097dd0788", + "revision_nr": 1, + "created": 1702563036355, + "modified": 1702563036355 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690477890638/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690477890638, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 30, + "installment_amount": 30, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "6b3e8f941f6a43978c72bc42", + "revision_nr": 1, + "created": 1702563036355, + "modified": 1702563036355 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690477890638/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690477890638", + "revision": "b9e5488003224bd1814afeb9", + "revision_nr": 1, + "created": 1702563036355, + "modified": 1702563036355 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690477890638", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 23044, + "total_amount": 23044, + "id": 1690477890638, + "history_id": 1690477890638, + "date_created": { + "type": 6, + "value": 1690477890638 + }, + "date_last_updated": { + "type": 6, + "value": 1690477890638 + }, + "date_of_expiration": { + "type": 6, + "value": 1690477890638 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 23.044,00 IVIP por 30,00 BRL", + "status_detail": "accredited" + }, + "revision": "9a0ebe4d1a304d80b4caafc9", + "revision_nr": 1, + "created": 1702563036355, + "modified": 1702563036355 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690581074985/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690581074985, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 110, + "installment_amount": 110, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "781f478e0c40497d83c211eb", + "revision_nr": 1, + "created": 1702563036355, + "modified": 1702563036355 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690581074985/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690581074985", + "revision": "040459b75d4b4c7a9a6dc509", + "revision_nr": 1, + "created": 1702563036355, + "modified": 1702563036355 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690581074985", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 103259, + "total_amount": 103259, + "id": 1690581074985, + "history_id": 1690581074985, + "date_created": { + "type": 6, + "value": 1690581074985 + }, + "date_last_updated": { + "type": 6, + "value": 1690581074985 + }, + "date_of_expiration": { + "type": 6, + "value": 1690581074985 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 103.259,00 IVIP por 110,00 BRL", + "status_detail": "accredited" + }, + "revision": "ca75678c4aba4dcdb257cf8c", + "revision_nr": 1, + "created": 1702563036355, + "modified": 1702563036355 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690912306732/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690912306732, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50, + "installment_amount": 50, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "15c9f59aa3b743aeb68d2337", + "revision_nr": 1, + "created": 1702563036355, + "modified": 1702563036355 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690912306732/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690912306732", + "revision": "e66ef047df024d09ad22fd00", + "revision_nr": 1, + "created": 1702563036355, + "modified": 1702563036355 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690912306732", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 55731, + "total_amount": 55731, + "id": 1690912306732, + "history_id": 1690912306732, + "date_created": { + "type": 6, + "value": 1690912306732 + }, + "date_last_updated": { + "type": 6, + "value": 1690912306732 + }, + "date_of_expiration": { + "type": 6, + "value": 1690912306732 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 55.731,00 IVIP por 50,00 BRL", + "status_detail": "accredited" + }, + "revision": "6a732dbb090747039a28327a", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691091813497/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691091813497, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 7000000, + "installment_amount": 7000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "fc7b841d9352493c8e3dcff5", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691091813497/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1691091813497", + "revision": "f06ebd5ea99b4d338d55accb", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691091813497", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 7000000, + "total_amount": 7000000, + "id": 1691091813497, + "history_id": 1691091813497, + "date_created": { + "type": 6, + "value": 1691091813497 + }, + "date_last_updated": { + "type": 6, + "value": 1691091813497 + }, + "date_of_expiration": { + "type": 6, + "value": 1693770213496 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "f36104a528c1425ebefece67", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691091813497/description", + "content": { + "type": 5, + "value": "Investimento de 7.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", + "revision": "385e9719c0ec498ead4fac76", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691190824646/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691190824646, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50, + "installment_amount": 50, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "d8c151ddf4eb4f5caf29d0fe", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691190824646/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1691190824646", + "revision": "3ec2218a3a5b4ddd8b314dc4", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691190824646", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 61311, + "total_amount": 61311, + "id": 1691190824646, + "history_id": 1691190824646, + "date_created": { + "type": 6, + "value": 1691190824646 + }, + "date_last_updated": { + "type": 6, + "value": 1691190824646 + }, + "date_of_expiration": { + "type": 6, + "value": 1691190824646 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 61.311,00 IVIP por 50,00 BRL", + "status_detail": "accredited" + }, + "revision": "0612eb2cad884317b04b6be3", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695582792970 + } + }, + "revision": "ca9d6ea3c32b4242b2e89487", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692990792970, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2000, + "installment_amount": 2000, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "eb06c98d6d764586bc3ff40e", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1692990792970", + "revision": "a3026f2464d94c9aa0a727ae", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "id": "1692990792970", + "history_id": "1692990792970", + "date_created": { + "type": 6, + "value": 1692990792970 + }, + "date_last_updated": { + "type": 6, + "value": 1692990792970 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "6a897ac768834e74aec84ebc", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970/description", + "content": { + "type": 5, + "value": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0331.9555.3972.0461-00", + "revision": "e6ea629d0de94b0ca71820b6", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1693770411115/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693770411115, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 7000000, + "installment_amount": 7000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "1fb96e4bafc24e5e9b5a5578", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1693770411115/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1693770411115", + "revision": "24289a24770d49fcbff73cea", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1693770411115", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 7140000, + "total_amount": 7140000, + "id": "1693770411115", + "history_id": "1693770411115", + "date_created": { + "type": 6, + "value": 1693770411115 + }, + "date_last_updated": { + "type": 6, + "value": 1693770411115 + }, + "date_of_expiration": { + "type": 6, + "value": 1693770411115 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "06e7b303c03545d9be394f82", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1693770411115/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 7.000.000,00 IVIP com um rendimento de +140.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "c94a22a75a3c4919991e97d9", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697107013081 + } + }, + "revision": "87d8d59472cf4f6298897baa", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694515013082, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2000, + "installment_amount": 2000, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "920e2cc3685e4c9e9868862b", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694515013082", + "revision": "a124c37834c7440e9ec68be8", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "id": "1694515013082", + "history_id": "1694515013082", + "date_created": { + "type": 6, + "value": 1694515013082 + }, + "date_last_updated": { + "type": 6, + "value": 1694515013082 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "9ff5f902f5d84cafa2c6ca85", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082/description", + "content": { + "type": 5, + "value": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0331.9555.3972.0461-00", + "revision": "c14ea54b68ba47fca0112fad", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 30 + }, + "revision": "aae8ae914f7b4013a52da5f0", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694563336129, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "72c0af30e5e34914877481ce", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694563336129", + "revision": "59ee24aff8d54d7f8c5356d6", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "bd40a4f260ae46fa90e62f24", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1000, + "total_amount": 970, + "id": "1694563336129", + "history_id": "1694563336129", + "date_created": { + "type": 6, + "value": 1694563336129 + }, + "date_last_updated": { + "type": 6, + "value": 1695128598738 + }, + "date_of_expiration": { + "type": 6, + "value": 1694563336129 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": { + "type": 6, + "value": 1695128598738 + }, + "money_release_date": { + "type": 6, + "value": 1695128598738 + }, + "money_release_status": "drawee", + "wasDebited": true + }, + "revision": "d2581f70a0804b17827c3772", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/description", + "content": { + "type": 5, + "value": "Saque de 970,00 IVIP para a carteira 0x1250E6646AB77FF3f9708D761091ef1aD60bc9ec", + "revision": "8f72e6f84d1c47beabc94c85", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697194446900 + } + }, + "revision": "76855824a280480db343d27f", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694602446900, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2500, + "installment_amount": 2500, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "4e3e411ca202409eb505feea", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694602446900", + "revision": "5aca3aa73fae45fc926700ec", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2500, + "total_amount": 2500, + "id": "1694602446900", + "history_id": "1694602446900", + "date_created": { + "type": 6, + "value": 1694602446900 + }, + "date_last_updated": { + "type": 6, + "value": 1694614465688 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1694614465688 + }, + "money_release_date": { + "type": 6, + "value": 1694614465688 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "1850fe41c5d6431da649609d", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900/description", + "content": { + "type": 5, + "value": "Deposito de um valor 2.500,00 BRL para a carteira iVip 0331.9555.3972.0461-00", + "revision": "5d2f09c61d684761ab8429a2", + "revision_nr": 1, + "created": 1702563036356, + "modified": 1702563036356 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614621977/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694614621977, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1209.090909090909, + "installment_amount": 1209.090909090909, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 2, + "installments_payable": 9 + }, + "revision": "0bfee41a7a6445adafdb38a2", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614621977/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694614621977", + "revision": "4eea2a94138c4bbbb6182fa4", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614621977", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 1209.090909090909, + "total_amount": 1209.090909090909, + "id": "1694614621977", + "history_id": "1694614621977", + "date_created": { + "type": 6, + "value": 1694614621977 + }, + "date_last_updated": { + "type": 6, + "value": 1694614621977 + }, + "date_of_expiration": { + "type": 6, + "value": 1694614621977 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "0017087739e74621a65ab826", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614621977/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 2 de 11 no valor de 1.209,0909 BRL referente ao contrato 1683078539834", + "revision": "c44b1550d0a24915995469d7", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614622168/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694614622168, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1209.090909090909, + "installment_amount": 1209.090909090909, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 3, + "installments_payable": 8 + }, + "revision": "d21f3858f3d443a08b623f5e", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614622168/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694614622168", + "revision": "1fca082565d847d79b9e505e", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614622168", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 1209.090909090909, + "total_amount": 1209.090909090909, + "id": "1694614622168", + "history_id": "1694614622168", + "date_created": { + "type": 6, + "value": 1694614622168 + }, + "date_last_updated": { + "type": 6, + "value": 1694614622168 + }, + "date_of_expiration": { + "type": 6, + "value": 1694614622168 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "3fd4d195ff2e4efcacbd66f6", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614622168/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 3 de 11 no valor de 1.209,0909 BRL referente ao contrato 1683078539834", + "revision": "7e1589b724a54407acb5c30a", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 942112.9199999999 + }, + "revision": "b75a4e7f446b4a84baa2873a", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694707376145, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 31403764, + "installment_amount": 31403764, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "4a4ef7df1b8c4eeab22db432", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694707376145", + "revision": "668b5a5fbabe4cb5bbd2a796", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "989b300c899c46dd9d5327b9", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 31403764, + "total_amount": 30461651.08, + "id": "1694707376145", + "history_id": "1694707376145", + "date_created": { + "type": 6, + "value": 1694707376145 + }, + "date_last_updated": { + "type": 6, + "value": 1695339072164 + }, + "date_of_expiration": { + "type": 6, + "value": 1694707376145 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": { + "type": 6, + "value": 1695339072164 + }, + "money_release_date": { + "type": 6, + "value": 1695339072164 + }, + "money_release_status": "drawee", + "wasDebited": true + }, + "revision": "b79822e8fee2440c89d6c47d", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/description", + "content": { + "type": 5, + "value": "Saque de 30.461.651,08 IVIP para a carteira 0x1250E6646AB77FF3f9708D761091ef1aD60bc9ec", + "revision": "33730af6b358407781018335", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696309633832/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696309633832, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "d72e2ab1b172407d8562a018", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696309633832/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1696309633832", + "revision": "7abb06a35e8b49bbb7275f02", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696309633832", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "033195553972046100", + "payment_method": "staking", + "original_amount": 20, + "total_amount": 20, + "id": "1696309633832", + "history_id": "1696309633832", + "date_created": { + "type": 6, + "value": 1696309633832 + }, + "date_last_updated": { + "type": 6, + "value": 1696309633832 + }, + "date_of_expiration": { + "type": 6, + "value": 1722661633831 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited" + }, + "revision": "1a50b4c14f454934a3f1652e", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696309633832/description", + "content": { + "type": 5, + "value": "Investimento de 20,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 03/08/2024 - D03OS92M", + "revision": "727fa4774dce477199b27aaf", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696433201105/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696433201105, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 7000000, + "installment_amount": 7000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "1732b9b8d7df4798bfb7023c", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696433201105/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1696433201105", + "revision": "bf8980e241d64b33ae57bdb2", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696433201105", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "033195553972046100", + "payment_method": "staking", + "original_amount": 7000000, + "total_amount": 7000000, + "id": "1696433201105", + "history_id": "1696433201105", + "date_created": { + "type": 6, + "value": 1696433201105 + }, + "date_last_updated": { + "type": 6, + "value": 1696433201105 + }, + "date_of_expiration": { + "type": 6, + "value": 1699111601054 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "58430721fea64d65b900a1e9", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696433201105/description", + "content": { + "type": 5, + "value": "Investimento de 7.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", + "revision": "0581361a56b6426a89a716b0", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history", + "content": { + "type": 1, + "value": {}, + "revision": "a03633db128047398a094002", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 51.1 + }, + "revision": "810d6b1a904c485d91313484", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395", + "content": { + "type": 1, + "value": { + "id": 1679852406395, + "type": "emprestimo", + "original_amount": 2555, + "total_amount": 2606.1, + "installments": 1, + "installment_amount": 2606.1, + "date_created": { + "type": 6, + "value": 1679852406395 + }, + "history_id": 1679852406395, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "3d61465de742492c8f95f651", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.555,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.606,10", + "revision": "815e6270c16f41ca86a4f2a1", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395/costs", + "content": { + "type": 2, + "value": {}, + "revision": "05176557943141589e41c0ca", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304", + "content": { + "type": 1, + "value": {}, + "revision": "be07027d33034d19a1ad9bdd", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 52.2 + }, + "revision": "e50abd342d594b21afc63876", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250", + "content": { + "type": 1, + "value": { + "id": 1682964262250, + "type": "emprestimo", + "original_amount": 2610, + "total_amount": 2662.2, + "installments": 1, + "installment_amount": 2662.2, + "date_created": { + "type": 6, + "value": 1682964262250 + }, + "history_id": 1682964262250, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "31d02e33115d4372931f3319", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.662,20", + "revision": "0043129fa74b437c95e35bbc", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250/costs", + "content": { + "type": 2, + "value": {}, + "revision": "74db117df55b4e5897dbdad2", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "033ca42689804df09506eab4", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834", + "content": { + "type": 1, + "value": { + "id": 1683078539834, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "installments": 11, + "installment_amount": 1209.090909090909, + "date_created": { + "type": 6, + "value": 1683078539834 + }, + "history_id": 1683078539834, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "f970bd8d7860474f8905256b", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "4b987ea2c25848a78745194f", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834/costs", + "content": { + "type": 2, + "value": {}, + "revision": "8e45c362505645899f5e11b5", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "12ebad48757d4ffe94b39ca7", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "b5c237d223e94e85810ac82f", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834", + "content": { + "type": 1, + "value": { + "id": 1683078539834, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "installments": 11, + "installment_amount": 1209.090909090909, + "date_created": { + "type": 6, + "value": 1683078539834 + }, + "history_id": 1683078539834, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1694614622016 + } + }, + "revision": "f3e4349281354a5e8dfd95b1", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "e32c5a5f80874e978365b699", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834/costs", + "content": { + "type": 2, + "value": {}, + "revision": "97e67f72d3fe45a48f782f27", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "905060cff12647b48705c6e7", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "7c39ff76d3cd441baf784df1", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834", + "content": { + "type": 1, + "value": { + "id": 1683078539834, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "installments": 11, + "installment_amount": 1209.090909090909, + "date_created": { + "type": 6, + "value": 1683078539834 + }, + "history_id": 1683078539834, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1694614622191 + } + }, + "revision": "387b0fb6ee7c45049a91367e", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "2b124b3d46dc454685e964c2", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834/costs", + "content": { + "type": 2, + "value": {}, + "revision": "a2422516257e4e38a64945f9", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308", + "content": { + "type": 1, + "value": {}, + "revision": "56cad1f54a6d45918a4aec0b", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "18e6a1b95184442b838a46e2", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834", + "content": { + "type": 1, + "value": { + "id": 1683078539834, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "installments": 11, + "installment_amount": 1209.090909090909, + "date_created": { + "type": 6, + "value": 1683078539834 + }, + "history_id": 1683078539834, + "currency_id": "BRL" + }, + "revision": "fb4d39b1e1c2409986b1c194", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "ff73c0e765f1443bae2f64fb", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834/costs", + "content": { + "type": 2, + "value": {}, + "revision": "702c293fa37c4ad386b5b9de", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309", + "content": { + "type": 1, + "value": {}, + "revision": "e987e53fb694423eb6237df3", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "c405433bcf584a7c8dbe45e0", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834", + "content": { + "type": 1, + "value": { + "id": 1683078539834, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "installments": 11, + "installment_amount": 1209.090909090909, + "date_created": { + "type": 6, + "value": 1683078539834 + }, + "history_id": 1683078539834, + "currency_id": "BRL" + }, + "revision": "2e709a856227457cb9260665", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "f5e3912abb98495cbf031d10", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834/costs", + "content": { + "type": 2, + "value": {}, + "revision": "240935b796c345c781efdcb3", + "revision_nr": 1, + "created": 1702563036357, + "modified": 1702563036357 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310", + "content": { + "type": 1, + "value": {}, + "revision": "04e6819a157247b7b48750d0", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "ceb2c38f07e14e74845743e8", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834", + "content": { + "type": 1, + "value": { + "id": 1683078539834, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "installments": 11, + "installment_amount": 1209.090909090909, + "date_created": { + "type": 6, + "value": 1683078539834 + }, + "history_id": 1683078539834, + "currency_id": "BRL" + }, + "revision": "ad87dae489d046049e4d0840", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "66c3c69a169d44faaa52b399", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834/costs", + "content": { + "type": 2, + "value": {}, + "revision": "0662a8a5830a4e74a85bc2eb", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311", + "content": { + "type": 1, + "value": {}, + "revision": "b89d20aceee54bee9ce072b9", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "411c97f26b57418fba60834f", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834", + "content": { + "type": 1, + "value": { + "id": 1683078539834, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "installments": 11, + "installment_amount": 1209.090909090909, + "date_created": { + "type": 6, + "value": 1683078539834 + }, + "history_id": 1683078539834, + "currency_id": "BRL" + }, + "revision": "c4453b63c9a04555af8a9b1d", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "f787d059568841c99831d670", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834/costs", + "content": { + "type": 2, + "value": {}, + "revision": "9ca5924c134d4c73b00b6b78", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312", + "content": { + "type": 1, + "value": {}, + "revision": "3fa9e3e8c77d4f9785532792", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "dda5240b396845dfa61fb48b", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834", + "content": { + "type": 1, + "value": { + "id": 1683078539834, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "installments": 11, + "installment_amount": 1209.090909090909, + "date_created": { + "type": 6, + "value": 1683078539834 + }, + "history_id": 1683078539834, + "currency_id": "BRL" + }, + "revision": "b664b14a759244d38669f8f9", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "dbf3ed956b5c4f438b6abc8a", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834/costs", + "content": { + "type": 2, + "value": {}, + "revision": "fb47a2d98f09489998d1d82a", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401", + "content": { + "type": 1, + "value": {}, + "revision": "e740b13939e44ed0a78dff08", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "a603c4148a504378b2200069", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834", + "content": { + "type": 1, + "value": { + "id": 1683078539834, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "installments": 11, + "installment_amount": 1209.090909090909, + "date_created": { + "type": 6, + "value": 1683078539834 + }, + "history_id": 1683078539834, + "currency_id": "BRL" + }, + "revision": "b330b3db0d964539b07d08e0", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "bce3eccf5c624062881c3e71", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834/costs", + "content": { + "type": 2, + "value": {}, + "revision": "06956c8931784f10bae2826e", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402", + "content": { + "type": 1, + "value": {}, + "revision": "5694930af338499e8cf80b4c", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "959af4c204134fe898513d36", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834", + "content": { + "type": 1, + "value": { + "id": 1683078539834, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "installments": 11, + "installment_amount": 1209.090909090909, + "date_created": { + "type": 6, + "value": 1683078539834 + }, + "history_id": 1683078539834, + "currency_id": "BRL" + }, + "revision": "bec32b76744a421ba77033c4", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "41a227ea392b4babbef5fb3a", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834/costs", + "content": { + "type": 2, + "value": {}, + "revision": "5ceebfdc260a478fa627b4d8", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403", + "content": { + "type": 1, + "value": {}, + "revision": "fdfada67e0264d48922d405a", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "4175784e88f74262819e3dce", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834", + "content": { + "type": 1, + "value": { + "id": 1683078539834, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "installments": 11, + "installment_amount": 1209.090909090909, + "date_created": { + "type": 6, + "value": 1683078539834 + }, + "history_id": 1683078539834, + "currency_id": "BRL" + }, + "revision": "46b8b9a5970c494986ed45e7", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "4bdc8ecf8eef4da88ffec26f", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834/costs", + "content": { + "type": 2, + "value": {}, + "revision": "c65ab165fbc14ee8b52ca687", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404", + "content": { + "type": 1, + "value": {}, + "revision": "fbfc535b23ae4e689412e421", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "3197b1d515bc4797a3b1232b", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 10000, + "limitUsed": 9090.90909090909, + "analysisRequested": { + "type": 6, + "value": 1679792769965 + }, + "lastReview": { + "type": 6, + "value": 1679793429922 + } + }, + "revision": "ea7cd239235043309b2ae623", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677378717676, + "dateValidity": 1678943777415, + "totalValue": 13247.575, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } + }, + "revision": "894b6fa2567f409b8084392f", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "38137.00000000", + "symbol": "IVIP", + "value": 3.88 + }, + "revision": "3b1c2160ff584c5583b87394", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/balances", + "content": { + "type": 1, + "value": {}, + "revision": "adf3f753a4d5443e9652c29e", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689115233061/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "e93361ecfa874fcc9c5e198f", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689115233061", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689115233061, + "id": 1689115233061, + "date_created": { + "type": 6, + "value": 1689115233061 + }, + "date_last_updated": { + "type": 6, + "value": 1689150346943 + }, + "date_of_expiration": { + "type": 6, + "value": 1691707233061 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689150346943 + }, + "money_release_date": { + "type": 6, + "value": 1689150346943 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "78086bbbb50e456b9bbeea26", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689115233061/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36", + "revision": "365190e1e8954cd9bfb65510", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689278707835/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "9059a44fa42f4b1f8cabdbfc", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689278707835", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689278707835, + "id": 1689278707835, + "date_created": { + "type": 6, + "value": 1689278707835 + }, + "date_last_updated": { + "type": 6, + "value": 1689278828225 + }, + "date_of_expiration": { + "type": 6, + "value": 1691870707835 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689278828225 + }, + "money_release_date": { + "type": 6, + "value": 1689278828225 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "071e2f5b311940f29cd8e094", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689278707835/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36", + "revision": "693777427d064d9199b7a097", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689683815156/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689683815156, + "acquirer_reference": "", + "verification_code": 1689683815156, + "net_received_amount": 0, + "total_paid_amount": 40, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "125eaa5a7068439d862e418f", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689683815156", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 25268, + "total_amount": 25268, + "id": 1689683815156, + "date_created": { + "type": 6, + "value": 1689683815156 + }, + "date_last_updated": { + "type": 6, + "value": 1689683815156 + }, + "date_of_expiration": { + "type": 6, + "value": 1689683815156 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689683815156, + "description": "Compra de 25.268,00 IVIP por 40,00 BRL" + }, + "revision": "f19a670f6e134272bcc7157c", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689684340625/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "b69b9a6a7c974d868b35e74b", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689684340625", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689684340625, + "id": 1689684340625, + "date_created": { + "type": 6, + "value": 1689684340625 + }, + "date_last_updated": { + "type": 6, + "value": 1689691567863 + }, + "date_of_expiration": { + "type": 6, + "value": 1692276340625 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689691567863 + }, + "money_release_date": { + "type": 6, + "value": 1689691567863 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "65262bc575ad43e49326d4a3", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689684340625/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36", + "revision": "e54e9e96f1a94119a064e764", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689695209900/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689695209900, + "acquirer_reference": "", + "verification_code": 1689695209900, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "98c6a59730c3429f9b131a1e", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689695209900", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 12869, + "total_amount": 12869, + "id": 1689695209900, + "date_created": { + "type": 6, + "value": 1689695209900 + }, + "date_last_updated": { + "type": 6, + "value": 1689695209900 + }, + "date_of_expiration": { + "type": 6, + "value": 1689695209900 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689695209900, + "description": "Compra de 12.869,00 IVIP por 20,00 BRL" + }, + "revision": "40ebfe0b89e7420ba151e428", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history", + "content": { + "type": 1, + "value": {}, + "revision": "e6bc4a5c7a1648e1b9078942", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "819c62ef7d814c8ab4fd096c", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "a584f767d9ca485cada1950b", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936", + "content": { + "type": 1, + "value": { + "dataModificacao": 1681695529045, + "dateValidity": 1681695529045, + "totalValue": 12.39, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } + }, + "revision": "8c0cedfa8e1944028cfa58cc", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036609796475115090/balances", + "content": { + "type": 1, + "value": {}, + "revision": "04f5599411234e77bc5eace9", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036609796475115090/history", + "content": { + "type": 1, + "value": {}, + "revision": "316d1d58643f4541ab0f4c6b", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036609796475115090/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "bfdce0b471eb413d96b60e33", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036609796475115090/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "ecd960b19fe647408e432bab", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036609796475115090", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689337184637, + "dateValidity": 1689337184638, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "74bab24e41c345a9aefb1ad3", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "31783.20000000", + "symbol": "IVIP", + "value": 6.74 + }, + "revision": "0ade26e0fe2946a19d3fa59b", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/balances", + "content": { + "type": 1, + "value": {}, + "revision": "290f6e0153f644f6b4cad461", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220381451/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "df71468d4a9b4f4e81741612", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220381451", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689220381451, + "id": 1689220381451, + "date_created": { + "type": 6, + "value": 1689220381451 + }, + "date_last_updated": { + "type": 6, + "value": 1689220381451 + }, + "date_of_expiration": { + "type": 6, + "value": 1691812381451 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "6dd28ad6f98e44f4b824813e", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220381451/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", + "revision": "5219daf1473b4eccbc7f13c3", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220411584/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "cd809a7047a04781bd2e14b2", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220411584", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1689220411584, + "id": 1689220411584, + "date_created": { + "type": 6, + "value": 1689220411584 + }, + "date_last_updated": { + "type": 6, + "value": 1689257685911 + }, + "date_of_expiration": { + "type": 6, + "value": 1691812411584 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689257685911 + }, + "money_release_date": { + "type": 6, + "value": 1689257685911 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "1608663b2e664efa9bfd1691", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220411584/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0367.8180.5197.0763-00", + "revision": "1022aa37a404487c988ee1cd", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689258185846/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689258185846, + "acquirer_reference": "", + "verification_code": 1689258185846, + "net_received_amount": 0, + "total_paid_amount": 50, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "7c5fcf4b42224540bfa82003", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689258185846", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 18682, + "total_amount": 18682, + "id": 1689258185846, + "date_created": { + "type": 6, + "value": 1689258185846 + }, + "date_last_updated": { + "type": 6, + "value": 1689258185846 + }, + "date_of_expiration": { + "type": 6, + "value": 1689258185846 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689258185846, + "description": "Compra de 18.682,00 IVIP por 50,00 BRL" + }, + "revision": "42d1448f3c7e476f9b91e9f1", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488308744/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "4761afb237de45d3abbbffbe", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488308744", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689488308744, + "id": 1689488308744, + "date_created": { + "type": 6, + "value": 1689488308744 + }, + "date_last_updated": { + "type": 6, + "value": 1689488308744 + }, + "date_of_expiration": { + "type": 6, + "value": 1692080308744 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "412dd37f666f442aa231c31b", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488308744/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", + "revision": "ca9578f614b245019e350563", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488325765/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "10eb7e012781464c86fe2d44", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488325765", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689488325765, + "id": 1689488325765, + "date_created": { + "type": 6, + "value": 1689488325765 + }, + "date_last_updated": { + "type": 6, + "value": 1689614108067 + }, + "date_of_expiration": { + "type": 6, + "value": 1692080325765 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689614108067 + }, + "money_release_date": { + "type": 6, + "value": 1689614108067 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "11c5b2d4102048f8b66d1ffc", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488325765/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", + "revision": "33d7ef2871ed45d68734bd12", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689606916771/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "6693ffab2d0f4767a3c630ac", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689606916771", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689606916771, + "id": 1689606916771, + "date_created": { + "type": 6, + "value": 1689606916771 + }, + "date_last_updated": { + "type": 6, + "value": 1689606916771 + }, + "date_of_expiration": { + "type": 6, + "value": 1692198916771 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "25097f9a3ed2454ba7990465", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689606916771/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", + "revision": "7538b437bee046f893a6633a", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689614163424/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689614163424, + "acquirer_reference": "", + "verification_code": 1689614163424, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "962d653eb5f44744a0ccc732", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689614163424", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 12478, + "total_amount": 12478, + "id": 1689614163424, + "date_created": { + "type": 6, + "value": 1689614163424 + }, + "date_last_updated": { + "type": 6, + "value": 1689614163424 + }, + "date_of_expiration": { + "type": 6, + "value": 1689614163424 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689614163424, + "description": "Compra de 12.478,00 IVIP por 20,00 BRL" + }, + "revision": "bf08ca051e25428c9f552a0e", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690673977679/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690673977679, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 31160, + "installment_amount": 31160, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "23c7f469fdae42aab6262816", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690673977679/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1690673977679", + "revision": "974a7d046232468b92a8e014", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690673977679", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 31160, + "total_amount": 31160, + "id": 1690673977679, + "history_id": 1690673977679, + "date_created": { + "type": 6, + "value": 1690673977679 + }, + "date_last_updated": { + "type": 6, + "value": 1690673977679 + }, + "date_of_expiration": { + "type": 6, + "value": 1693352377677 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "26e951924f8d4d1ba91b8ae0", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690673977679/description", + "content": { + "type": 5, + "value": "Investimento de 31.160,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/29/2023", + "revision": "a954880be07e4fbda7f8cdf0", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693266063331 + } + }, + "revision": "c0627857c6a548828ff70cf6", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690674063331, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50, + "installment_amount": 50, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "d9a8520970184dd78d34351e", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1690674063331", + "revision": "877170f36a1848f4bb0cac94", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "id": 1690674063331, + "history_id": 1690674063331, + "date_created": { + "type": 6, + "value": 1690674063331 + }, + "date_last_updated": { + "type": 6, + "value": 1690674063331 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "a12222a32972447383eb2db0", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331/description", + "content": { + "type": 5, + "value": "Deposito de um valor 50,00 para a carteira iVip 0367.8180.5197.0763-00", + "revision": "ab8028ec42d3406e9930630d", + "revision_nr": 1, + "created": 1702563036358, + "modified": 1702563036358 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694472568160 + } + }, + "revision": "5117ea24568f4c45ab557806", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691880568161, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "8830e04cdf2d405898e58dd8", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1691880568161", + "revision": "d9c2bae37253483585361602", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": 1691880568161, + "history_id": 1691880568161, + "date_created": { + "type": 6, + "value": 1691880568161 + }, + "date_last_updated": { + "type": 6, + "value": 1691880568161 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "04c34e78b56f4dce925c37bb", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161/description", + "content": { + "type": 5, + "value": "Deposito de um valor 20,00 para a carteira iVip 0367.8180.5197.0763-00", + "revision": "199c5ce735d24307b52798e5", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1693353168151/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693353168151, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 31160, + "installment_amount": 31160, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "eb94cb88b0c240d6b49c429b", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1693353168151/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1693353168151", + "revision": "0448f3a3317f49a79e779e9d", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1693353168151", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 31783.2, + "total_amount": 31783.2, + "id": "1693353168151", + "history_id": "1693353168151", + "date_created": { + "type": 6, + "value": 1693353168151 + }, + "date_last_updated": { + "type": 6, + "value": 1693353168151 + }, + "date_of_expiration": { + "type": 6, + "value": 1693353168151 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "58c290c80e814fa988830947", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1693353168151/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 31.160,00 IVIP com um rendimento de +623,2 IVIP (2,00%) - Y12XDT27", + "revision": "47854bd7efe247a294160738", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history", + "content": { + "type": 1, + "value": {}, + "revision": "e88e422d21b141fa97cfb2bf", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "1a5d6bca88024cf3a8c787c9", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "d0c6d54ee3e6481597c970eb", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689220270724, + "dateValidity": 1689220270724, + "totalValue": 14.47, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696215600000 + } + }, + "revision": "04185b4491e541959d7cc585", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039695615525592090/balances", + "content": { + "type": 1, + "value": {}, + "revision": "4120296f178143f78e2b04e6", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039695615525592090/history", + "content": { + "type": 1, + "value": {}, + "revision": "817c7fd7013c40faa6280495", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039695615525592090", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677455523126, + "dateValidity": 1677455523127, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "8dd1a37b39454bd399ffa4c9", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "150481.00000000", + "symbol": "IVIP", + "value": 16.044 + }, + "revision": "355e694b5c7a4ab8b055d324", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/balances", + "content": { + "type": 1, + "value": {}, + "revision": "ceea7baf250c42078fbc9842", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699111958190 + } + }, + "revision": "35548756d86e4cf48a823745", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696519958190, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "0d43952d4ad34dfe8098beba", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696519958190", + "revision": "a788641472894e20a72a6588", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "039734721775654510", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "id": "1696519958190", + "history_id": "1696519958190", + "date_created": { + "type": 6, + "value": 1696519958190 + }, + "date_last_updated": { + "type": 6, + "value": 1696519958190 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "6e0f3e4eb45343fb80e00acd", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190/description", + "content": { + "type": 5, + "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0397.3472.1775.6545-10", + "revision": "4aba1aa652ef4e80a4838875", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699133572533 + } + }, + "revision": "d7010b5fb1f94e45a243d68d", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696541572533, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50, + "installment_amount": 50, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "12c087001c6a4977aa49fc42", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696541572533", + "revision": "8aaca3ba194d457facc5015c", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "039734721775654510", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "id": "1696541572533", + "history_id": "1696541572533", + "date_created": { + "type": 6, + "value": 1696541572533 + }, + "date_last_updated": { + "type": 6, + "value": 1696541572533 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "ceb66f63a0854d44841414c4", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533/description", + "content": { + "type": 5, + "value": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10", + "revision": "8d5c1cba411245e8be190133", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699177584658 + } + }, + "revision": "090094cfc2db48a88bf2e8cb", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696585584658, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50, + "installment_amount": 50, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "195ea434a84c40bb987acba7", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696585584658", + "revision": "56356de0d53448b1a7ea8e54", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "039734721775654510", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "id": "1696585584658", + "history_id": "1696585584658", + "date_created": { + "type": 6, + "value": 1696585584658 + }, + "date_last_updated": { + "type": 6, + "value": 1696688396574 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1696688396574 + }, + "money_release_date": { + "type": 6, + "value": 1696688396574 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "dc3ab792e75f41ae9ed969cd", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658/description", + "content": { + "type": 5, + "value": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10", + "revision": "ed3cd65bdd9a48ddb8a1d649", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696706580251/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696706580251", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50, + "installment_amount": 50, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "c8cb26e08686481682e0de37", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696706580251/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696706580251", + "revision": "d788abee7faf427e9b751e9f", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696706580251", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "wallet_id": "039734721775654510", + "payment_method": "swap", + "original_amount": 70156, + "total_amount": 70156, + "id": "1696706580251", + "history_id": "1696706580251", + "date_created": { + "type": 6, + "value": 1696706580251 + }, + "date_last_updated": { + "type": 6, + "value": 1696706580251 + }, + "date_of_expiration": { + "type": 6, + "value": 1696706580251 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 70.156,00 IVIP por 50,00 BRL", + "status_detail": "accredited" + }, + "revision": "fed79eef6c8040acb92ed9c6", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699487170002 + } + }, + "revision": "3ffeb494d80f4cfc80436c0b", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696895170006", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50, + "installment_amount": 50, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "afd0ef8d2da644dab7f31105", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696895170006", + "revision": "6fac0ec58341469aa922964f", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "039734721775654510", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "id": "1696895170006", + "history_id": "1696895170006", + "date_created": { + "type": 6, + "value": 1696895170006 + }, + "date_last_updated": { + "type": 6, + "value": 1696939710416 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1696939710416 + }, + "money_release_date": { + "type": 6, + "value": 1696939710416 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "fe00b309937842f5a0b82039", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006/description", + "content": { + "type": 5, + "value": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10", + "revision": "c2177782e2644af696e10da1", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696951453164/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696951453164", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50, + "installment_amount": 50, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "64c2d939c6354685b433f1a7", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696951453164/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696951453164", + "revision": "17d18b9949e64f7c9f566165", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696951453164", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "wallet_id": "039734721775654510", + "payment_method": "swap", + "original_amount": 80325, + "total_amount": 80325, + "id": "1696951453164", + "history_id": "1696951453164", + "date_created": { + "type": 6, + "value": 1696951453164 + }, + "date_last_updated": { + "type": 6, + "value": 1696951453164 + }, + "date_of_expiration": { + "type": 6, + "value": 1696951453164 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 80.325,00 IVIP por 50,00 BRL", + "status_detail": "accredited" + }, + "revision": "db9cc932d5a24e84b392ad04", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history", + "content": { + "type": 1, + "value": {}, + "revision": "bcc596f36f324ab9b9daf7a8", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "0f179122f2e34a2fa9054f0a", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "48f3a3003c984db19abac1e2", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696456086300, + "dateValidity": 1696456087509, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } + }, + "revision": "72a575f7808243fa91aac673", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041090915252286260/balances", + "content": { + "type": 1, + "value": {}, + "revision": "81796dc3629645108255fbd3", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041090915252286260/history", + "content": { + "type": 1, + "value": {}, + "revision": "a846a6b416f64258b0e38b23", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041090915252286260", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677897482019, + "dateValidity": 1678002144888, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "9fa497c46e364d26b6721aea", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.9900000000000001 + }, + "revision": "793ed789e39947bd9d20b844", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "59dd96ec3ad24d3396ff369d", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "78f698d724b9441e8f44f209", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "961080b8e0964fc6a07e1a75", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 100.99, + "overpaid_amount": 0, + "installment_amount": 0 + }, + "revision": "faede0b9fc304fc094a737e6", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/ticket_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/payments/55838306631/ticket?caller_id=1310149122&hash=c84a0406-1525-4894-8c96-d700cf2da43d", + "revision": "81a6ae038fc74c5bb6c5e7c4", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/qr_code", + "content": { + "type": 5, + "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558383066316304189E", + "revision": "40710654e2534c7a93ed3a42", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/qr_code_base64", + "content": { + "type": 5, + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIwElEQVR42u3dW67rNgwFUM3A85+lZ+CiRYsTi5ty+gDaWisfBzfXr+X8EaS2xvU/+pyDlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlvaf1475c/z+fz9Hp6t/O+XXm4zpX58n/xytD/rt6HReYtDS0tLS0tLS0tLS0m6iPQLlhvq5+3Sn35+zJk+8n8v+OPB5l6SipaWlpaWlpaWlpaXdQPtZQE7G815FnvdHTFVfuqKpItNzC4OWlpaWlpaWlpaWlnZb7Y9ses6Vj6a3mm6V6sTyh5aWlpaWlpaWlpaWlvZ+6SeqbcmdZWRyeqHULZxOpqWlpaWlpaWlpaWl3Vubi7vpsdNzahGYxjbTa0yy9fAnLS0tLS0tLS0tLS3t+7UppeRf+PM3MlVoaWlpaWlpaWlpaWn/z9r1pxR8q8Vx7Yjm5EnpkYsPLS0tLS0tLS0tLS3t27VpaPLs+nfNore2Fi0vdJvinMYxc7OPlpaWlpaWlpaWlpb23dqUqZ/y+NMyuUWxWN+vLLGro5w55J+WlpaWlpaWlpaWlnYDbboq5UOmwvCL0Mn8Vs2tQvIkLS0tLS0tLS0tLS3tm7Vt2fh598dAyMWzk/sM+SdX30GkpaWlpaWlpaWlpaV9s/Yz1LGG8k+5/eWyM/xpj9Y5zfJjXLS0tLS0tLS0tLS0tNtp03K1ttWW2nQF0GyAXWrRVJBmPC0tLS0tLS0tLS0t7Zu1U+2YSro8JVlHKr9q4k1r4NIqvOOb3dZoaWlpaWlpaWlpaWnfoi0tuSvsUD0Wrbt02RRkkuJLyv+NgKelpaWlpaWlpaWlpd1CO9Vwj4EiZTbyDNopanJqBU4/xs1Y3LS0tLS0tLS0tLS0tO/WlttdXb9t3MNIajduPYQ5tf1K5v8I05m0tLS0tLS0tLS0tLRbaOvCtfRJJWLpEa7TTKZHnnk685vd1mhpaWlpaWlpaWlpaV+kzVXfKFtXlzqxjl6WLdea4Mg8sXmUP7S0tLS0tLS0tLS0tDtppxJx3AHJk0Yv1/Elx1M/sOy7RktLS0tLS0tLS0tLu4W2NuJSi6+si7vCXGVqFNYi9fMNmnK1m7qkpaWlpaWlpaWlpaV9o/Ysi9RyETh92r3YVgvcuv7dfJfnmpeWlpaWlpaWlpaWlvY92rbqq1tXT0kjix0BJveRD7RF5UPNS0tLS0tLS0tLS0tL+yJtTnEcnewsGf2lzzfC6za80je8vkuPpKWlpaWlpaWlpaWlfZE2l351zVrbzitf6+Rknthsv54P3T1aWlpaWlpaWlpaWtpXaafdqNuycTq5FHxnCJNM7by08i0FTF60tLS0tLS0tLS0tLTbaJsZyvVquBT0WOrOx/5d0aafhZaWlpaWlpaWlpaWdgNtiiCZFKXMO7sXOrqAknT78+nhtLS0tLS0tLS0tLS079ceYXwyrWO75qbbyKOXdSFcKi/Tj1HKS1paWlpaWlpaWlpa2i20zT3DqrRR9sNuVs2V5W+3a6eXTEn/tLS0tLS0tLS0tLS0+2hTMkjp3zUL3HIr8DaxuVj+lp47HjNVaGlpaWlpaWlpaWlp36b9yjNCJTgFj4x7eXl1gZDncuryeNgFm5aWlpaWlpaWlpaW9n3aqelWbnc978B2hfHJo4svGWOk2c3CuGhpaWlpaWlpaWlpaXfSJuhULJaoklHySkrZ2LzaUzDKcy+SlpaWlpaWlpaWlpb2VdpKbrNJ0tK5z6/rVmA7YZn+RUtLS0tLS0tLS0tLu4+23mQagWxPWdwgdfKushAuT10ej71IWlpaWlpaWlpaWlraV2lTKTnVjkf+miMkx2cTb7pznrpMpSQtLS0tLS0tLS0tLe0u2kw5u7iRK2/DlkJGcmjJ1W0kMEajoqWlpaWlpaWlpaWl3UJ7ftmwO/LXMqy5Wv5WytVV4AktLS0tLS0tLS0tLe0W2sVwZTM+mXJGUuBJiTlp3+C6dwZpaWlpaWlpaWlpaWn30TZFYNmwum3i1fZgGq586hGefVYlLS0tLS0tLS0tLS3tm7WtJ6f1X12QSdPEm0Yv20HPchdaWlpaWlpaWlpaWtr9tOtdq9Nua9OBKdo/D2vW5JI8hHnR0tLS0tLS0tLS0tLupJ3unkYlS8jICrqY52y2x05BlLS0tLS0tLS0tLS0tJtob2XjNCWZlqt9FoarGP+Mr+/8XFTS0tLS0tLS0tLS0tK+W9vuRp3SR6be37GY08y5lFcZ4Jx+m9BLpKWlpaWlpaWlpaWlfbP2qbF3ZVl+q+seEnmWPt9TZ7BuzUZLS0tLS0tLS0tLS/t2bRmuHGUEcnq1DDhz22/6CUq5OrroE1paWlpaWlpaWlpa2n20dUFamrBchEke91e/dQtL6y7tlt0Un7S0tLS0tLS0tLS0tJto2xru7NbAjedokaucnGctp9bi9V13j5aWlpaWlpaWlpaW9kXabKz7pLWzkYshzGkRXXMgl7C0tLS0tLS0tLS0tLSbacfTFte5wrvCHmsVn2TrUpKWlpaWlpaWlpaWlnYfbfp8PuLMo5clgiRVlqlh990+bsupS1paWlpaWlpaWlpa2ldpS2jI48P+cp8vrXy7uo3bDlpaWlpaWlpaWlpa2m20617dGM3JaWe1ZrjyKUzyz1SRtLS0tLS0tLS0tLS0r9SmAjLNRuYu4Cqov23npZ8l1ae0tLS0tLS0tLS0tLR7akfIDRkhAfIKefzNnm3t1OX0us/dPVpaWlpaWlpaWlpa2g20i4j9Jpn/CB2/1M67uunMOsBJS0tLS0tLS0tLS0u7j3aN/5ymXPf+0t7Xq3Vx69V1tLS0tLS0tLS0tLS0m2jr4GNepHbOw5CjnJdW0p3h2qv8DmmJHS0tLS0tLS0tLS0t7Rba//6HlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlvYf0/4CTrnpnMA9aVMAAAAASUVORK5CYII=", + "revision": "5029077454c54c8eab5e9498", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "8f010e8253474d5b9bcd5b56", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 100, + "total_amount": 100.99, + "history_id": 1679068099316, + "id": 55838306631, + "date_created": { + "type": 6, + "value": 1679068099967 + }, + "date_last_updated": { + "type": 6, + "value": 1679154647000 + }, + "date_of_expiration": { + "type": 6, + "value": 1679154499697 + }, + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "cancelled", + "status_detail": "expired", + "currency_id": "BRL" + }, + "revision": "9fb44ed3fa264a9da9c07f93", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0413.9580.8163.2810-30", + "revision": "9c84b7be516145d7b2d64a71", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.9900000000000001 + }, + "revision": "a82707c1d1de4822ac572e81", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "2bd3092398cf4ae8b8ae2c2d", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "168750a789c349099a6f187e", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "767d733f06504cf08519ecad", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 100.99, + "overpaid_amount": 0, + "installment_amount": 0 + }, + "revision": "989c0f90b2514f2ca9f8d9eb", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/qr_code", + "content": { + "type": 5, + "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558382392976304091C", + "revision": "acf1c4881d4449f7a0d334e2", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/ticket_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/payments/55838239297/ticket?caller_id=1310149122&hash=39da82e9-af89-4bbc-a0a8-066f192eab65", + "revision": "d06ee90018d748858f656263", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/qr_code_base64", + "content": { + "type": 5, + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIu0lEQVR42u3dTW7jOBAGUN5A97+lbqDZDDoW6ysqQTcG0+LzIkgcS3r0rlB/4/qLXuegpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpf3z2jG/jn/f+/rvdHV57yyXfb1XLjt//ajXTgxaWlpaWlpaWlpaWtpNtNM9j/tv5+cjPu90/jrQkclfT54+/Pm5r8saBi0tLS0tLS0tLS0t7RbazwCyGqeI8dM9wgnOEZOHEz49tzBoaWlpaWlpaWlpaWm31V73OHGUXF0JG8+c8Vsk+47wg5aWlpaWlpaWlpaWljak33IQOFVY3l7TcVO2cPowLS0tLS0tLS0tLS3t3toc3E2PbXJ6092n39IxJtm6+JOWlpaWlpaWlpaWlvb92hXgP/zxGzNVaGlpaWlpaWlpaWlp/2bt+tVGgmV8yRGa3pq7pOmRixctLS0tLS0tLS0tLe3btalo8szZuLbprY1Fy4GmoZNXGT+5zO7R0tLS0tLS0tLS0tK+T5tm6j/dPbXEXd2g/jOcOYWhoxvyT0tLS0tLS0tLS0tLu4E2XTUNKCknaPekjTLXJCf72ludqxpRWlpaWlpaWlpaWlrat2kztIZ5n+9dIQd33asujxJ3tlWXaaH2suqSlpaWlpaWlpaWlpb2VdoU9bUllSmT91Sieeb2t+m55eujpaWlpaWlpaWlpaXdTHtL3U1PLAWXTRSZrki8coJU1ElLS0tLS0tLS0tLS7uVNod0aW5Is3ft+0m8ZuhkOdpBS0tLS0tLS0tLS0u7ibY0vTV5vtQcN929nPm8D5Mc9w9P742Ap6WlpaWlpaWlpaWl3UqbB0IeIQistZFFe+T3phO0OcLnKJKWlpaWlpaWlpaWlvY92qaGcjrB501Sb9sRPOMeaNb3ptC0VGfS0tLS0tLS0tLS0tJuoE2Na/ksI8iubi3A7bLc+dYMrPzOtjVaWlpaWlpaWlpaWtoXadNYkrS6OsWJJdA87inDZnDkYujkEdZy09LS0tLS0tLS0tLSbqFNPWu3dN6iXe0qgDy+5FjmA6dkHy0tLS0tLS0tLS0t7T7amogrhY9XuXtJ0x1dojAFqVeYWtmOKqGlpaWlpaWlpaWlpX279rw3qbVB4Mh9cWVP2qrBrcvfzXd5jnlpaWlpaWlpaWlpaWnfo03kafhjTd2lwswSHabazZFnUE5f0EPMS0tLS0tLS0tLS0tL+yLtoq5yGiNylkiwzQzm406JwpHvV8i0tLS0tLS0tLS0tLTv1qa8XOpZKwP9cyIuds2tKzbLn+dDdo+WlpaWlpaWlpaWlvZV2mk8fwkbU/y3CPia2s0mimy3tz3EvLS0tLS0tLS0tLS0tK/Sptu13XBHni+S487H/F0KTafvkJaWlpaWlpaWlpaWdgttGkFS9lw3dZqLAzVtcmlxW/twWlpaWlpaWlpaWlra92vrOP22jy3XS6Zrj3uHXA0v05dRwktaWlpaWlpaWlpaWtottM09Q1faKLWWTddcaX87yx63Ms2kDVxpaWlpaWlpaWlpaWnfrU2TQUr+Lg30PxepwKlNbkrdlRMciwpQWlpaWlpaWlpaWlrat2uT57vGhecKUWSNO8tz845sWlpaWlpaWlpaWlraN2vLSuozBIaju+co66yn0stcidk8vPyXlpaWlpaWlpaWlpZ2P227vzqvx75CdeZVosN2OOVicslBS0tLS0tLS0tLS0u7jbbWX6bZJCUVOOHTArUzZAaPnFUsv9HS0tLS0tLS0tLS0u6jPe/B4hTXjfycFEW229YW38jZhZIXLS0tLS0tLS0tLS3tNtqU55tix7rn+vMEdcJJW5OZqy5TKElLS0tLS0tLS0tLS7uLdrHi+ui0o1RipiAwDy25ukUCYzQqWlpaWlpaWlpaWlraDbQp6stTSo6S3ZvqKp9ShiPO7R9pzAktLS0tLS0tLS0tLe1O2tGtXLty+WSaM5IGnpQxJ+0Jrhyf0tLS0tLS0tLS0tLSvl/bBIFPy9Ka7rV2eH/SLuJOWlpaWlpaWlpaWlraHbVXmAC5jv+mIswaVE6ll22hZ7kLLS0tLS0tLS0tLS3tLto8cf8H29bSZWkgZBo6WX7Lf9LS0tLS0tLS0tLS0r5ZWx7RLEtLRZgtdFHPmdZj10GUzzWitLS0tLS0tLS0tLS0b9F+3jgttk6JvbRZLY05Sfi2xW4RVNLS0tLS0tLS0tLS0r5ZWwokx73fbUrJXRk63a9sZWtkU4z5kykltLS0tLS0tLS0tLS079EeXQ9cihhHmFKSqjPrzJEUVGYBLS0tLS0tLS0tLS3tjtqpIrJZhZ1KKqcwdP0VlHB1dKNPaGlpaWlpaWlpaWlpd9FOZZZpSGS6XcnQXaFXLqXu0rbsJvikpaWlpaWlpaWlpaXdR5sKLtPgyDR4JGUB04dzreX0FVwP2T1aWlpaWlpaWlpaWtr3aVP3Woosn2sja9buHCN9I2mMf17wRktLS0tLS0tLS0tLu492PK247iK8+kq9clW2DiVpaWlpaWlpaWlpaWn30abXer7/lLDLOb00VvLIZZaLSf+0tLS0tLS0tLS0tLQbaNdBYHrYYuN1GjCZqi6r+yc7CGhpaWlpaWlpaWlpaV+mrag8GvLIib3pLqm4crG97cdRJC0tLS0tLS0tLS0t7Su1ZdLIyLWRadL/elB/bnBrTpBDWFpaWlpaWlpaWlpa2h21t2AxRXipy61kC49ctllSfGc4KS0tLS0tLS0tLS0tLe2yOa48Z3qv3YJ9ddWZtZ2OlpaWlpaWlpaWlpZ2H+0a/xkdpgXYU+6v1mm2fXHf3BdAS0tLS0tLS0tLS0v7bm0tfMxNaquIcdH0Vj+X+uemFjtaWlpaWlpaWlpaWtp9tP//Fy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS3tH9P+A9AQYpnhsXB9AAAAAElFTkSuQmCC", + "revision": "966c551ea26244d89bcdc378", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "ec9469877d864510a7815bd1", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 100, + "total_amount": 100.99, + "history_id": 1679068275059, + "id": 55838239297, + "date_created": { + "type": 6, + "value": 1679068275826 + }, + "date_last_updated": { + "type": 6, + "value": 1679068337000 + }, + "date_of_expiration": { + "type": 6, + "value": 1679154675577 + }, + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679068337000 + }, + "money_release_date": { + "type": 6, + "value": 1679068337000 + }, + "wasDebited": true + }, + "revision": "15b05317c27849f8ba639c3f", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0413.9580.8163.2810-30", + "revision": "642df6e0a48344b4a76f86eb", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679267870429/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679267870429, + "acquirer_reference": "", + "verification_code": 1679267870429, + "net_received_amount": 0, + "total_paid_amount": 100, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "44a8b85b5e6d432597c19a0a", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679267870429", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 581846, + "total_amount": 581846, + "id": 1679267870429, + "date_created": { + "type": 6, + "value": 1679267870429 + }, + "date_last_updated": { + "type": 6, + "value": 1679267870429 + }, + "date_of_expiration": { + "type": 6, + "value": 1679267870429 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679267870429, + "description": "Compra de 581846 IVIP por 100 BRL" + }, + "revision": "c3610d71ce714dad88b7416f", + "revision_nr": 1, + "created": 1702563036359, + "modified": 1702563036359 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586586983/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "dc62c2be13f844cbbc0871ed", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586586983", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 581846, + "total_amount": 581846, + "history_id": 1686586586983, + "id": 1686586586983, + "date_created": { + "type": 6, + "value": 1686586586983 + }, + "date_last_updated": { + "type": 6, + "value": 1686586586983 + }, + "date_of_expiration": { + "type": 6, + "value": 1686586586983 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "425aa0dee1c04caf9cd44574", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586586983/description", + "content": { + "type": 5, + "value": "Saque de 581.846,00 IVIP para a carteira 0x37E0fCB4d560966a0564DA6CD53002e1ec1eb98B", + "revision": "1a40d57d007848e3ad11e6cf", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586986320/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "1bdf60681a4e454490bb9bad", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586986320", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 581846, + "total_amount": 581846, + "history_id": 1686586986320, + "id": 1686586986320, + "date_created": { + "type": 6, + "value": 1686586986320 + }, + "date_last_updated": { + "type": 6, + "value": 1686586986320 + }, + "date_of_expiration": { + "type": 6, + "value": 1686586986320 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "62d7214db6ff44b99e2956a3", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586986320/description", + "content": { + "type": 5, + "value": "Saque de 581.846,00 IVIP para a carteira 0x37E0fCB4d560966a0564DA6CD53002e1ec1eb98B", + "revision": "8e1eedc3424b46d3a135c56f", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1690134068779/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690134068779, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 400954, + "installment_amount": 400954, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "c2f2c2c573bb44558ce3899f", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1690134068779/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/041395808163281030/history/1690134068779", + "revision": "a3040d23542145af8b88c3d7", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1690134068779", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 400954, + "total_amount": 400954, + "id": 1690134068779, + "history_id": 1690134068779, + "date_created": { + "type": 6, + "value": 1690134068779 + }, + "date_last_updated": { + "type": 6, + "value": 1690134068779 + }, + "date_of_expiration": { + "type": 6, + "value": 1690134068779 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment" + }, + "revision": "4fe124c2c7dc4d9c8c73dcfb", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1690134068779/description", + "content": { + "type": 5, + "value": "Saque de 400.954,00 IVIP para a carteira 0x8B2f02C31F9ab77685A7c7546e3768e290DD6394", + "revision": "65d698fbdc8d480b941730d0", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history", + "content": { + "type": 1, + "value": {}, + "revision": "43e55c47c46b4a5cb9dcf245", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "581846.00000000", + "symbol": "IVIP", + "value": 73.41 + }, + "revision": "bb781c8775c54019b2d04b5f", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/balances", + "content": { + "type": 1, + "value": {}, + "revision": "60bc65930d8c4e6c90e4dda1", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "5547feea075a4b37a9489aba", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "ced40026f3984c28a750a6c0", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679068061044, + "dateValidity": 1679068061044, + "currencyType": "USD", + "totalValue": 18.88, + "balancesModificacao": { + "type": 6, + "value": 1696993200000 + } + }, + "revision": "d749bccfa5994daaa1bad802", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/042964162467339360/balances", + "content": { + "type": 1, + "value": {}, + "revision": "c0a18f2e6bb041c088f0db36", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/042964162467339360/history/1689548630515/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "616d4f9046c041378bb94933", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/042964162467339360/history/1689548630515", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1689548630515, + "id": 1689548630515, + "date_created": { + "type": 6, + "value": 1689548630515 + }, + "date_last_updated": { + "type": 6, + "value": 1689548630515 + }, + "date_of_expiration": { + "type": 6, + "value": 1692140630515 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "e0fdcb36ee6947b89fff6f1c", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/042964162467339360/history/1689548630515/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0429.6416.2467.3393-60", + "revision": "de6100ce9e67461d90608852", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/042964162467339360/history", + "content": { + "type": 1, + "value": {}, + "revision": "b06330884e3f44d0826c6bc5", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/042964162467339360/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "0e330d30d8a948bdbcf1cb0e", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/042964162467339360/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "a49721cc6a814115927a241d", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/042964162467339360", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689548492145, + "dateValidity": 1689548492145, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "3b3374943e1a4058af77e62c", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "127146.00000000", + "symbol": "IVIP", + "value": 13.81 + }, + "revision": "bf701a63ebb54d1abb350fd1", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/balances", + "content": { + "type": 1, + "value": {}, + "revision": "bf728fb0410d4ab4a505db8f", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698810290801 + } + }, + "revision": "6a0a07b5df5444979e8fbd3d", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696218290801, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 150, + "installment_amount": 150, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "ceb1715eea26477e8ca80e5b", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696218290801", + "revision": "aeda3f3c9a1042168d5ed667", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "044107260739866040", + "payment_method": "whatsapp", + "original_amount": 150, + "total_amount": 150, + "id": "1696218290801", + "history_id": "1696218290801", + "date_created": { + "type": 6, + "value": 1696218290801 + }, + "date_last_updated": { + "type": 6, + "value": 1696218290801 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "5fbb51db39174ffd9a375824", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801/description", + "content": { + "type": 5, + "value": "Deposito de um valor 150,00 BRL para a carteira iVip 0441.0726.0739.8660-40", + "revision": "8bd7f9e3aa4149a2899938d5", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699104289783 + } + }, + "revision": "aa306996ef05403d82e86365", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696512289784, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "5f2da3230cbe44eda3854f4b", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696512289784", + "revision": "ae4ff149c0ac4cc181cc37cc", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "044107260739866040", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "id": "1696512289784", + "history_id": "1696512289784", + "date_created": { + "type": 6, + "value": 1696512289784 + }, + "date_last_updated": { + "type": 6, + "value": 1696512289784 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "ff4b97ff55314d6581aafd44", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784/description", + "content": { + "type": 5, + "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0441.0726.0739.8660-40", + "revision": "333674f3b4db47a29863ed3e", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699277069126 + } + }, + "revision": "dfedcf77562048b08966e4bb", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696685069127", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "61cfdeff776f459492115b14", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696685069127", + "revision": "33af766ca9ec4c2588e27808", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "044107260739866040", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "id": "1696685069127", + "history_id": "1696685069127", + "date_created": { + "type": 6, + "value": 1696685069127 + }, + "date_last_updated": { + "type": 6, + "value": 1696689638574 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1696689638574 + }, + "money_release_date": { + "type": 6, + "value": 1696689638574 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "8e01ebb73f2d4dc0aa8faf84", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127/description", + "content": { + "type": 5, + "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0441.0726.0739.8660-40", + "revision": "09b04352c26f450da6e73cb6", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696690479419/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696690479419", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "0f060f2d61ef4833a3b1a24d", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696690479419/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696690479419", + "revision": "b3becf2d58aa4ca08d01060c", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696690479419", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "wallet_id": "044107260739866040", + "payment_method": "swap", + "original_amount": 127146, + "total_amount": 127146, + "id": "1696690479419", + "history_id": "1696690479419", + "date_created": { + "type": 6, + "value": 1696690479419 + }, + "date_last_updated": { + "type": 6, + "value": 1696690479419 + }, + "date_of_expiration": { + "type": 6, + "value": 1696690479419 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 127.146,00 IVIP por 100,00 BRL", + "status_detail": "accredited" + }, + "revision": "35e642873b4742e68780c8a5", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history", + "content": { + "type": 1, + "value": {}, + "revision": "d0aa1e4806e54c418bda76d1", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "deb67340669445efad991627", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "b355095cea614428b6b25e0c", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696161500774, + "dateValidity": 1696161500803, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696993200000 + } + }, + "revision": "8dd8b52f147e4222ae81c639", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044398429081975660/balances", + "content": { + "type": 1, + "value": {}, + "revision": "f56517e7a9564c2fac9775f9", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044398429081975660/history/1678092684774/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "cff572803e4e404bb5cbcecc", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044398429081975660/history/1678092684774", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1678092684774, + "id": 1678092684774, + "date_created": { + "type": 6, + "value": 1678092684774 + }, + "date_last_updated": { + "type": 6, + "value": 1678092684774 + }, + "date_of_expiration": { + "type": 6, + "value": 1680684684774 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "a3ea0a58238942649dae5550", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044398429081975660/history/1678092684774/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0443.9842.9081.9756-60", + "revision": "4820bb77a1c54a5392f58549", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044398429081975660/history", + "content": { + "type": 1, + "value": {}, + "revision": "5c32323bb45e40c5af9f5ab1", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044398429081975660", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678092570010, + "dateValidity": 1678110570040, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "8b108db18937472faaa68b67", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "615.00000000", + "symbol": "IVIP", + "value": 0.094 + }, + "revision": "9daea3a8bc934b0dbab7c90c", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/balances", + "content": { + "type": 1, + "value": {}, + "revision": "5d5d32bdfb6747a3b1e1887c", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678363004367/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "dc89ebe480404843869d731a", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678363004367", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "history_id": 1678363004367, + "id": 1678363004367, + "date_created": { + "type": 6, + "value": 1678363004367 + }, + "date_last_updated": { + "type": 6, + "value": 1678363074662 + }, + "date_of_expiration": { + "type": 6, + "value": 1680955004367 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678363074662 + }, + "money_release_date": { + "type": 6, + "value": 1678363074662 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "8a43cde1fe034fbaa3c69c36", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678363004367/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0451.2281.2371.7113-40", + "revision": "d661c9b44fde4574970f6e3a", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678578646817/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "6b19eeda076243ca896c2ff1", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678578646817", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 150, + "total_amount": 150, + "history_id": 1678578646817, + "id": 1678578646817, + "date_created": { + "type": 6, + "value": 1678578646817 + }, + "date_last_updated": { + "type": 6, + "value": 1678578746705 + }, + "date_of_expiration": { + "type": 6, + "value": 1681170646817 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678578746705 + }, + "money_release_date": { + "type": 6, + "value": 1678578746705 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "af86bc35c69247259e68b6b9", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678578646817/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0451.2281.2371.7113-40", + "revision": "91030cf4df5e49228d51bd26", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1679266969508/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679266969508, + "acquirer_reference": "", + "verification_code": 1679266969508, + "net_received_amount": 0, + "total_paid_amount": 1650, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "1f158d5ceecd4d079a7c6a93", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1679266969508", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 9610615, + "total_amount": 9610615, + "id": 1679266969508, + "date_created": { + "type": 6, + "value": 1679266969508 + }, + "date_last_updated": { + "type": 6, + "value": 1679266969508 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266969508 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679266969508, + "description": "Compra de 9610615 IVIP por 1650 BRL" + }, + "revision": "b2dca8181c074a69b79aa552", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1681517575873/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1681517575873, + "acquirer_reference": "", + "verification_code": 1681517575873, + "net_received_amount": 0, + "total_paid_amount": 0.003547, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "f93da48dafcc46868c225459", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1681517575873", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1000, + "total_amount": 1000, + "id": 1681517575873, + "date_created": { + "type": 6, + "value": 1681517575873 + }, + "date_last_updated": { + "type": 6, + "value": 1681517575873 + }, + "date_of_expiration": { + "type": 6, + "value": 1681517575873 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIPAY", + "history_id": 1681517575873 + }, + "revision": "b3fd7d138be14447a808dfa6", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1681517575873/description", + "content": { + "type": 5, + "value": "Compra de 1.000,00 IVIPAY por 100,00 IVIP estabilizando US$ 0,00", + "revision": "23a04d273fb94e0198424b9c", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1685393623279/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685393623279, + "acquirer_reference": "", + "verification_code": 1685393623279, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "7a520be91d7d4c4d9eceb85d", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1685393623279", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 100, + "total_amount": 100, + "id": 1685393623279, + "date_created": { + "type": 6, + "value": 1685393623279 + }, + "date_last_updated": { + "type": 6, + "value": 1685393623279 + }, + "date_of_expiration": { + "type": 6, + "value": 1685393623279 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685393623279, + "description": "Compra de 100,00 IVIP por 1.000,00 IVIPAY" + }, + "revision": "50155b6e4291481280e6633b", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1685666780649/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685666780649, + "acquirer_reference": "", + "verification_code": 1685666780649, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "abf8f9b2c65840589181cf33", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1685666780649", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1685666780649, + "date_created": { + "type": 6, + "value": 1685666780649 + }, + "date_last_updated": { + "type": 6, + "value": 1685666780649 + }, + "date_of_expiration": { + "type": 6, + "value": 1688258780649 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685666780649 + }, + "revision": "8a08172a685445a4ae989c81", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1685666780649/description", + "content": { + "type": 5, + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", + "revision": "cbd3102ff46c45d8a014b015", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688400356570/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688400356570, + "acquirer_reference": "", + "verification_code": 1688400356570, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "e61aa710371b42b69371fc1b", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688400356570", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": 1688400356570, + "date_created": { + "type": 6, + "value": 1688400356570 + }, + "date_last_updated": { + "type": 6, + "value": 1688400356570 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400356570 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688400356570, + "wasDebited": true + }, + "revision": "8d3f965bf73241b4aeab2b3e", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688400356570/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", + "revision": "7da5305808984f65af70d0df", + "revision_nr": 1, + "created": 1702563036360, + "modified": 1702563036360 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688402757097/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "70815b226809461cb9643fb5", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688402757097", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 9770000, + "total_amount": 9770000, + "history_id": 1688402757097, + "id": 1688402757097, + "date_created": { + "type": 6, + "value": 1688402757097 + }, + "date_last_updated": { + "type": 6, + "value": 1688502811967 + }, + "date_of_expiration": { + "type": 6, + "value": 1688402757097 + }, + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1688502811967 + }, + "money_release_date": { + "type": 6, + "value": 1688502811967 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "0da487130dca421a9d602738", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688402757097/description", + "content": { + "type": 5, + "value": "Saque de 9.770.000,00 IVIP para a carteira 0xB33c611edEE4ac91638b50464CB3bfd488551499", + "revision": "31df1671e1f74eea9bcbe3aa", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history", + "content": { + "type": 1, + "value": {}, + "revision": "783cd78dffd44cf289492288", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "5419408199074379b0b50e5e", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 3000, + "limitUsed": 0, + "analysisRequested": { + "type": 6, + "value": 1680628575345 + }, + "lastReview": { + "type": 6, + "value": 1680978371033 + } + }, + "revision": "6a3fcdf39d9444fea1e21983", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678330009291, + "dateValidity": 1678662517584, + "totalValue": 0.17, + "currencyType": "BRL", + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } + }, + "revision": "d519982f40be4993946e13e3", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "32771309.00000000", + "symbol": "IVIP", + "value": 4296.45 + }, + "revision": "514d1361a04f447899df4dc9", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/balances", + "content": { + "type": 1, + "value": {}, + "revision": "92cb9e30a4564cbea92d0f7b", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678148520442/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "8e8769a47ef647758e11a68d", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678148520442", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 4000, + "total_amount": 4000, + "history_id": 1678148520442, + "id": 1678148520442, + "date_created": { + "type": 6, + "value": 1678148520442 + }, + "date_last_updated": { + "type": 6, + "value": 1678205053026 + }, + "date_of_expiration": { + "type": 6, + "value": 1680740520442 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678205053026 + }, + "money_release_date": { + "type": 6, + "value": 1678205053026 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "c25ca3f7fdb644c6873be8c0", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678148520442/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84", + "revision": "c224b96292394125949aa134", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678207899775/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678207899775, + "acquirer_reference": "", + "verification_code": 1678207899775, + "net_received_amount": 0, + "total_paid_amount": 4000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "4bdede7ebd6e455fb0ad54d6", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678207899775", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 28376575, + "total_amount": 28376575, + "id": 1678207899775, + "date_created": { + "type": 6, + "value": 1678207899775 + }, + "date_last_updated": { + "type": 6, + "value": 1678207899775 + }, + "date_of_expiration": { + "type": 6, + "value": 1678207899775 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678207899775, + "description": "Compra de 28376575 IVIP por 4000 BRL" + }, + "revision": "3f4805866d144346a75c69e9", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022785271/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "1c4b8461d02043cc9ad09b92", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022785271", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 4000, + "total_amount": 4000, + "history_id": 1689022785271, + "id": 1689022785271, + "date_created": { + "type": 6, + "value": 1689022785271 + }, + "date_last_updated": { + "type": 6, + "value": 1689023489899 + }, + "date_of_expiration": { + "type": 6, + "value": 1691614785271 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689023489899 + }, + "money_release_date": { + "type": 6, + "value": 1689023489899 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "99587f4ec53444aea70a7fc7", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022785271/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84", + "revision": "ec85f8dcdce74d86bac9690a", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022932520/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "27ee33d88c154e7b882ebe2a", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022932520", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 4000, + "total_amount": 4000, + "history_id": 1689022932520, + "id": 1689022932520, + "date_created": { + "type": 6, + "value": 1689022932520 + }, + "date_last_updated": { + "type": 6, + "value": 1689022932520 + }, + "date_of_expiration": { + "type": 6, + "value": 1691614932520 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "e6c1c2242411439080a6ed0f", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022932520/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84", + "revision": "82592ee40cc34ab5b2dd8ab8", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689025604196/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689025604196, + "acquirer_reference": "", + "verification_code": 1689025604196, + "net_received_amount": 0, + "total_paid_amount": 4000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "54f7a1582fa244999f061fec", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689025604196", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 3621314, + "total_amount": 3621314, + "id": 1689025604196, + "date_created": { + "type": 6, + "value": 1689025604196 + }, + "date_last_updated": { + "type": 6, + "value": 1689025604196 + }, + "date_of_expiration": { + "type": 6, + "value": 1689025604196 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689025604196, + "description": "Compra de 3.621.314,00 IVIP por 4.000,00 BRL" + }, + "revision": "67c6f8b4d5dd4e2fb9acb0ea", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689196978297/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "caeb83848bf24ccdb6640046", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689196978297", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "history_id": 1689196978297, + "id": 1689196978297, + "date_created": { + "type": 6, + "value": 1689196978297 + }, + "date_last_updated": { + "type": 6, + "value": 1689257573443 + }, + "date_of_expiration": { + "type": 6, + "value": 1691788978297 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689257573443 + }, + "money_release_date": { + "type": 6, + "value": 1689257573443 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "f0c56b9b28ad410f87c32ec3", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689196978297/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0454.0726.5934.5405-84", + "revision": "28212ab6fe664e84bb06cae4", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689258784601/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689258784601, + "acquirer_reference": "", + "verification_code": 1689258784601, + "net_received_amount": 0, + "total_paid_amount": 2000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "2acc0ba2ffd540bdae6cd290", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689258784601", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 773420, + "total_amount": 773420, + "id": 1689258784601, + "date_created": { + "type": 6, + "value": 1689258784601 + }, + "date_last_updated": { + "type": 6, + "value": 1689258784601 + }, + "date_of_expiration": { + "type": 6, + "value": 1689258784601 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689258784601, + "description": "Compra de 773.420,00 IVIP por 2.000,00 BRL" + }, + "revision": "b336ac1390ab4b4c8da7c003", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history", + "content": { + "type": 1, + "value": {}, + "revision": "9fcfc0758abf4c8099326f64", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "d14010754539444b91eef5e1", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "6eacb127984d494fbdb9aabc", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678132398712, + "dateValidity": 1678671560774, + "totalValue": 7620.23, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } + }, + "revision": "e38d19c5d52d4b749a89fef2", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045642520706235200/balances", + "content": { + "type": 1, + "value": {}, + "revision": "043316f4d26445088a48c05d", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045642520706235200/history", + "content": { + "type": 1, + "value": {}, + "revision": "3f75e66ba828465da399c1b9", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045642520706235200", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678565263127, + "dateValidity": 1678579663168, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "e5623aebe3e340e3b157330b", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/046564008100064220/balances", + "content": { + "type": 1, + "value": {}, + "revision": "5b532ab15d114069b713270c", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/046564008100064220/history", + "content": { + "type": 1, + "value": {}, + "revision": "d95c218f4e934f2d9aba5575", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/046564008100064220/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "0b624044673f43fa9569cfb7", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/046564008100064220/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "86e070ddfcdd488ca5115c13", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/046564008100064220", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696462399261, + "dateValidity": 1696462399357, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697166000000 + } + }, + "revision": "713497af5f9247728dc0e186", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047633761232259040/balances", + "content": { + "type": 1, + "value": {}, + "revision": "717e08ca411a41778426eda5", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047633761232259040/history", + "content": { + "type": 1, + "value": {}, + "revision": "d4ee731f39034ed59c23e1af", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047633761232259040", + "content": { + "type": 1, + "value": { + "dataModificacao": 1692582136079, + "dateValidity": 1692582136128, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1692500400000 + } + }, + "revision": "1fd553d0452a41c89a02c96e", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "8588955.54000000", + "symbol": "IVIP", + "value": 4678.3 + }, + "revision": "0a96406ad2244bd38489d5c1", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/balances", + "content": { + "type": 1, + "value": {}, + "revision": "946703435d9e4a1fb586f819", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1683569771704/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "d301fe26eaa3471a93ca15e1", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1683569771704", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 5000, + "total_amount": 5000, + "history_id": 1683569771704, + "id": 1683569771704, + "date_created": { + "type": 6, + "value": 1683569771704 + }, + "date_last_updated": { + "type": 6, + "value": 1683570873225 + }, + "date_of_expiration": { + "type": 6, + "value": 1686161771704 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683570873225 + }, + "money_release_date": { + "type": 6, + "value": 1683570873225 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "3432f7ca7c254ff5aa27cc46", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1683569771704/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 5.000,00 para a carteira iVip 0479.2557.7230.6628-20", + "revision": "e67f17ca26f7461db92538db", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1684018936403/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684018936403, + "acquirer_reference": "", + "verification_code": 1684018936403, + "net_received_amount": 0, + "total_paid_amount": 5000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "4b12fd11a86d4342b4fcadc9", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1684018936403", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 27021960, + "total_amount": 27021960, + "id": 1684018936403, + "date_created": { + "type": 6, + "value": 1684018936403 + }, + "date_last_updated": { + "type": 6, + "value": 1684018936403 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018936403 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684018936403, + "description": "Compra de 27.021.960,00 IVIP por 5.000,00 BRL" + }, + "revision": "8f4cb6b7c23b4d588bf4bcf2", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688531798249/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688531798249, + "acquirer_reference": "", + "verification_code": 1688531798249, + "net_received_amount": 0, + "total_paid_amount": 7668365, + "overpaid_amount": 0, + "installment_amount": 7668365, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "8178256af5bd4f04951aa3f4", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688531798249", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 7668365, + "total_amount": 7668365, + "id": 1688531798249, + "date_created": { + "type": 6, + "value": 1688531798249 + }, + "date_last_updated": { + "type": 6, + "value": 1688531798249 + }, + "date_of_expiration": { + "type": 6, + "value": 1691210198249 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688531798249, + "wasDebited": true + }, + "revision": "82ef15af43734056aeecbe94", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688531798249/description", + "content": { + "type": 5, + "value": "Investimento de 7.668.365,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023", + "revision": "991cfef2c9ac4d0cb0c286bf", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688647483933/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "b0e4b31d8df84f87ab7ba2f4", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688647483933", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "history_id": 1688647483933, + "id": 1688647483933, + "date_created": { + "type": 6, + "value": 1688647483933 + }, + "date_last_updated": { + "type": 6, + "value": 1688767276048 + }, + "date_of_expiration": { + "type": 6, + "value": 1691239483933 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1688767276048 + }, + "money_release_date": { + "type": 6, + "value": 1688767276048 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "74ed2a36c05848a1be98549d", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688647483933/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0479.2557.7230.6628-20", + "revision": "d86200c4b218463a9f08f778", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688771723408/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688771723408, + "acquirer_reference": "", + "verification_code": 1688771723408, + "net_received_amount": 0, + "total_paid_amount": 500, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "dc67d7cf71f542c3949a107e", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688771723408", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 823634, + "total_amount": 823634, + "id": 1688771723408, + "date_created": { + "type": 6, + "value": 1688771723408 + }, + "date_last_updated": { + "type": 6, + "value": 1688771723408 + }, + "date_of_expiration": { + "type": 6, + "value": 1688771723408 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688771723408, + "description": "Compra de 823.634,00 IVIP por 500,00 BRL" + }, + "revision": "4ea63c029b7846aabf5016b9", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689021558105/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "8afbd73b91214fbfbcf08631", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689021558105", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1689021558105, + "id": 1689021558105, + "date_created": { + "type": 6, + "value": 1689021558105 + }, + "date_last_updated": { + "type": 6, + "value": 1689023222567 + }, + "date_of_expiration": { + "type": 6, + "value": 1691613558105 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689023222567 + }, + "money_release_date": { + "type": 6, + "value": 1689023222567 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "26664a069e8446438a7c16a3", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689021558105/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0479.2557.7230.6628-20", + "revision": "34e7a91521214eff99dd3651", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689023394597/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689023394597, + "acquirer_reference": "", + "verification_code": 1689023394597, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "b98fa793838e49299da9a7ac", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689023394597", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 914949, + "total_amount": 914949, + "id": 1689023394597, + "date_created": { + "type": 6, + "value": 1689023394597 + }, + "date_last_updated": { + "type": 6, + "value": 1689023394597 + }, + "date_of_expiration": { + "type": 6, + "value": 1689023394597 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689023394597, + "description": "Compra de 914.949,00 IVIP por 1.000,00 BRL" + }, + "revision": "b7ba1bf6bb5d429384520d36", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689248290301/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "7ef74d0d51ea49158bb66e48", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689248290301", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1689248290301, + "id": 1689248290301, + "date_created": { + "type": 6, + "value": 1689248290301 + }, + "date_last_updated": { + "type": 6, + "value": 1689256767203 + }, + "date_of_expiration": { + "type": 6, + "value": 1691840290301 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689256767203 + }, + "money_release_date": { + "type": 6, + "value": 1689256767203 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "48021f2dd26a4d1c894bca0b", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689248290301/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0479.2557.7230.6628-20", + "revision": "cacd840ed27247ea9354fafe", + "revision_nr": 1, + "created": 1702563036361, + "modified": 1702563036361 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689260053657/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689260053657, + "acquirer_reference": "", + "verification_code": 1689260053657, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "340cf29f7b9848c696d817bf", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689260053657", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 381522, + "total_amount": 381522, + "id": 1689260053657, + "date_created": { + "type": 6, + "value": 1689260053657 + }, + "date_last_updated": { + "type": 6, + "value": 1689260053657 + }, + "date_of_expiration": { + "type": 6, + "value": 1689260053657 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689260053657, + "description": "Compra de 381.522,00 IVIP por 1.000,00 BRL" + }, + "revision": "5f675381c4944863aec1c579", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689301547038/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689301547038, + "acquirer_reference": "", + "verification_code": 1689301547038, + "net_received_amount": 0, + "total_paid_amount": 5008550, + "overpaid_amount": 0, + "installment_amount": 5008550, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "4d27af042304486fa9312730", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689301547038", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 5008550, + "total_amount": 5008550, + "id": 1689301547038, + "date_created": { + "type": 6, + "value": 1689301547038 + }, + "date_last_updated": { + "type": 6, + "value": 1689301547038 + }, + "date_of_expiration": { + "type": 6, + "value": 1752459947038 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689301547038 + }, + "revision": "8d3c5f8106c44cb1b264294a", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689301547038/description", + "content": { + "type": 5, + "value": "Investimento de 5.008.550,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/13/2025", + "revision": "0dfcc6c627c841d9a3f48b90", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689355287691/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "85702c98055a488e9f8da0d7", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689355287691", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "history_id": 1689355287691, + "id": 1689355287691, + "date_created": { + "type": 6, + "value": 1689355287691 + }, + "date_last_updated": { + "type": 6, + "value": 1689356136387 + }, + "date_of_expiration": { + "type": 6, + "value": 1691947287691 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689356136387 + }, + "money_release_date": { + "type": 6, + "value": 1689356136387 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "a9f5dfcdea3441c8bdef4913", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689355287691/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0479.2557.7230.6628-20", + "revision": "de87df068f9e4d238a1042c5", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689356922364/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689356922364, + "acquirer_reference": "", + "verification_code": 1689356922364, + "net_received_amount": 0, + "total_paid_amount": 2000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "4a65ba42b30246059477d8dc", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689356922364", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1235586, + "total_amount": 1235586, + "id": 1689356922364, + "date_created": { + "type": 6, + "value": 1689356922364 + }, + "date_last_updated": { + "type": 6, + "value": 1689356922364 + }, + "date_of_expiration": { + "type": 6, + "value": 1689356922364 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689356922364, + "description": "Compra de 1.235.586,00 IVIP por 2.000,00 BRL" + }, + "revision": "95d7e1b04aa04021996cfeca", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692459787113 + } + }, + "revision": "ec65a9f742074eb4937f1af0", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1689867787119, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 3000, + "installment_amount": 3000, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "f759373ad5f24829b4aa862d", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/extract/047925577230662820/order/1689867787113", + "revision": "fe06590e91c64d9ab859a7a6", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "", + "original_amount": 3000, + "total_amount": 3000, + "id": 1689867787119, + "history_id": 1689867787119, + "date_created": { + "type": 6, + "value": 1689867787119 + }, + "date_last_updated": { + "type": 6, + "value": 1689867787119 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "71db612e4262421b83ac9e73", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0479.2557.7230.6628-20", + "revision": "c6ba9b56ae94422eb1272a14", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692534311952 + } + }, + "revision": "e8884acc7fdb4670ac177e89", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1689942311952, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 3000, + "installment_amount": 3000, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "f305d006b98e43b4916b0fa3", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1689942311952", + "revision": "4901c23e9e1c495bbb913807", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 3000, + "total_amount": 3000, + "id": 1689942311952, + "history_id": 1689942311952, + "date_created": { + "type": 6, + "value": 1689942311952 + }, + "date_last_updated": { + "type": 6, + "value": 1689942338759 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1689942338759 + }, + "money_release_date": { + "type": 6, + "value": 1689942338759 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "00f97e32977d4bbda441be40", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0479.2557.7230.6628-20", + "revision": "55e7dbd4fd114725bb1f9654", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942442311/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689942442311, + "acquirer_reference": "", + "verification_code": 1689942442311, + "net_received_amount": 0, + "total_paid_amount": 3000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "9b8e72da9e66414fbf91e7cb", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942442311", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1849758, + "total_amount": 1849758, + "id": 1689942442311, + "date_created": { + "type": 6, + "value": 1689942442311 + }, + "date_last_updated": { + "type": 6, + "value": 1689942442311 + }, + "date_of_expiration": { + "type": 6, + "value": 1689942442311 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689942442311, + "description": "Compra de 1.849.758,00 IVIP por 3.000,00 BRL" + }, + "revision": "d895f59d5481412dac25b7a8", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693792496983 + } + }, + "revision": "18ce4e9c6f1b4f799da708bf", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691200496984, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2000, + "installment_amount": 2000, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "d24352ececb34336a9cbb056", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691200496984", + "revision": "03c74be245774124954510c7", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "id": 1691200496984, + "history_id": 1691200496984, + "date_created": { + "type": 6, + "value": 1691200496984 + }, + "date_last_updated": { + "type": 6, + "value": 1691200496984 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "a437d1354f3a47918c1dc087", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984/description", + "content": { + "type": 5, + "value": "Deposito de um valor 2.000,00 para a carteira iVip 0479.2557.7230.6628-20", + "revision": "604eb07ea32241ff941b4fc1", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691214286883/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691214286883, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 7821732.3, + "installment_amount": 7821732.3, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "2761ed88369345a4a0fc9876", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691214286883/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691214286883", + "revision": "3b47703d0db141518ec17a97", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691214286883", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 7821732.3, + "total_amount": 7821732.3, + "id": 1691214286883, + "history_id": 1691214286883, + "date_created": { + "type": 6, + "value": 1691214286883 + }, + "date_last_updated": { + "type": 6, + "value": 1691214286883 + }, + "date_of_expiration": { + "type": 6, + "value": 1691214286883 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "97fab7cb839546fe8659fbab", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691214286883/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 7.668.365,00 IVIP com um rendimento de +153.367,3 IVIP (2,00%)", + "revision": "c7bd0facf3114e53877ad837", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693845025281 + } + }, + "revision": "38495694133443e784138362", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691253025281, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1500, + "installment_amount": 1500, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "d6023c3cb03249c681040dd8", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691253025281", + "revision": "f614524897414a6baed908aa", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "id": 1691253025281, + "history_id": 1691253025281, + "date_created": { + "type": 6, + "value": 1691253025281 + }, + "date_last_updated": { + "type": 6, + "value": 1691253214508 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1691253214508 + }, + "money_release_date": { + "type": 6, + "value": 1691253214508 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "a7e47f3b2a934c83bb53d1ff", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281/description", + "content": { + "type": 5, + "value": "Deposito de um valor 1.500,00 para a carteira iVip 0479.2557.7230.6628-20", + "revision": "e4727939425743ac81e20e8d", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691280221861/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691280221861, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1500, + "installment_amount": 1500, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "840b0a6627454704988b76d4", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691280221861/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691280221861", + "revision": "2879849db4ea46b4884f0c5f", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691280221861", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 2127119, + "total_amount": 2127119, + "id": 1691280221861, + "history_id": 1691280221861, + "date_created": { + "type": 6, + "value": 1691280221861 + }, + "date_last_updated": { + "type": 6, + "value": 1691280221861 + }, + "date_of_expiration": { + "type": 6, + "value": 1691280221861 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 2.127.119,00 IVIP por 1.500,00 BRL", + "status_detail": "accredited" + }, + "revision": "7ccae109cca44057ad252b40", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691283205891/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691283205891, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 7769562, + "installment_amount": 7769562, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "e98eec943a904d96a1f66d44", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691283205891/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691283205891", + "revision": "b9851ff8376d4f20af50bf87", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691283205891", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 7769562, + "total_amount": 7769562, + "id": 1691283205891, + "history_id": 1691283205891, + "date_created": { + "type": 6, + "value": 1691283205891 + }, + "date_last_updated": { + "type": 6, + "value": 1691283205891 + }, + "date_of_expiration": { + "type": 6, + "value": 1693961605891 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "30f7c8ab49214dcfa68bad5c", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691283205891/description", + "content": { + "type": 5, + "value": "Investimento de 7.769.562,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023", + "revision": "8f03ac46ad984858b108c1c7", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962455688/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693962455688, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 7769562, + "installment_amount": 7769562, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "a4d8de39ef234f89a13c95af", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962455688/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1693962455688", + "revision": "ee7a6fdaa9924218b3bb5d30", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962455688", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 7924953.24, + "total_amount": 7924953.24, + "id": "1693962455688", + "history_id": "1693962455688", + "date_created": { + "type": 6, + "value": 1693962455688 + }, + "date_last_updated": { + "type": 6, + "value": 1693962455688 + }, + "date_of_expiration": { + "type": 6, + "value": 1693962455688 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "494b661e11114bba83b920cc", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962455688/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 7.769.562,00 IVIP com um rendimento de +155.391,24 IVIP (2,00%) - Y12XDT27", + "revision": "87f486bb784e408fa5388880", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962525967/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693962525967, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 7931475, + "installment_amount": 7931475, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "203925dac28f46bfabe53950", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962525967/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1693962525967", + "revision": "0b35b68c355044ddba3be37f", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962525967", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 7931475, + "total_amount": 7931475, + "id": "1693962525967", + "history_id": "1693962525967", + "date_created": { + "type": 6, + "value": 1693962525967 + }, + "date_last_updated": { + "type": 6, + "value": 1696424642602 + }, + "date_of_expiration": { + "type": 6, + "value": 1696554525967 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_staked_amount", + "money_release_date": { + "type": 6, + "value": 1696424642602 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "fafe43952bf24e80af582f3a", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962525967/description", + "content": { + "type": 5, + "value": "Investimento de 7.931.475,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", + "revision": "bdc222ecd16046c59badc50c", + "revision_nr": 1, + "created": 1702563036362, + "modified": 1702563036362 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695167532103/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695167532103, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 19942224, + "installment_amount": 19942224, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "e7d4378aa730489185458f44", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695167532103/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1695167532103", + "revision": "9bd475c6cd38457fb9cbd8f2", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695167532103", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 19942224, + "total_amount": 19942224, + "id": "1695167532103", + "history_id": "1695167532103", + "date_created": { + "type": 6, + "value": 1695167532103 + }, + "date_last_updated": { + "type": 6, + "value": 1695678287175 + }, + "date_of_expiration": { + "type": 6, + "value": 1710892332102 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_staked_amount", + "money_release_date": { + "type": 6, + "value": 1695678287175 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "2792442f8ca241cebaf13d19", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695167532103/description", + "content": { + "type": 5, + "value": "Investimento de 19.942.224,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H", + "revision": "7af9523eb07e4504b89bea17", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 30 + }, + "revision": "7512397587f943888b50df65", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695956035041, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "d6f2217093ff404ea08b27bd", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1695956035041", + "revision": "8613a4c1b22641069afb4f79", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "6eb5544e5e3b42308d3d369e", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "047925577230662820", + "payment_method": "transfer", + "original_amount": 1000, + "total_amount": 970, + "id": "1695956035041", + "history_id": "1695956035041", + "date_created": { + "type": 6, + "value": 1695956035041 + }, + "date_last_updated": { + "type": 6, + "value": 1696292637561 + }, + "date_of_expiration": { + "type": 6, + "value": 1695956035041 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": { + "type": 6, + "value": 1696292637561 + }, + "money_release_date": { + "type": 6, + "value": 1696292637561 + }, + "money_release_status": "drawee", + "wasDebited": true + }, + "revision": "95c99f628a144c249af0a9ba", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/description", + "content": { + "type": 5, + "value": "Saque de 970,00 IVIP para a carteira 0x24f07CBa773a4bF9373E50A5694BAb23E5eF5557", + "revision": "678d2ffff31047e396ea8a6b", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 651697.8461999999 + }, + "revision": "5b8916e8bf1e4f36aabec33a", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696003948025, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 21723261.54, + "installment_amount": 21723261.54, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "3d41c48c1d784a93a16a8394", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696003948025", + "revision": "ab3499697bb24c65b60be449", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "01a1a8178bce405a9f233a70", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "047925577230662820", + "payment_method": "transfer", + "original_amount": 21723261.54, + "total_amount": 21071563.6938, + "id": "1696003948025", + "history_id": "1696003948025", + "date_created": { + "type": 6, + "value": 1696003948025 + }, + "date_last_updated": { + "type": 6, + "value": 1696292793604 + }, + "date_of_expiration": { + "type": 6, + "value": 1696003948025 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_other_reason", + "date_approved": { + "type": 6, + "value": 1696292793604 + }, + "money_release_date": { + "type": 6, + "value": 1696292793604 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "b4b59e08f2d84e6f9c70cb1e", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/description", + "content": { + "type": 5, + "value": "Saque de 21.071.563,69 IVIP para a carteira 0x24f07CBa773a4bF9373E50A5694BAb23E5eF5557", + "revision": "4a564130802d47b487b7d142", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 304593.12 + }, + "revision": "bfd8c05eafa74496855aa01b", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696207958470, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 10153104, + "installment_amount": 10153104, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "560e549ef751441faf015740", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696207958470", + "revision": "a4845bfbfdda498ca9bc70fe", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "a3ca25a4720f4384a832364f", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "047925577230662820", + "payment_method": "transfer", + "original_amount": 10153104, + "total_amount": 9848510.88, + "id": "1696207958470", + "history_id": "1696207958470", + "date_created": { + "type": 6, + "value": 1696207958470 + }, + "date_last_updated": { + "type": 6, + "value": 1696293727841 + }, + "date_of_expiration": { + "type": 6, + "value": 1696207958470 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_account_contains_debit_balance", + "money_release_date": { + "type": 6, + "value": 1696293727841 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "53422eb83fae452da5bb8893", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/description", + "content": { + "type": 5, + "value": "Saque de 9.848.510,88 IVIP para a carteira 0x8de82EE9234B9dF85A4CBc083E49A0B8Db0D4aD1", + "revision": "b4a0be77176c47dcbf58cd97", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 600892.0499999999 + }, + "revision": "03e5af5a8b7b42c8946d9d24", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696471625534, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20029735, + "installment_amount": 20029735, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "28cf4c713cdd4980b579cd42", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471625534", + "revision": "86a7a60e04be4743a11e1d84", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "74e9c98cf93947b1a3fad7b7", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "047925577230662820", + "payment_method": "transfer", + "original_amount": 20029735, + "total_amount": 19428842.95, + "id": "1696471625534", + "history_id": "1696471625534", + "date_created": { + "type": 6, + "value": 1696471625534 + }, + "date_last_updated": { + "type": 6, + "value": 1696475012296 + }, + "date_of_expiration": { + "type": 6, + "value": 1696471625534 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": { + "type": 6, + "value": 1696475012296 + }, + "money_release_date": { + "type": 6, + "value": 1696475012296 + }, + "money_release_status": "drawee", + "wasDebited": true + }, + "revision": "1caabfd43a2c4e989c81d7c5", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/description", + "content": { + "type": 5, + "value": "Saque de 19.428.842,95 IVIP para a carteira 0x8de82EE9234B9dF85A4CBc083E49A0B8Db0D4aD1", + "revision": "5235238aa1164bbd8920ff6a", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471870838/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696471870838, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 7931207, + "installment_amount": 7931207, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "1ad2d7166dd94049b452825c", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471870838/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471870838", + "revision": "9c54e222770e48628f55fcb9", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471870838", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "047925577230662820", + "payment_method": "staking", + "original_amount": 7931207, + "total_amount": 7931207, + "id": "1696471870838", + "history_id": "1696471870838", + "date_created": { + "type": 6, + "value": 1696471870838 + }, + "date_last_updated": { + "type": 6, + "value": 1696471870838 + }, + "date_of_expiration": { + "type": 6, + "value": 1699150270607 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_call_for_authorize" + }, + "revision": "bc0bf628a760404c83c314f0", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471870838/description", + "content": { + "type": 5, + "value": "Investimento de 7.931.207,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", + "revision": "30440c00d7ec4f78a3017b62", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471977293/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696471977293, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1035046, + "installment_amount": 1035046, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "29907b9091dc4766a2d049b6", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471977293/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471977293", + "revision": "e713b360737647568eb6011f", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471977293", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "047925577230662820", + "payment_method": "staking", + "original_amount": 1035046, + "total_amount": 1035046, + "id": "1696471977293", + "history_id": "1696471977293", + "date_created": { + "type": 6, + "value": 1696471977293 + }, + "date_last_updated": { + "type": 6, + "value": 1696471977293 + }, + "date_of_expiration": { + "type": 6, + "value": 1699150377200 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "5befc048f517442c97de8c7a", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471977293/description", + "content": { + "type": 5, + "value": "Investimento de 1.035.046,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", + "revision": "3667af2734bc4ad3a6ea3bb2", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history", + "content": { + "type": 1, + "value": {}, + "revision": "a43a5f65fa5c4ad79c99ac05", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "1c119d2d6308448b9e1941a2", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "analysisRequested": { + "type": 6, + "value": 1695957287898 + } + }, + "revision": "03fd2a3d9d344e7d8e27b21e", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820", + "content": { + "type": 1, + "value": { + "dataModificacao": 1683569670949, + "dateValidity": 1683569670949, + "totalValue": 48201.8, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } + }, + "revision": "1677087ef56142478a5b0cdb", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/049717311460128590/balances", + "content": { + "type": 1, + "value": {}, + "revision": "4317d1dcb15e4d7ca4653930", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/049717311460128590/history", + "content": { + "type": 1, + "value": {}, + "revision": "bf088e9fc47445549b7ada01", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/049717311460128590", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678063274590, + "dateValidity": 1678170667714, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "109a23457a194052820666f4", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "1392927.00000000", + "symbol": "IVIP", + "value": 149.3 + }, + "revision": "33f907ba415f4939af45d115", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/balances", + "content": { + "type": 1, + "value": {}, + "revision": "186c7c3c2afd43bbb4af8257", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232470571/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "0f332850348d4e9eacbb538a", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232470571", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 300, + "total_amount": 300, + "history_id": 1679232470571, + "id": 1679232470571, + "date_created": { + "type": 6, + "value": 1679232470571 + }, + "date_last_updated": { + "type": 6, + "value": 1679266576805 + }, + "date_of_expiration": { + "type": 6, + "value": 1681824470571 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679266576805 + }, + "money_release_date": { + "type": 6, + "value": 1679266576805 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "850ce439f07946719df6e411", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232470571/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50", + "revision": "63481a6a8c214f87824adb8d", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232566671/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "3b5fa5222eb2420688e589f3", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232566671", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 300, + "total_amount": 300, + "history_id": 1679232566671, + "id": 1679232566671, + "date_created": { + "type": 6, + "value": 1679232566671 + }, + "date_last_updated": { + "type": 6, + "value": 1679232566671 + }, + "date_of_expiration": { + "type": 6, + "value": 1681824566671 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "f9f726e462a743b7a16c57c7", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232566671/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50", + "revision": "a28c776d6df347d8a571529c", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679871668854/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679871668854, + "acquirer_reference": "", + "verification_code": 1679871668854, + "net_received_amount": 0, + "total_paid_amount": 300, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "920120ede3644c56b2dc5035", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679871668854", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1597688, + "total_amount": 1597688, + "id": 1679871668854, + "date_created": { + "type": 6, + "value": 1679871668854 + }, + "date_last_updated": { + "type": 6, + "value": 1679871668854 + }, + "date_of_expiration": { + "type": 6, + "value": 1679871668854 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679871668854, + "description": "Compra de 1.597.688,00 IVIP por 300,00 BRL" + }, + "revision": "a76d546dd18240e7bd260ad6", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684190255075/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "5ddec9921e97471bbb10e8c5", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684190255075", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 300, + "total_amount": 300, + "history_id": 1684190255075, + "id": 1684190255075, + "date_created": { + "type": 6, + "value": 1684190255075 + }, + "date_last_updated": { + "type": 6, + "value": 1684239076762 + }, + "date_of_expiration": { + "type": 6, + "value": 1686782255075 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684239076762 + }, + "money_release_date": { + "type": 6, + "value": 1684239076762 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "8301fcc2fe474156af9d52f6", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684190255075/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50", + "revision": "2aebc11ab6004079bc89449e", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684624205744/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624205744, + "acquirer_reference": "", + "verification_code": 1684624205744, + "net_received_amount": 0, + "total_paid_amount": 300, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "a3172a4fbb124452a5791326", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684624205744", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1461219, + "total_amount": 1461219, + "id": 1684624205744, + "date_created": { + "type": 6, + "value": 1684624205744 + }, + "date_last_updated": { + "type": 6, + "value": 1684624205744 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624205744 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624205744, + "description": "Compra de 1.461.219,00 IVIP por 300,00 BRL" + }, + "revision": "cce8b40c8d954155a09f1c6e", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353262267/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686353262267, + "acquirer_reference": "", + "verification_code": 1686353262267, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "60ecb51025f54eb695fb4074", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353262267", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1686353262267, + "date_created": { + "type": 6, + "value": 1686353262267 + }, + "date_last_updated": { + "type": 6, + "value": 1686353262267 + }, + "date_of_expiration": { + "type": 6, + "value": 1688945262267 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686353262267, + "wasDebited": true + }, + "revision": "4301d065aa3e4996ae2d1afa", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353262267/description", + "content": { + "type": 5, + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/9/2023", + "revision": "a0dec8d08e5e43f18883cb80", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353693526/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686353693526, + "acquirer_reference": "", + "verification_code": 1686353693526, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "f8d3087e2edc4ff3a602206f", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353693526", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1686353693526, + "date_created": { + "type": 6, + "value": 1686353693526 + }, + "date_last_updated": { + "type": 6, + "value": 1686353693526 + }, + "date_of_expiration": { + "type": 6, + "value": 1702164893526 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686353693526, + "wasDebited": true + }, + "revision": "5df7e12d93474cf3b8477191", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353693526/description", + "content": { + "type": 5, + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/9/2023", + "revision": "cdeaa79219a14189a342a3b5", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686657739276/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686657739276, + "acquirer_reference": "", + "verification_code": 1686657739276, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "850d9d6269944781adbe333c", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686657739276", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1686657739276, + "date_created": { + "type": 6, + "value": 1686657739276 + }, + "date_last_updated": { + "type": 6, + "value": 1686657739276 + }, + "date_of_expiration": { + "type": 6, + "value": 1718280139276 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686657739276 + }, + "revision": "ac1f99635f814ef6b7b5fab5", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686657739276/description", + "content": { + "type": 5, + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/13/2024", + "revision": "91be9c9e8b464a16a9484d48", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363201264/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687363201264, + "acquirer_reference": "", + "verification_code": 1687363201264, + "net_received_amount": 0, + "total_paid_amount": 500000, + "overpaid_amount": 0, + "installment_amount": 500000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "409243dc9d4c407485710a09", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363201264", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 500000, + "total_amount": 500000, + "id": 1687363201264, + "date_created": { + "type": 6, + "value": 1687363201264 + }, + "date_last_updated": { + "type": 6, + "value": 1687363201264 + }, + "date_of_expiration": { + "type": 6, + "value": 1718985601264 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687363201264 + }, + "revision": "40dd392d09fd4805b74ec98e", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363201264/description", + "content": { + "type": 5, + "value": "Investimento de 500.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2024", + "revision": "0e96ac32a61e4948ac41f75d", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363301418/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687363301418, + "acquirer_reference": "", + "verification_code": 1687363301418, + "net_received_amount": 0, + "total_paid_amount": 1000000, + "overpaid_amount": 0, + "installment_amount": 1000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "213dc4a5b74b4bf187ec1769", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363301418", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000000, + "total_amount": 1000000, + "id": 1687363301418, + "date_created": { + "type": 6, + "value": 1687363301418 + }, + "date_last_updated": { + "type": 6, + "value": 1687363301418 + }, + "date_of_expiration": { + "type": 6, + "value": 1750521701418 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687363301418 + }, + "revision": "d4dc4acd4d504caa9223a9df", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363301418/description", + "content": { + "type": 5, + "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2025", + "revision": "1d0f07cec5f940d7aa5ea3d4", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1689804806407/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689804806407, + "acquirer_reference": "", + "verification_code": 1689804806407, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "79149595d83c487db5b6e7ba", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1689804806407", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1020, + "total_amount": 1020, + "id": 1689804806407, + "date_created": { + "type": 6, + "value": 1689804806407 + }, + "date_last_updated": { + "type": 6, + "value": 1689804806407 + }, + "date_of_expiration": { + "type": 6, + "value": 1689804806407 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689804806407, + "wasDebited": true + }, + "revision": "bebc9e5986d5401b8f19f879", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1689804806407/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%)", + "revision": "ea4fd78c702a4da789f93532", + "revision_nr": 1, + "created": 1702563036363, + "modified": 1702563036363 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1690414261722/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690414261722, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100000, + "installment_amount": 100000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "5676eeb03a92412cad0cca6f", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1690414261722/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1690414261722", + "revision": "66993c9a39774bf3a5d65dc2", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1690414261722", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 100000, + "total_amount": 100000, + "id": 1690414261722, + "history_id": 1690414261722, + "date_created": { + "type": 6, + "value": 1690414261722 + }, + "date_last_updated": { + "type": 6, + "value": 1690414261722 + }, + "date_of_expiration": { + "type": 6, + "value": 1693092661717 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "884bad0875b84845acea72ca", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1690414261722/description", + "content": { + "type": 5, + "value": "Investimento de 100.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/26/2023", + "revision": "0206a19c08ce4f1e94be99b1", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693093011374/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693093011374, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 102000, + "installment_amount": 102000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "14d1955005e64a5994a3710c", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693093011374/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693093011374", + "revision": "899184e24aec4747a7b56e01", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693093011374", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 100000, + "total_amount": 100000, + "id": "1693093011374", + "history_id": "1693093011374", + "date_created": { + "type": 6, + "value": 1693093011374 + }, + "date_last_updated": { + "type": 6, + "value": 1693093011374 + }, + "date_of_expiration": { + "type": 6, + "value": 1693093011374 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "229c41c358484bc18dac42a2", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693093011374/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 100.000,00 IVIP com um rendimento de +2.000,00 IVIP (2,00%)", + "revision": "23eb5e021b754247a46a07bb", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 3000 + }, + "revision": "8566db0d2d9d43869cbf8c98", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693173218030, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100000, + "installment_amount": 100000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "a0d6c82f04e844ddb511d74b", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693173218030", + "revision": "42a7b5b5c3ad4ebdab7169f6", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "a0319db4917a4168888c6277", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 100000, + "total_amount": 97000, + "id": "1693173218030", + "history_id": "1693173218030", + "date_created": { + "type": 6, + "value": 1693173218030 + }, + "date_last_updated": { + "type": 6, + "value": 1693863156578 + }, + "date_of_expiration": { + "type": 6, + "value": 1693173218030 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": { + "type": 6, + "value": 1693863156578 + }, + "money_release_date": { + "type": 6, + "value": 1693863156578 + }, + "money_release_status": "drawee", + "wasDebited": true + }, + "revision": "31c4bdfad4ec4c65a89e46e2", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/description", + "content": { + "type": 5, + "value": "Saque de 97.000,00 IVIP para a carteira 0x984b739d05a74462Ab9171EDF8Be5CDDa7fF8c26", + "revision": "056869464f4c4debbcee6976", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693228740965/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693228740965, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 800000, + "installment_amount": 800000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "13142370861542969a3d55f7", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693228740965/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693228740965", + "revision": "9c560c8e10d54536aa382cfd", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693228740965", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 800000, + "total_amount": 800000, + "id": "1693228740965", + "history_id": "1693228740965", + "date_created": { + "type": 6, + "value": 1693228740965 + }, + "date_last_updated": { + "type": 6, + "value": 1693228740965 + }, + "date_of_expiration": { + "type": 6, + "value": 1695907140964 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "27ed1b6fcfe74a2dae196bc3", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693228740965/description", + "content": { + "type": 5, + "value": "Investimento de 800.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/28/2023", + "revision": "b78f935282b1465f97f4ea51", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695907162897/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695907162897, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 800000, + "installment_amount": 800000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "7d4fef059b9f4e648dbc8df2", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695907162897/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1695907162897", + "revision": "745cff28234749f09da267f0", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695907162897", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "050149211466839150", + "payment_method": "staking", + "original_amount": 816000, + "total_amount": 816000, + "id": "1695907162897", + "history_id": "1695907162897", + "date_created": { + "type": 6, + "value": 1695907162897 + }, + "date_last_updated": { + "type": 6, + "value": 1695907162897 + }, + "date_of_expiration": { + "type": 6, + "value": 1695907162897 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "3cd089950e0d4ecaa6288393", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695907162897/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 800.000,00 IVIP com um rendimento de +16.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "e982d44a9bc84032ac6d7c07", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695925845472/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695925845472, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 80000, + "installment_amount": 80000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "ac5e19d2a6294b5fae6deb30", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695925845472/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1695925845472", + "revision": "6a43e25fe56b4a48b92de1e3", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695925845472", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "050149211466839150", + "payment_method": "staking", + "original_amount": 80000, + "total_amount": 80000, + "id": "1695925845472", + "history_id": "1695925845472", + "date_created": { + "type": 6, + "value": 1695925845472 + }, + "date_last_updated": { + "type": 6, + "value": 1695925845472 + }, + "date_of_expiration": { + "type": 6, + "value": 1698517845420 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "82e84d41386645aa911afb50", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695925845472/description", + "content": { + "type": 5, + "value": "Investimento de 80.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 28/10/2023 - Y12XDT27", + "revision": "70d6b179208b4f4d8f799615", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history", + "content": { + "type": 1, + "value": {}, + "revision": "b71bb71b0b8b4bf3bd4ee41f", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "91112efd947744b9988226c2", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "analysisRequested": { + "type": 6, + "value": 1695926116598 + } + }, + "revision": "64b4320ae4184b39ba26cb8e", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679096727973, + "dateValidity": 1679096727973, + "totalValue": 488.05285041642975, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697252400000 + } + }, + "revision": "f928b4b89e694a87bdbac2da", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "48500.00000000", + "symbol": "IVIP", + "value": 7.28 + }, + "revision": "97e3bd283a77436c9f39c3aa", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/balances", + "content": { + "type": 1, + "value": {}, + "revision": "7f2a1a15f6b7405892761a3b", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145412146/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "ed42655389494fa380c64e11", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145412146", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1678145412146, + "id": 1678145412146, + "date_created": { + "type": 6, + "value": 1678145412146 + }, + "date_last_updated": { + "type": 6, + "value": 1678220485124 + }, + "date_of_expiration": { + "type": 6, + "value": 1680737412146 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678220485124 + }, + "money_release_date": { + "type": 6, + "value": 1678220485124 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "d165f075490946158b6b22b7", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145412146/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0502.9485.5698.2423-30", + "revision": "4a52efce29c54d33b1f7c69d", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678043796128/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "12c52b1e197345ada8e009cd", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678043796128", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1678043796128, + "id": 1678043796128, + "date_created": { + "type": 6, + "value": 1678043796128 + }, + "date_last_updated": { + "type": 6, + "value": 1678220439067 + }, + "date_of_expiration": { + "type": 6, + "value": 1680635796128 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678220439067 + }, + "money_release_date": { + "type": 6, + "value": 1678220439067 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "d677aa33d06043608fdf1514", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678043796128/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0502.9485.5698.2423-30", + "revision": "adf5f4c471354abd8de52372", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1677774543947/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "d24cf73971014922b51456b6", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1677774543947", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "history_id": 1677774543947, + "id": 1677774543947, + "date_created": { + "type": 6, + "value": 1677774543947 + }, + "date_last_updated": { + "type": 6, + "value": 1677777947224 + }, + "date_of_expiration": { + "type": 6, + "value": 1680366543947 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677777947224 + }, + "money_release_date": { + "type": 6, + "value": 1677777947224 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "17b9380a52764878996ff78e", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1677774543947/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0502.9485.5698.2423-30", + "revision": "3464e2ed6d02445ea6adeb76", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145303669/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678145303669, + "acquirer_reference": "", + "verification_code": 1678145303669, + "net_received_amount": 0, + "total_paid_amount": 2000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "bd45430bd75e496eadf8756c", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145303669", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 14284655, + "total_amount": 14284655, + "id": 1678145303669, + "date_created": { + "type": 6, + "value": 1678145303669 + }, + "date_last_updated": { + "type": 6, + "value": 1678145303669 + }, + "date_of_expiration": { + "type": 6, + "value": 1678145303669 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678145303669, + "description": "Compra de 14284655 IVIP por 2000 BRL" + }, + "revision": "21137649598f446283a1c804", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678220742550/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678220742550, + "acquirer_reference": "", + "verification_code": 1678220742550, + "net_received_amount": 0, + "total_paid_amount": 2000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "7e685e4a9f2a49fd8b9499b0", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678220742550", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 14195700, + "total_amount": 14195700, + "id": 1678220742550, + "date_created": { + "type": 6, + "value": 1678220742550 + }, + "date_last_updated": { + "type": 6, + "value": 1678220742550 + }, + "date_of_expiration": { + "type": 6, + "value": 1678220742550 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678220742550, + "description": "Compra de 14195700 IVIP por 2000 BRL" + }, + "revision": "ca557c79f46c44b4a73fe2df", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128267183/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "c19032c440f64d19a83b47dc", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128267183", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 14038113, + "total_amount": 14038113, + "history_id": 1686128267183, + "id": 1686128267183, + "date_created": { + "type": 6, + "value": 1686128267183 + }, + "date_last_updated": { + "type": 6, + "value": 1688771582648 + }, + "date_of_expiration": { + "type": 6, + "value": 1686128267183 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "IVIP", + "money_release_date": { + "type": 6, + "value": 1688771582648 + }, + "money_release_status": "rejected" + }, + "revision": "6f83d39d38854c80881055a4", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128267183/description", + "content": { + "type": 5, + "value": "Saque de 14.038.113,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD", + "revision": "0256cb0b707c4a2b97fb209e", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128970156/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "cf5a86e3da714949a1a50ac7", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128970156", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 28480355, + "total_amount": 28480355, + "history_id": 1686128970156, + "id": 1686128970156, + "date_created": { + "type": 6, + "value": 1686128970156 + }, + "date_last_updated": { + "type": 6, + "value": 1688771592581 + }, + "date_of_expiration": { + "type": 6, + "value": 1686128970156 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "IVIP", + "money_release_date": { + "type": 6, + "value": 1688771592581 + }, + "money_release_status": "rejected" + }, + "revision": "1154d6410e3a4493a6fe0aaf", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128970156/description", + "content": { + "type": 5, + "value": "Saque de 28.480.355,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD", + "revision": "352f74001b4444048c519fb4", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190557366/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686190557366, + "acquirer_reference": "", + "verification_code": 1686190557366, + "net_received_amount": 0, + "total_paid_amount": 50000, + "overpaid_amount": 0, + "installment_amount": 50000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "5aa8c4e97f574116a05f9728", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190557366", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 50000, + "total_amount": 50000, + "id": 1686190557366, + "date_created": { + "type": 6, + "value": 1686190557366 + }, + "date_last_updated": { + "type": 6, + "value": 1686190557366 + }, + "date_of_expiration": { + "type": 6, + "value": 1749348957366 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686190557366 + }, + "revision": "c7c4e7567c0d41709bb2bf0b", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190557366/description", + "content": { + "type": 5, + "value": "Investimento de 50.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/7/2025", + "revision": "5f386430ac844b2d95a9b0ad", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190633022/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686190633022, + "acquirer_reference": "", + "verification_code": 1686190633022, + "net_received_amount": 0, + "total_paid_amount": 30000, + "overpaid_amount": 0, + "installment_amount": 30000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "31adcf9b94c849c4bc299f87", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190633022", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 30000, + "total_amount": 30000, + "id": 1686190633022, + "date_created": { + "type": 6, + "value": 1686190633022 + }, + "date_last_updated": { + "type": 6, + "value": 1686190633022 + }, + "date_of_expiration": { + "type": 6, + "value": 1717813033022 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686190633022 + }, + "revision": "b89fd570ef3e4c6cbbaef92c", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190633022/description", + "content": { + "type": 5, + "value": "Investimento de 30.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/7/2024", + "revision": "8805ee03518b4e32bf63947f", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190671429/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686190671429, + "acquirer_reference": "", + "verification_code": 1686190671429, + "net_received_amount": 0, + "total_paid_amount": 50000, + "overpaid_amount": 0, + "installment_amount": 50000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "d518174334b84994b48d36f3", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190671429", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 50000, + "total_amount": 50000, + "id": 1686190671429, + "date_created": { + "type": 6, + "value": 1686190671429 + }, + "date_last_updated": { + "type": 6, + "value": 1686190671429 + }, + "date_of_expiration": { + "type": 6, + "value": 1702001871429 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686190671429 + }, + "revision": "44df4b5936f24910a3d3b575", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190671429/description", + "content": { + "type": 5, + "value": "Investimento de 50.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/7/2023", + "revision": "1ce349958dd741818e3d9072", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190710908/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686190710908, + "acquirer_reference": "", + "verification_code": 1686190710908, + "net_received_amount": 0, + "total_paid_amount": 30000, + "overpaid_amount": 0, + "installment_amount": 30000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "3b05a4c968bf4b7291aaf48a", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190710908", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 30000, + "total_amount": 30000, + "id": 1686190710908, + "date_created": { + "type": 6, + "value": 1686190710908 + }, + "date_last_updated": { + "type": 6, + "value": 1686190710908 + }, + "date_of_expiration": { + "type": 6, + "value": 1688782710908 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686190710908 + }, + "revision": "24b0f38d37764be18d8b4bdb", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190710908/description", + "content": { + "type": 5, + "value": "Investimento de 30.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/7/2023", + "revision": "efe2c8a98f374cf091a49724", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1687472497935/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687472497935, + "acquirer_reference": "", + "verification_code": 1687472497935, + "net_received_amount": 0, + "total_paid_amount": 14524522, + "overpaid_amount": 0, + "installment_amount": 14524522, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "17ae866a1da447f08fe8365a", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1687472497935", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 14524522, + "total_amount": 14524522, + "id": 1687472497935, + "date_created": { + "type": 6, + "value": 1687472497935 + }, + "date_last_updated": { + "type": 6, + "value": 1687472497935 + }, + "date_of_expiration": { + "type": 6, + "value": 1750630897935 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687472497935 + }, + "revision": "3ee8a9786ab84427a4c15cb6", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1687472497935/description", + "content": { + "type": 5, + "value": "Investimento de 14.524.522,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/22/2025", + "revision": "64bd71de99034e14882328ea", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1688575377865/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "e406d5e6446c492e90146c3e", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1688575377865", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 13795833, + "total_amount": 13795833, + "history_id": 1688575377865, + "id": 1688575377865, + "date_created": { + "type": 6, + "value": 1688575377865 + }, + "date_last_updated": { + "type": 6, + "value": 1688771604088 + }, + "date_of_expiration": { + "type": 6, + "value": 1688575377865 + }, + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1688771604088 + }, + "money_release_date": { + "type": 6, + "value": 1688771604088 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "fc6630707455427ea983ca62", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1688575377865/description", + "content": { + "type": 5, + "value": "Saque de 13.795.833,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD", + "revision": "2843b20c58c04b91b88f0cf0", + "revision_nr": 1, + "created": 1702563036364, + "modified": 1702563036364 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1689804799815/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689804799815, + "acquirer_reference": "", + "verification_code": 1689804799815, + "net_received_amount": 0, + "total_paid_amount": 30000, + "overpaid_amount": 0, + "installment_amount": 30000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "6296a5e68bab4012a404d41a", + "revision_nr": 1, + "created": 1702563036365, + "modified": 1702563036365 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1689804799815", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 30600, + "total_amount": 30600, + "id": 1689804799815, + "date_created": { + "type": 6, + "value": 1689804799815 + }, + "date_last_updated": { + "type": 6, + "value": 1689804799815 + }, + "date_of_expiration": { + "type": 6, + "value": 1689804799815 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689804799815, + "wasDebited": true + }, + "revision": "c6e6e73863c74b97b0cad6a4", + "revision_nr": 1, + "created": 1702563036365, + "modified": 1702563036365 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1689804799815/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 30.000,00 IVIP com um rendimento de +600,00 IVIP (2,00%)", + "revision": "63a17e0860ab43249e274e78", + "revision_nr": 1, + "created": 1702563036365, + "modified": 1702563036365 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1690467644472/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690467644472, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 30600, + "installment_amount": 30600, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "1a3d8b1ddc70425697c07300", + "revision_nr": 1, + "created": 1702563036365, + "modified": 1702563036365 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1690467644472/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1690467644472", + "revision": "114a0f338e584588a50bd657", + "revision_nr": 1, + "created": 1702563036365, + "modified": 1702563036365 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1690467644472", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 30600, + "total_amount": 30600, + "id": 1690467644472, + "history_id": 1690467644472, + "date_created": { + "type": 6, + "value": 1690467644472 + }, + "date_last_updated": { + "type": 6, + "value": 1690467644472 + }, + "date_of_expiration": { + "type": 6, + "value": 1693146044468 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "70f034093dd14896bc203a07", + "revision_nr": 1, + "created": 1702563036365, + "modified": 1702563036365 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1690467644472/description", + "content": { + "type": 5, + "value": "Investimento de 30.600,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/27/2023", + "revision": "f9252f5820bc42d8b597549f", + "revision_nr": 1, + "created": 1702563036365, + "modified": 1702563036365 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693147070930/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693147070930, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 31212, + "installment_amount": 31212, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "d3d865ea551a4d3791136f00", + "revision_nr": 1, + "created": 1702563036365, + "modified": 1702563036365 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693147070930/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1693147070930", + "revision": "8cde928410124fafa42f53be", + "revision_nr": 1, + "created": 1702563036365, + "modified": 1702563036365 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693147070930", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 30600, + "total_amount": 30600, + "id": "1693147070930", + "history_id": "1693147070930", + "date_created": { + "type": 6, + "value": 1693147070930 + }, + "date_last_updated": { + "type": 6, + "value": 1693147070930 + }, + "date_of_expiration": { + "type": 6, + "value": 1693147070930 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "cccf2121c43949258ce39732", + "revision_nr": 1, + "created": 1702563036365, + "modified": 1702563036365 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693147070930/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 30.600,00 IVIP com um rendimento de +612,00 IVIP (2,00%)", + "revision": "b51c6f46c3b94ca18c0c6e60", + "revision_nr": 1, + "created": 1702563036365, + "modified": 1702563036365 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693780247117/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693780247117, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2500, + "installment_amount": 2500, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "92aa34f29332453c840c0d69", + "revision_nr": 1, + "created": 1702563036365, + "modified": 1702563036365 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693780247117/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1693780247117", + "revision": "36ab24dc8db946bea7a18da2", + "revision_nr": 1, + "created": 1702563036365, + "modified": 1702563036365 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693780247117", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 2500, + "total_amount": 2500, + "id": "1693780247117", + "history_id": "1693780247117", + "date_created": { + "type": 6, + "value": 1693780247117 + }, + "date_last_updated": { + "type": 6, + "value": 1693780247117 + }, + "date_of_expiration": { + "type": 6, + "value": 1696372247116 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "d1e0b97f157b4be09c3a2c7e", + "revision_nr": 1, + "created": 1702563036365, + "modified": 1702563036365 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693780247117/description", + "content": { + "type": 5, + "value": "Investimento de 2.500,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", + "revision": "abce41b96e9d47028e67c1e0", + "revision_nr": 1, + "created": 1702563036365, + "modified": 1702563036365 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696382633982/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696382633982, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2500, + "installment_amount": 2500, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "ec12bcc7d2dc477a9f13b36a", + "revision_nr": 1, + "created": 1702563036365, + "modified": 1702563036365 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696382633982/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696382633982", + "revision": "56ae7736b8cd4c8dbee5e0c3", + "revision_nr": 1, + "created": 1702563036365, + "modified": 1702563036365 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696382633982", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "050294855698242330", + "payment_method": "staking", + "original_amount": 2550, + "total_amount": 2550, + "id": "1696382633982", + "history_id": "1696382633982", + "date_created": { + "type": 6, + "value": 1696382633982 + }, + "date_last_updated": { + "type": 6, + "value": 1696382633982 + }, + "date_of_expiration": { + "type": 6, + "value": 1696382633982 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "83bc01d433244bdab0c8cdd1", + "revision_nr": 1, + "created": 1702563036365, + "modified": 1702563036365 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696382633982/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", + "revision": "a14e9e922a0049d2ad3b57bb", + "revision_nr": 1, + "created": 1702563036365, + "modified": 1702563036365 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242905/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384242905, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2500, + "installment_amount": 2500, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "bb86daae3d014ed1af182389", + "revision_nr": 1, + "created": 1702563036366, + "modified": 1702563036366 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242905/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242905", + "revision": "dfe208610ac84c4098c142ff", + "revision_nr": 1, + "created": 1702563036366, + "modified": 1702563036366 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242905", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "050294855698242330", + "payment_method": "staking", + "original_amount": 2550, + "total_amount": 2550, + "id": "1696384242905", + "history_id": "1696384242905", + "date_created": { + "type": 6, + "value": 1696384242905 + }, + "date_last_updated": { + "type": 6, + "value": 1696384242905 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384242905 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment" + }, + "revision": "485674017b3349aa93a20fe9", + "revision_nr": 1, + "created": 1702563036366, + "modified": 1702563036366 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242905/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", + "revision": "fa4bf450dcc247ca9d8a3e3a", + "revision_nr": 1, + "created": 1702563036365, + "modified": 1702563036365 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242925/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384242925, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2500, + "installment_amount": 2500, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "8efa8373bd564d8e8561c0d4", + "revision_nr": 1, + "created": 1702563036366, + "modified": 1702563036366 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242925/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242925", + "revision": "4cc7c8848508471a92d37342", + "revision_nr": 1, + "created": 1702563036366, + "modified": 1702563036366 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242925", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "050294855698242330", + "payment_method": "staking", + "original_amount": 2550, + "total_amount": 2550, + "id": "1696384242925", + "history_id": "1696384242925", + "date_created": { + "type": 6, + "value": 1696384242925 + }, + "date_last_updated": { + "type": 6, + "value": 1696384242925 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384242925 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment" + }, + "revision": "010016f4762949ddb7f7ea30", + "revision_nr": 1, + "created": 1702563036366, + "modified": 1702563036366 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242925/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", + "revision": "0ac2bcd187a64ca2a2db0eff", + "revision_nr": 1, + "created": 1702563036366, + "modified": 1702563036366 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242931/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384242931, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2500, + "installment_amount": 2500, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "1a5731bc8e2e43e599f4e2ed", + "revision_nr": 1, + "created": 1702563036366, + "modified": 1702563036366 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242931/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242931", + "revision": "7543ee922b7e4423815cc1dd", + "revision_nr": 1, + "created": 1702563036366, + "modified": 1702563036366 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242931", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "050294855698242330", + "payment_method": "staking", + "original_amount": 2550, + "total_amount": 2550, + "id": "1696384242931", + "history_id": "1696384242931", + "date_created": { + "type": 6, + "value": 1696384242931 + }, + "date_last_updated": { + "type": 6, + "value": 1696384242931 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384242931 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment" + }, + "revision": "5883364309004020be77b7c8", + "revision_nr": 1, + "created": 1702563036366, + "modified": 1702563036366 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242931/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", + "revision": "8d6d34a4b9b6445e9e723221", + "revision_nr": 1, + "created": 1702563036366, + "modified": 1702563036366 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243125/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384243125, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2500, + "installment_amount": 2500, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "19137cb388e84c0280fb4f35", + "revision_nr": 1, + "created": 1702563036366, + "modified": 1702563036366 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243125/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384243125", + "revision": "947e6ded3d554d309707a675", + "revision_nr": 1, + "created": 1702563036366, + "modified": 1702563036366 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243125", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "050294855698242330", + "payment_method": "staking", + "original_amount": 2550, + "total_amount": 2550, + "id": "1696384243125", + "history_id": "1696384243125", + "date_created": { + "type": 6, + "value": 1696384243125 + }, + "date_last_updated": { + "type": 6, + "value": 1696384243125 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384243125 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment" + }, + "revision": "40e6ceca9a934a5a91f291f3", + "revision_nr": 1, + "created": 1702563036366, + "modified": 1702563036366 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243125/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", + "revision": "d9ef3057c6c84eed80885ab0", + "revision_nr": 1, + "created": 1702563036366, + "modified": 1702563036366 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243425/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384243425, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2500, + "installment_amount": 2500, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "f3aec57a693d4f1db04be1c2", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243425/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384243425", + "revision": "2d3957502e5048bbae79ab1b", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243425", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "050294855698242330", + "payment_method": "staking", + "original_amount": 2550, + "total_amount": 2550, + "id": "1696384243425", + "history_id": "1696384243425", + "date_created": { + "type": 6, + "value": 1696384243425 + }, + "date_last_updated": { + "type": 6, + "value": 1696384243425 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384243425 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment" + }, + "revision": "c334d5ba396e44bd8ce18363", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243425/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", + "revision": "2c12acbb68a34164b63e9c7a", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244783/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384244783, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2500, + "installment_amount": 2500, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "c872c485458e4d6480936b4e", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244783/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384244783", + "revision": "aa4ad210424e4d9192859f63", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244783", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "050294855698242330", + "payment_method": "staking", + "original_amount": 2550, + "total_amount": 2550, + "id": "1696384244783", + "history_id": "1696384244783", + "date_created": { + "type": 6, + "value": 1696384244783 + }, + "date_last_updated": { + "type": 6, + "value": 1696384244783 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384244783 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment" + }, + "revision": "613866a7c374459da8f05bec", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244783/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", + "revision": "7743f3aadc854ede8174eb02", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244885/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384244885, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2500, + "installment_amount": 2500, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "d2e3d2b057ce4616b142c842", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244885/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384244885", + "revision": "f1730f3c73bc4cab93ff9846", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244885", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "050294855698242330", + "payment_method": "staking", + "original_amount": 2550, + "total_amount": 2550, + "id": "1696384244885", + "history_id": "1696384244885", + "date_created": { + "type": 6, + "value": 1696384244885 + }, + "date_last_updated": { + "type": 6, + "value": 1696384244885 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384244885 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment" + }, + "revision": "e1bbbfa9bda240548b2e0521", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244885/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", + "revision": "8be40c4c30194b65b5b4c1bc", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history", + "content": { + "type": 1, + "value": {}, + "revision": "7d1cbd985a724568a6210fc1", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "acfe9000c50341a08d8116c3", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "4b6e3f33a1da4c2c8d0257a8", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677774434896, + "dateValidity": 1678238494873, + "totalValue": 9.579933648427893, + "currencyType": "USD" + }, + "revision": "0f51e9bdd4aa4fa9b26c90d0", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050395970230084904/balances", + "content": { + "type": 1, + "value": {}, + "revision": "3a95febe98d9485dbb3f049f", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050395970230084904/history", + "content": { + "type": 1, + "value": {}, + "revision": "5b75fdf2ddc34118a83bde75", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050395970230084904", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696468517081, + "dateValidity": 1696468517276, + "currencyType": "USD" + }, + "revision": "dcf008d7a65448efbb660f92", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, + "revision": "cfbeec2fe5c74c128d7552b2", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "812799.00000000", + "symbol": "IVIP", + "value": 263.24 + }, + "revision": "2e33c73eb09f46e4bf8b2a93", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/balances", + "content": { + "type": 1, + "value": {}, + "revision": "d3d20bc8ca1f4aa2a8c7bc25", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1678221951810/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "1ec749fe177d478bb3b9e1a7", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1678221951810", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1678221951810, + "id": 1678221951810, + "date_created": { + "type": 6, + "value": 1678221951810 + }, + "date_last_updated": { + "type": 6, + "value": 1678281719635 + }, + "date_of_expiration": { + "type": 6, + "value": 1680813951810 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678281719635 + }, + "money_release_date": { + "type": 6, + "value": 1678281719635 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "cb2de927caac4e9e9191b0b3", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1678221951810/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0532.9875.7978.5992-90", + "revision": "11b807158399418f84bf6acf", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009072784/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "2b67a6066d4344da8ca365dc", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009072784", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1679009072784, + "id": 1679009072784, + "date_created": { + "type": 6, + "value": 1679009072784 + }, + "date_last_updated": { + "type": 6, + "value": 1679322587158 + }, + "date_of_expiration": { + "type": 6, + "value": 1681601072784 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679322587158 + }, + "money_release_date": { + "type": 6, + "value": 1679322587158 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "193f8add5b8c47779ca633bb", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009072784/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0532.9875.7978.5992-90", + "revision": "f8e31d06d9d6467989a49e2e", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009122145/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "0d6ea47afe684fb3a4440ce9", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009122145", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1679009122145, + "id": 1679009122145, + "date_created": { + "type": 6, + "value": 1679009122145 + }, + "date_last_updated": { + "type": 6, + "value": 1679322754987 + }, + "date_of_expiration": { + "type": 6, + "value": 1681601122145 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1679322754987 + }, + "money_release_status": "rejected" + }, + "revision": "92cdeef08a4d4df19eff805a", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009122145/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0532.9875.7978.5992-90", + "revision": "292cf95b8e764105b2cd76ba", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1680059811857/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1680059811857, + "acquirer_reference": "", + "verification_code": 1680059811857, + "net_received_amount": 0, + "total_paid_amount": 150, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "959ab2ff39cd43288980646d", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1680059811857", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 812799, + "total_amount": 812799, + "id": 1680059811857, + "date_created": { + "type": 6, + "value": 1680059811857 + }, + "date_last_updated": { + "type": 6, + "value": 1680059811857 + }, + "date_of_expiration": { + "type": 6, + "value": 1680059811857 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1680059811857, + "description": "Compra de 812.799,00 IVIP por 150,00 BRL" + }, + "revision": "6fbfd001350543e8b3a7122e", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1687793732463/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "540010ecc51a4f27836e42c1", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1687793732463", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 812799, + "total_amount": 812799, + "history_id": 1687793732463, + "id": 1687793732463, + "date_created": { + "type": 6, + "value": 1687793732463 + }, + "date_last_updated": { + "type": 6, + "value": 1687793732463 + }, + "date_of_expiration": { + "type": 6, + "value": 1687793732463 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "aae801b100b24dd19f149cd5", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1687793732463/description", + "content": { + "type": 5, + "value": "Saque de 812.799,00 IVIP para a carteira 0x76DD50e5E925D29D22251e5b2A71bBB9b5672254", + "revision": "2ec920fd694b4766a9ef2d38", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history", + "content": { + "type": 1, + "value": {}, + "revision": "c4c4f6292cdb4068b78bc090", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "43b366be14ab441a9d2fb175", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "d6333217e98d46dc91bf73bf", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678221202102, + "dateValidity": 1679026523803, + "totalValue": 28.34, + "currencyType": "USD", + "balancesModificacao": 1689822000000 + }, + "revision": "a97d44d1f8a64b54bfe2f378", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/054341335642486000/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "51023.00000000", + "symbol": "IVIP", + "value": 6.23 + }, + "revision": "4894493556014a0a8bd3d82e", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/054341335642486000/balances", + "content": { + "type": 1, + "value": {}, + "revision": "144e12ca96f74c6c99da1dcc", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689173674893/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "9be311dbb8da47ea91000f9b", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689173674893", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 120, + "total_amount": 120, + "history_id": 1689173674893, + "id": 1689173674893, + "date_created": { + "type": 6, + "value": 1689173674893 + }, + "date_last_updated": { + "type": 6, + "value": 1689181059550 + }, + "date_of_expiration": { + "type": 6, + "value": 1691765674893 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689181059550 + }, + "money_release_date": { + "type": 6, + "value": 1689181059550 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "0d7308dd97334c34a1bcbe13", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689173674893/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 120,00 para a carteira iVip 0543.4133.5642.4860-00", + "revision": "b2136e8f0b6244b1bb062d81", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689182033050/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689182033050, + "acquirer_reference": "", + "verification_code": 1689182033050, + "net_received_amount": 0, + "total_paid_amount": 120, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "89384d3603f544dab5744a09", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689182033050", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 51023, + "total_amount": 51023, + "id": 1689182033050, + "date_created": { + "type": 6, + "value": 1689182033050 + }, + "date_last_updated": { + "type": 6, + "value": 1689182033050 + }, + "date_of_expiration": { + "type": 6, + "value": 1689182033050 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689182033050, + "description": "Compra de 51.023,00 IVIP por 120,00 BRL" + }, + "revision": "62095c5a50f040dcb94e2c82", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history", + "content": { + "type": 1, + "value": {}, + "revision": "91514afc977147f6ab8c98e1", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/054341335642486000/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "cccf80ca6be64e3d9e08b792", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/054341335642486000/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "5b1b34f05ca148478b1bbd4b", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/054341335642486000", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689173582935, + "dateValidity": 1689173582935, + "totalValue": 24.77, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696906800000 + } + }, + "revision": "9ddce5950daa48448ac63dd2", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/balances", + "content": { + "type": 1, + "value": {}, + "revision": "33c0b0629f30415cafc440c1", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699670706134 + } + }, + "revision": "2f451d996b2841158ef881d5", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1697078706134", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 99635.8518, + "installment_amount": 99635.8518, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "85085506f67e4cd3a24d50ab", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697078706134", + "revision": "55dca4ef99324b32a5ead75f", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "055644012114111740", + "payment_method": "whatsapp", + "original_amount": 99635.8518, + "total_amount": 99635.8518, + "id": "1697078706134", + "history_id": "1697078706134", + "date_created": { + "type": 6, + "value": 1697078706134 + }, + "date_last_updated": { + "type": 6, + "value": 1697118443226 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1697118443226 + }, + "money_release_date": { + "type": 6, + "value": 1697118443226 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "7618166ddf984bdf9e981872", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134/description", + "content": { + "type": 5, + "value": "Deposito de um valor 99.635,85 IVIP para a carteira iVip 0556.4401.2114.1117-40", + "revision": "53e9b8fe352a4daaa3c730cb", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699711608666 + } + }, + "revision": "43efc6df026f48aea2821185", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1697119608666", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 25, + "installment_amount": 25, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "ffd3f4ed6f5e4939978c7865", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697119608666", + "revision": "61b98ed477f04e83aa4e9feb", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "055644012114111740", + "payment_method": "whatsapp", + "original_amount": 25, + "total_amount": 25, + "id": "1697119608666", + "history_id": "1697119608666", + "date_created": { + "type": 6, + "value": 1697119608666 + }, + "date_last_updated": { + "type": 6, + "value": 1697121223741 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1697121223741 + }, + "money_release_date": { + "type": 6, + "value": 1697121223741 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "7c63e0435e974c11bb7cee8e", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666/description", + "content": { + "type": 5, + "value": "Deposito de um valor 25,00 BRL para a carteira iVip 0556.4401.2114.1117-40", + "revision": "3c8c12f0287148a99c58262f", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697122378430/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1697122378430", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 25, + "installment_amount": 25, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "f4846173902640798676b3ca", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697122378430/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697122378430", + "revision": "512f2c85ce15464785ee89b0", + "revision_nr": 1, + "created": 1702563036367, + "modified": 1702563036367 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697122378430", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "wallet_id": "055644012114111740", + "payment_method": "swap", + "original_amount": 46978, + "total_amount": 46978, + "id": "1697122378430", + "history_id": "1697122378430", + "date_created": { + "type": 6, + "value": 1697122378430 + }, + "date_last_updated": { + "type": 6, + "value": 1697122378430 + }, + "date_of_expiration": { + "type": 6, + "value": 1697122378430 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 46.978,00 IVIP por 25,00 BRL", + "status_detail": "accredited" + }, + "revision": "43d8468cf8064c999153c9a5", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history", + "content": { + "type": 1, + "value": {}, + "revision": "eb1d865319d0418f8ebc23f7", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "32ffc650e8d94aeba084c066", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "e008e623c53d4c558834a6ef", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740", + "content": { + "type": 1, + "value": { + "dataModificacao": 1697078617873, + "dateValidity": 1697078617917, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697079600000 + } + }, + "revision": "8548da271b234cf0989af774", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, + "revision": "19abf4b62f7e4d93a84f86b5", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "5352934.00000000", + "symbol": "IVIP", + "value": 720.46 + }, + "revision": "d7be37a1494e4ead8a2efb0b", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/balances", + "content": { + "type": 1, + "value": {}, + "revision": "cf072c7bc7294ed5861977d8", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684093509797/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "b8a4084c93ed41afa973bc7c", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684093509797", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 800, + "total_amount": 800, + "history_id": 1684093509797, + "id": 1684093509797, + "date_created": { + "type": 6, + "value": 1684093509797 + }, + "date_last_updated": { + "type": 6, + "value": 1684093833853 + }, + "date_of_expiration": { + "type": 6, + "value": 1686685509797 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684093833853 + }, + "money_release_date": { + "type": 6, + "value": 1684093833853 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "836a39968e324b499c080f65", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684093509797/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 800,00 para a carteira iVip 0565.4676.9240.3558-40", + "revision": "249365a593d64843935e7fb8", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684583054149/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "5e169705d606412f9fa9a9f2", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684583054149", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 299, + "total_amount": 299, + "history_id": 1684583054149, + "id": 1684583054149, + "date_created": { + "type": 6, + "value": 1684583054149 + }, + "date_last_updated": { + "type": 6, + "value": 1684595303300 + }, + "date_of_expiration": { + "type": 6, + "value": 1687175054149 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684595303300 + }, + "money_release_date": { + "type": 6, + "value": 1684595303300 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "c8f546b187fe473db2907d0e", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684583054149/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 299,00 para a carteira iVip 0565.4676.9240.3558-40", + "revision": "8cbf69f954274da888569841", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684624980630/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624980630, + "acquirer_reference": "", + "verification_code": 1684624980630, + "net_received_amount": 0, + "total_paid_amount": 1099, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "6e36b0e623f744e1a28f5e00", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684624980630", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 5352934, + "total_amount": 5352934, + "id": 1684624980630, + "date_created": { + "type": 6, + "value": 1684624980630 + }, + "date_last_updated": { + "type": 6, + "value": 1684624980630 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624980630 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624980630, + "description": "Compra de 5.352.934,00 IVIP por 1.099,00 BRL" + }, + "revision": "5ea2a31056bc49c58db0673c", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104056845/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "4a1cb48742174de09fac6f5c", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104056845", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 5352934, + "total_amount": 5352934, + "history_id": 1689104056845, + "id": 1689104056845, + "date_created": { + "type": 6, + "value": 1689104056845 + }, + "date_last_updated": { + "type": 6, + "value": 1689104056845 + }, + "date_of_expiration": { + "type": 6, + "value": 1689104056845 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "682b74d4b09a459baf0400ea", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104056845/description", + "content": { + "type": 5, + "value": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", + "revision": "5012d3ad1c0e4e0cab214a80", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104143830/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "3f9268f4052049aaa64465e5", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104143830", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 5352934, + "total_amount": 5352934, + "history_id": 1689104143830, + "id": 1689104143830, + "date_created": { + "type": 6, + "value": 1689104143830 + }, + "date_last_updated": { + "type": 6, + "value": 1689104143830 + }, + "date_of_expiration": { + "type": 6, + "value": 1689104143830 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "bc0017d8209a48f9b93d6fe0", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104143830/description", + "content": { + "type": 5, + "value": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", + "revision": "fff9ac30797a4a5699453f57", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689646587803/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "b60b9b58a8794e35904936d3", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689646587803", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 5352934, + "total_amount": 5352934, + "history_id": 1689646587803, + "id": 1689646587803, + "date_created": { + "type": 6, + "value": 1689646587803 + }, + "date_last_updated": { + "type": 6, + "value": 1689646587803 + }, + "date_of_expiration": { + "type": 6, + "value": 1689646587803 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "9839ac907d054439a6533167", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689646587803/description", + "content": { + "type": 5, + "value": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", + "revision": "47892231247d4b59b3dacb02", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 160588.02 + }, + "revision": "406f24b32b2946f9b472edb1", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692620472334, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5352934, + "installment_amount": 5352934, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "9fa3df9613c548a6a0945744", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/056546769240355840/history/1692620472334", + "revision": "6e142ed6cd2b4007b4b96a87", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "0c1f707a076f490695749513", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 5352934, + "total_amount": 5192345.98, + "id": 1692620472334, + "history_id": 1692620472334, + "date_created": { + "type": 6, + "value": 1692620472334 + }, + "date_last_updated": { + "type": 6, + "value": 1692620515386 + }, + "date_of_expiration": { + "type": 6, + "value": 1692620472334 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": { + "type": 6, + "value": 1692620515386 + }, + "money_release_date": { + "type": 6, + "value": 1692620515386 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "ac04c325eebe4e7dbe113b85", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/description", + "content": { + "type": 5, + "value": "Saque de 5.192.345,98 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", + "revision": "beff9e86359e4e4c8efb1bea", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history", + "content": { + "type": 1, + "value": {}, + "revision": "207e456daae14839aba870e1", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "9c3a28ac736b4d02a2a1a7eb", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "analysisRequested": { + "type": 6, + "value": 1692384424311 + } + }, + "revision": "9086f4b43a8742c89421b046", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678095088185, + "dateValidity": 1678245807542, + "totalValue": 218.81, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1692586800000 + } + }, + "revision": "4b6e09aae7bb4e578021b629", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057251085848447400/balances", + "content": { + "type": 1, + "value": {}, + "revision": "c9d31a36bcab44169f3db3c3", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057251085848447400/history", + "content": { + "type": 1, + "value": {}, + "revision": "1e4ad583093a47d7a8c23634", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057251085848447400", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677956784862, + "dateValidity": 1678334303407, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "e02ea88d65524e0783db6f81", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "561917.00000000", + "symbol": "IVIP", + "value": 59.89 + }, + "revision": "e6fbd7af33d848c182c8833d", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/balances", + "content": { + "type": 1, + "value": {}, + "revision": "df5523943ee6478aa526afcc", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679346644168/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "cdbafd3320b948e787651802", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679346644168", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1679346644168, + "id": 1679346644168, + "date_created": { + "type": 6, + "value": 1679346644168 + }, + "date_last_updated": { + "type": 6, + "value": 1679346955591 + }, + "date_of_expiration": { + "type": 6, + "value": 1681938644168 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679346955591 + }, + "money_release_date": { + "type": 6, + "value": 1679346955591 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "8deee6be441945288c90b516", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679346644168/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", + "revision": "8c5bf3cfb46f4dfd8917e3ec", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679707462559/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "15e58bd09c07498aa4db5b8e", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679707462559", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1679707462559, + "id": 1679707462559, + "date_created": { + "type": 6, + "value": 1679707462559 + }, + "date_last_updated": { + "type": 6, + "value": 1679708737072 + }, + "date_of_expiration": { + "type": 6, + "value": 1682299462559 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679708737072 + }, + "money_release_date": { + "type": 6, + "value": 1679708737072 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "ea6149f7daf944d38b31e3cf", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679707462559/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", + "revision": "49412c4426b14362b2a60021", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679871671858/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679871671858, + "acquirer_reference": "", + "verification_code": 1679871671858, + "net_received_amount": 0, + "total_paid_amount": 40, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "81f19452c13c436a983d3a64", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679871671858", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 213025, + "total_amount": 213025, + "id": 1679871671858, + "date_created": { + "type": 6, + "value": 1679871671858 + }, + "date_last_updated": { + "type": 6, + "value": 1679871671858 + }, + "date_of_expiration": { + "type": 6, + "value": 1679871671858 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679871671858, + "description": "Compra de 213.025,00 IVIP por 40,00 BRL" + }, + "revision": "5c6227f7ca2749a281669f1e", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689132225947/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "05ba6891ce8e4bac8f632ace", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689132225947", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689132225947, + "id": 1689132225947, + "date_created": { + "type": 6, + "value": 1689132225947 + }, + "date_last_updated": { + "type": 6, + "value": 1689132225947 + }, + "date_of_expiration": { + "type": 6, + "value": 1691724225947 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "e110e04ec2404fd9a5808283", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689132225947/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", + "revision": "c7c78cb6fe4e4c5db49dcc5c", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689175940633/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "d28455a4c76a47eabbcbddf8", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689175940633", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1689175940633, + "id": 1689175940633, + "date_created": { + "type": 6, + "value": 1689175940633 + }, + "date_last_updated": { + "type": 6, + "value": 1689175940633 + }, + "date_of_expiration": { + "type": 6, + "value": 1691767940633 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "4102ecd4ddac4d10853abae5", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689175940633/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20", + "revision": "23bdcce408c045faba637de4", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689367674517/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "8726933aa69b49e29ff0d836", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689367674517", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1689367674517, + "id": 1689367674517, + "date_created": { + "type": 6, + "value": 1689367674517 + }, + "date_last_updated": { + "type": 6, + "value": 1689367674517 + }, + "date_of_expiration": { + "type": 6, + "value": 1691959674517 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "dd08e356ec4c41f99e7e6c4b", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689367674517/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20", + "revision": "0b143dda731743d4a53b8177", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689622072746/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "667f4ff50108459685242d8a", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689622072746", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1689622072746, + "id": 1689622072746, + "date_created": { + "type": 6, + "value": 1689622072746 + }, + "date_last_updated": { + "type": 6, + "value": 1689622391229 + }, + "date_of_expiration": { + "type": 6, + "value": 1692214072746 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689622391229 + }, + "money_release_date": { + "type": 6, + "value": 1689622391229 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "2f165c8fd3b3453690c9be0d", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689622072746/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20", + "revision": "60a05609b64b43db87d0fb0c", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689623842206/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689623842206, + "acquirer_reference": "", + "verification_code": 1689623842206, + "net_received_amount": 0, + "total_paid_amount": 50, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "66be0737083547d09cd6bea8", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689623842206", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 32205, + "total_amount": 32205, + "id": 1689623842206, + "date_created": { + "type": 6, + "value": 1689623842206 + }, + "date_last_updated": { + "type": 6, + "value": 1689623842206 + }, + "date_of_expiration": { + "type": 6, + "value": 1689623842206 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689623842206, + "description": "Compra de 32.205,00 IVIP por 50,00 BRL" + }, + "revision": "927ca81a595f4abfb2e1704f", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692566630901 + } + }, + "revision": "9ef532420482497eac6934fa", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1689974630901, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "47f4deae0edd4a3991903a37", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1689974630901", + "revision": "c724627fb570452fbf18e9a1", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": 1689974630901, + "history_id": 1689974630901, + "date_created": { + "type": 6, + "value": 1689974630901 + }, + "date_last_updated": { + "type": 6, + "value": 1689974630901 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "223eae72c83b49b987ed6c78", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", + "revision": "ca9d825e88c842ee8916bd1f", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692837872747 + } + }, + "revision": "1781694160fd4bec82130725", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690245872747, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "f7454665debe432fa431a3cb", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1690245872747", + "revision": "7fdd564ff9f6422c88984795", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": 1690245872747, + "history_id": 1690245872747, + "date_created": { + "type": 6, + "value": 1690245872747 + }, + "date_last_updated": { + "type": 6, + "value": 1690309276564 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1690309276564 + }, + "money_release_date": { + "type": 6, + "value": 1690309276564 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "3503f302dabd4bbb96616aaf", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", + "revision": "61372ed85d6746feb6be25ff", + "revision_nr": 1, + "created": 1702563036368, + "modified": 1702563036368 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690318679149/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1690318679149, + "acquirer_reference": "", + "verification_code": 1690318679149, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "b28225ddc6df49278fa44eb3", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690318679149", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 16406, + "total_amount": 16406, + "id": 1690318679149, + "date_created": { + "type": 6, + "value": 1690318679149 + }, + "date_last_updated": { + "type": 6, + "value": 1690318679149 + }, + "date_of_expiration": { + "type": 6, + "value": 1690318679149 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1690318679149, + "description": "Compra de 16.406,00 IVIP por 20,00 BRL" + }, + "revision": "7246e4ab7681418bb91c5aaf", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695065586359 + } + }, + "revision": "8d7827794438462b915789b1", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692473586359, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "0339da573be842cf8dbc2a78", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692473586359", + "revision": "35964df3cd714640b9952393", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": 1692473586359, + "history_id": 1692473586359, + "date_created": { + "type": 6, + "value": 1692473586359 + }, + "date_last_updated": { + "type": 6, + "value": 1692476570838 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1692476570838 + }, + "money_release_date": { + "type": 6, + "value": 1692476570838 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "a9588bbc3baf4c149a852c76", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359/description", + "content": { + "type": 5, + "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", + "revision": "278abfff887c40c3b3c49dc4", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692476742525/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692476742525, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "794ba323a9544d6ca9a8bdfd", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692476742525/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692476742525", + "revision": "62d5536df0524c83843760b1", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692476742525", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 32045, + "total_amount": 32045, + "id": 1692476742525, + "history_id": 1692476742525, + "date_created": { + "type": 6, + "value": 1692476742525 + }, + "date_last_updated": { + "type": 6, + "value": 1692476742525 + }, + "date_of_expiration": { + "type": 6, + "value": 1692476742525 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 32.045,00 IVIP por 20,00 BRL", + "status_detail": "accredited" + }, + "revision": "41643175ea10488b826f1fa5", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695588810545 + } + }, + "revision": "ffe237968a024dbf904ab1a1", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692996810545, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "e6516545d51c421dbfb4fb5f", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692996810545", + "revision": "7f06fd584be14d379ef0ee80", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": "1692996810545", + "history_id": "1692996810545", + "date_created": { + "type": 6, + "value": 1692996810545 + }, + "date_last_updated": { + "type": 6, + "value": 1692996810545 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "569a9eaff73f48b38babb0fc", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545/description", + "content": { + "type": 5, + "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", + "revision": "1631c162054e42d88cda0034", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695588844899 + } + }, + "revision": "a6adbc84b2b245e59f636c69", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692996844899, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "c89c1cd295484c13a27b5ecb", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692996844899", + "revision": "b82efb0ad3f04bc59ade9998", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": "1692996844899", + "history_id": "1692996844899", + "date_created": { + "type": 6, + "value": 1692996844899 + }, + "date_last_updated": { + "type": 6, + "value": 1692999921567 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1692999921567 + }, + "money_release_date": { + "type": 6, + "value": 1692999921567 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "e164ce0bd306455ba3292ab7", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899/description", + "content": { + "type": 5, + "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", + "revision": "4011021942444421ac96f996", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693000377717/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693000377717, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "bd47ede931514580bc44d472", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693000377717/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693000377717", + "revision": "fec6047a5caa4b338c93dd65", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693000377717", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 40254, + "total_amount": 40254, + "id": "1693000377717", + "history_id": "1693000377717", + "date_created": { + "type": 6, + "value": 1693000377717 + }, + "date_last_updated": { + "type": 6, + "value": 1693000377717 + }, + "date_of_expiration": { + "type": 6, + "value": 1693000377717 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 40.254,00 IVIP por 20,00 BRL", + "status_detail": "accredited" + }, + "revision": "cb57077967f14a1e8be31fee", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1696197427916 + } + }, + "revision": "9ed754b5b1ce48ea8d0ff01b", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693605427916, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "84c4dba895c14eb69ede6fc0", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693605427916", + "revision": "e69dbe02408249da9916cde5", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": "1693605427916", + "history_id": "1693605427916", + "date_created": { + "type": 6, + "value": 1693605427916 + }, + "date_last_updated": { + "type": 6, + "value": 1693605427916 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "5da197db59674f28ac6815be", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916/description", + "content": { + "type": 5, + "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", + "revision": "aed328e2ad584ffe8f87ffce", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1696197762263 + } + }, + "revision": "b250241c71b443c9907a9474", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693605762263, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "990de32ecae0468ebd0b2874", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693605762263", + "revision": "66d3df87cd3c485799b4bc90", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": "1693605762263", + "history_id": "1693605762263", + "date_created": { + "type": 6, + "value": 1693605762263 + }, + "date_last_updated": { + "type": 6, + "value": 1693606033196 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1693606033196 + }, + "money_release_date": { + "type": 6, + "value": 1693606033196 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "dc83a7cc3fb74fb78a0acf58", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263/description", + "content": { + "type": 5, + "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", + "revision": "f56e4f9eda3f4d9fb6a520bf", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693606719867/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693606719867, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "703625eaf1c74f1fb42fbde2", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693606719867/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693606719867", + "revision": "a996e6a5a21849228cc11595", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693606719867", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 33429, + "total_amount": 33429, + "id": "1693606719867", + "history_id": "1693606719867", + "date_created": { + "type": 6, + "value": 1693606719867 + }, + "date_last_updated": { + "type": 6, + "value": 1693606719867 + }, + "date_of_expiration": { + "type": 6, + "value": 1693606719867 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 33.429,00 IVIP por 20,00 BRL", + "status_detail": "accredited" + }, + "revision": "26d627ddb10d4130a9ea44fc", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697246922996 + } + }, + "revision": "a24c7041ca8646ffbccfadc6", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694654922996, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "600b6f79dff547b38c7db974", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694654922996", + "revision": "796b2216b5cb4130994cabb7", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": "1694654922996", + "history_id": "1694654922996", + "date_created": { + "type": 6, + "value": 1694654922996 + }, + "date_last_updated": { + "type": 6, + "value": 1694655660738 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1694655660738 + }, + "money_release_date": { + "type": 6, + "value": 1694655660738 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "adfb268f418444f8a6f3cf7a", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996/description", + "content": { + "type": 5, + "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", + "revision": "56138145ca184832b68adbbb", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697320326075 + } + }, + "revision": "aa4a3891874e4921a8020ee4", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694728326075, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "60988ad3319a418f8b8dd609", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694728326075", + "revision": "9447713de46a43fe95477296", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "id": "1694728326075", + "history_id": "1694728326075", + "date_created": { + "type": 6, + "value": 1694728326075 + }, + "date_last_updated": { + "type": 6, + "value": 1694731342567 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1694731342567 + }, + "money_release_date": { + "type": 6, + "value": 1694731342567 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "8c128e819fef4f6ea1b5bda1", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075/description", + "content": { + "type": 5, + "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0577.5100.7037.4496-20", + "revision": "0ae991a4e40e4b0f9370a591", + "revision_nr": 1, + "created": 1702563036369, + "modified": 1702563036369 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697320859603 + } + }, + "revision": "1c272c49cf3d47b995e63dcf", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694728859604, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "1c454616b57f4d85b5b0bf21", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694728859604", + "revision": "04b110a63e4d4720879f2712", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "id": "1694728859604", + "history_id": "1694728859604", + "date_created": { + "type": 6, + "value": 1694728859604 + }, + "date_last_updated": { + "type": 6, + "value": 1694728859604 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "c5214663c2cd44c6b8e1900a", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604/description", + "content": { + "type": 5, + "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0577.5100.7037.4496-20", + "revision": "76920a8b11d647cfa70cb8dd", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694731526035/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694731526035, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "5189782b28874aaaa84ffad6", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694731526035/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694731526035", + "revision": "c957cd2bd578424da4d7eed3", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694731526035", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 121808, + "total_amount": 121808, + "id": "1694731526035", + "history_id": "1694731526035", + "date_created": { + "type": 6, + "value": 1694731526035 + }, + "date_last_updated": { + "type": 6, + "value": 1694731526035 + }, + "date_of_expiration": { + "type": 6, + "value": 1694731526035 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 121.808,00 IVIP por 100,00 BRL", + "status_detail": "accredited" + }, + "revision": "3fffeff965a34249b4ec3013", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694793493188/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694793493188, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "0956b84deb0b429b925755ee", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694793493188/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694793493188", + "revision": "60b523422d4040a19adf7999", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694793493188", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 25384, + "total_amount": 25384, + "id": "1694793493188", + "history_id": "1694793493188", + "date_created": { + "type": 6, + "value": 1694793493188 + }, + "date_last_updated": { + "type": 6, + "value": 1694793493188 + }, + "date_of_expiration": { + "type": 6, + "value": 1694793493188 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 25.384,00 IVIP por 20,00 BRL", + "status_detail": "accredited" + }, + "revision": "01e149898887490e8c30b4d4", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697558109290 + } + }, + "revision": "84e84731b746495fbdc4f54b", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694966109291, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "17b91f7f57fa4c8e958e1180", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694966109291", + "revision": "7ee979c951de4fc99e05fe87", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": "1694966109291", + "history_id": "1694966109291", + "date_created": { + "type": 6, + "value": 1694966109291 + }, + "date_last_updated": { + "type": 6, + "value": 1694973497859 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1694973497859 + }, + "money_release_date": { + "type": 6, + "value": 1694973497859 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "bec9cf20e0c848ea9f738e5c", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291/description", + "content": { + "type": 5, + "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", + "revision": "fe3e00eb33304c488f7edba7", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694988703973/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694988703973, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "f086478dde5b45a8b9ee4e9a", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694988703973/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694988703973", + "revision": "82d0a9aace2945c09aa1a569", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694988703973", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 25302, + "total_amount": 25302, + "id": "1694988703973", + "history_id": "1694988703973", + "date_created": { + "type": 6, + "value": 1694988703973 + }, + "date_last_updated": { + "type": 6, + "value": 1694988703973 + }, + "date_of_expiration": { + "type": 6, + "value": 1694988703973 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 25.302,00 IVIP por 20,00 BRL", + "status_detail": "accredited" + }, + "revision": "9f5b921586b04ef8b4baf2de", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699112028284 + } + }, + "revision": "003eb9d8f2ec48ef8dd348cc", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696520028285, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "c92a3bd3845948df86d866ec", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1696520028285", + "revision": "c66a3723bc0f4c3986eeb126", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "057751007037449620", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": "1696520028285", + "history_id": "1696520028285", + "date_created": { + "type": 6, + "value": 1696520028285 + }, + "date_last_updated": { + "type": 6, + "value": 1696520650654 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1696520650654 + }, + "money_release_date": { + "type": 6, + "value": 1696520650654 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "1fd087b167d54c8abace82ba", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285/description", + "content": { + "type": 5, + "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", + "revision": "8fa4557566d142178d132285", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520773436/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696520773436, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "90b64e75adea4baea26df9fd", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520773436/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1696520773436", + "revision": "67c04506148d486ea2105958", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520773436", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "wallet_id": "057751007037449620", + "payment_method": "swap", + "original_amount": 22059, + "total_amount": 22059, + "id": "1696520773436", + "history_id": "1696520773436", + "date_created": { + "type": 6, + "value": 1696520773436 + }, + "date_last_updated": { + "type": 6, + "value": 1696520773436 + }, + "date_of_expiration": { + "type": 6, + "value": 1696520773436 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 22.059,00 IVIP por 20,00 BRL", + "status_detail": "accredited" + }, + "revision": "e04c978936684d86b75bcd29", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history", + "content": { + "type": 1, + "value": {}, + "revision": "bb637d306a964ee2bb4e9971", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "41e5e95041d746128f174441", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "analysisRequested": { + "type": 6, + "value": 1696173793593 + } + }, + "revision": "422d2ca46a344f6c90f83a94", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679345183302, + "dateValidity": 1679345183302, + "totalValue": 17.88, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } + }, + "revision": "cbb3410fe65d4630aabb70a0", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "-14612195.00000000", + "symbol": "IVIP", + "value": -15912.37 + }, + "revision": "af83969caa3f429389bacc52", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/balances", + "content": { + "type": 1, + "value": {}, + "revision": "670a079d1c194dcc8cce5d52", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1683732218933/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "12800c0757374cbd801c15ef", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1683732218933", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 3000, + "total_amount": 3000, + "history_id": 1683732218933, + "id": 1683732218933, + "date_created": { + "type": 6, + "value": 1683732218933 + }, + "date_last_updated": { + "type": 6, + "value": 1683733093240 + }, + "date_of_expiration": { + "type": 6, + "value": 1686324218933 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683733093240 + }, + "money_release_date": { + "type": 6, + "value": 1683733093240 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "375c95e3b01646f2a7960dc0", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1683732218933/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0583.5908.1725.8996-56", + "revision": "f2ea3e8b1c2d435e86efa233", + "revision_nr": 1, + "created": 1702563036370, + "modified": 1702563036370 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1684627186163/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684627186163, + "acquirer_reference": "", + "verification_code": 1684627186163, + "net_received_amount": 0, + "total_paid_amount": 3000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "1c294c0dbf71444a9428458a", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1684627186163", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 14612195, + "total_amount": 14612195, + "id": 1684627186163, + "date_created": { + "type": 6, + "value": 1684627186163 + }, + "date_last_updated": { + "type": 6, + "value": 1684627186163 + }, + "date_of_expiration": { + "type": 6, + "value": 1684627186163 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684627186163, + "description": "Compra de 14.612.195,00 IVIP por 3.000,00 BRL" + }, + "revision": "d9fddbd27bdf4a1baf8032cc", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 438365.85 + }, + "revision": "9dd5883af7c14ca18e1dde39", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692302387863, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 14612195, + "installment_amount": 14612195, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "11410416ef374f0c867de7a2", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/058359081725899656/history/1692302387863", + "revision": "61d47dd35adb4f9cb842a415", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "4190211384fe408d8d85f584", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 14612195, + "total_amount": 14173829.15, + "id": 1692302387863, + "history_id": 1692302387863, + "date_created": { + "type": 6, + "value": 1692302387863 + }, + "date_last_updated": { + "type": 6, + "value": 1692973252038 + }, + "date_of_expiration": { + "type": 6, + "value": 1692302387863 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": { + "type": 6, + "value": 1692973252038 + }, + "money_release_date": { + "type": 6, + "value": 1692973252038 + }, + "money_release_status": "drawee", + "wasDebited": true + }, + "revision": "5b8013d1790b4392bfb2531e", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/description", + "content": { + "type": 5, + "value": "Saque de 14.173.829,15 IVIP para a carteira 0x5cD8D20fc31429974550e7e677C493554c46a73A", + "revision": "d84712bd15384eec87da86c5", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 438365.85 + }, + "revision": "c146b5205d024213bce1eb73", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692441112310, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 14612195, + "installment_amount": 14612195, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "fde7db26775848a88d732def", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/058359081725899656/history/1692441112310", + "revision": "9a4171996a114566a770b1ef", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "30d162d1e8664848b170a64e", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 14612195, + "total_amount": 14173829.15, + "id": 1692441112310, + "history_id": 1692441112310, + "date_created": { + "type": 6, + "value": 1692441112310 + }, + "date_last_updated": { + "type": 6, + "value": 1692972725453 + }, + "date_of_expiration": { + "type": 6, + "value": 1692441112310 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": { + "type": 6, + "value": 1692972725453 + }, + "money_release_date": { + "type": 6, + "value": 1692972725453 + }, + "money_release_status": "drawee", + "wasDebited": true + }, + "revision": "e699ca49332b4d00b501a5e2", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/description", + "content": { + "type": 5, + "value": "Saque de 14.173.829,15 IVIP para a carteira 0x5cD8D20fc31429974550e7e677C493554c46a73A", + "revision": "dbaae8e5a4ab4324aacd5d31", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history", + "content": { + "type": 1, + "value": {}, + "revision": "4a320e6a52ba41019613b900", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "766e09e920154d77a21c2b7f", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "a45cfb3a0f874bd38735c67b", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656", + "content": { + "type": 1, + "value": { + "dataModificacao": 1683669489240, + "dateValidity": 1683669489240, + "totalValue": 600.6, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696129200000 + } + }, + "revision": "98f3aa80228f4e7f83c1273d", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/059914438431437400/balances", + "content": { + "type": 1, + "value": {}, + "revision": "260524d25e9c4cabb75a2dc9", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/059914438431437400/history", + "content": { + "type": 1, + "value": {}, + "revision": "553dd0095ca142db9c70013e", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/059914438431437400/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "516c823639434847ac99b0f9", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/059914438431437400/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "3d18cf6b5ff54662825690c8", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/059914438431437400", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684637987083, + "dateValidity": 1684637987083, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "b798d9fd7e514aa8a32d184d", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060044476007192536/balances/BRL", + "content": { + "type": 1, + "value": { + "symbol": "BRL", + "available": "30.00000000", + "value": 6.027 + }, + "revision": "2eb3ad1a336948b081360133", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060044476007192536/balances", + "content": { + "type": 1, + "value": {}, + "revision": "7a33f5bdcb3f4338b365b108", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history/1684092073649/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "a71259f4808f429484aaf9fe", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history/1684092073649", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 30, + "total_amount": 30, + "history_id": 1684092073649, + "id": 1684092073649, + "date_created": { + "type": 6, + "value": 1684092073649 + }, + "date_last_updated": { + "type": 6, + "value": 1684092282901 + }, + "date_of_expiration": { + "type": 6, + "value": 1686684073649 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684092282901 + }, + "money_release_date": { + "type": 6, + "value": 1684092282901 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "60bed228443a4ff18f60f84f", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history/1684092073649/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 30,00 para a carteira iVip 0600.4447.6007.1925-36", + "revision": "29b3fef4f0a54c669bc49567", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history", + "content": { + "type": 1, + "value": {}, + "revision": "b80b013ec6af42fcad324187", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060044476007192536/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "8fb303da72e843e68ceefa8a", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060044476007192536/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "8e459dd929d44b7a8192f10c", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060044476007192536", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684091907959, + "dateValidity": 1684091907959, + "totalValue": 6.03, + "currencyType": "USD" + }, + "revision": "7cb9b28a8a134997b2a6526e", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, + "revision": "821c1972a65a42848622f39d", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "IVIP", + "value": 0 + }, + "revision": "eb17e7e984d44796b027950e", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/balances", + "content": { + "type": 1, + "value": {}, + "revision": "c5245a6adb72430facbe130b", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684104224358/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "536d51bd384d4c489aae9416", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684104224358", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 30, + "total_amount": 30, + "history_id": 1684104224358, + "id": 1684104224358, + "date_created": { + "type": 6, + "value": 1684104224358 + }, + "date_last_updated": { + "type": 6, + "value": 1684104710880 + }, + "date_of_expiration": { + "type": 6, + "value": 1686696224358 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684104710880 + }, + "money_release_date": { + "type": 6, + "value": 1684104710880 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "c8d68f7e2b104b0a9a6db016", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684104224358/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 30,00 para a carteira iVip 0602.8179.3071.1252-50", + "revision": "836d88fadb3f41899912406b", + "revision_nr": 1, + "created": 1702563036372, + "modified": 1702563036372 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684702707589/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684702707589, + "acquirer_reference": "", + "verification_code": 1684702707589, + "net_received_amount": 0, + "total_paid_amount": 30, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "e230b7382ad24790bc8f53d3", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684702707589", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 145829, + "total_amount": 145829, + "id": 1684702707589, + "date_created": { + "type": 6, + "value": 1684702707589 + }, + "date_last_updated": { + "type": 6, + "value": 1684702707589 + }, + "date_of_expiration": { + "type": 6, + "value": 1684702707589 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684702707589, + "description": "Compra de 145.829,00 IVIP por 30,00 BRL" + }, + "revision": "d4019d89aedd4ab8b9b9bf1f", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685061340656/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "13eaf8ef189348aebe405f43", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685061340656", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1685061340656, + "id": 1685061340656, + "date_created": { + "type": 6, + "value": 1685061340656 + }, + "date_last_updated": { + "type": 6, + "value": 1685061340656 + }, + "date_of_expiration": { + "type": 6, + "value": 1687653340656 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "809b7e235cb442fea76e8c21", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685061340656/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0602.8179.3071.1252-50", + "revision": "f39b9b6c5e1543dd8a69b40b", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685664745809/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "a3eb79af593b4650a946ec17", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685664745809", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1055, + "total_amount": 1055, + "history_id": 1685664745809, + "id": 1685664745809, + "date_created": { + "type": 6, + "value": 1685664745809 + }, + "date_last_updated": { + "type": 6, + "value": 1685727284727 + }, + "date_of_expiration": { + "type": 6, + "value": 1688256745809 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1685727284727 + }, + "money_release_status": "rejected" + }, + "revision": "84b80f2cdade41049ff2a675", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685664745809/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.055,00 para a carteira iVip 0602.8179.3071.1252-50", + "revision": "10275302349345149e2cd656", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690250551090/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690250551090, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 145829, + "installment_amount": 145829, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "f6b12283c6f04e4e96de12e5", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690250551090/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/060281793071125250/history/1690250551090", + "revision": "01524db8b93347429d512e92", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690250551090", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 145829, + "total_amount": 145829, + "id": 1690250551090, + "history_id": 1690250551090, + "date_created": { + "type": 6, + "value": 1690250551090 + }, + "date_last_updated": { + "type": 6, + "value": 1690250551090 + }, + "date_of_expiration": { + "type": 6, + "value": 1690250551090 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment" + }, + "revision": "5b61b895b74e4fd4ae818072", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690250551090/description", + "content": { + "type": 5, + "value": "Saque de 145.829,00 IVIP para a carteira 0xD99D89C01D8F4F0809a32D3916CbC94331E7b87e", + "revision": "19a1038c8cf74ca7a82383da", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690380108963/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690380108963, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 145829, + "installment_amount": 145829, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "435cf3414d964d3f934cdc64", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690380108963/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/060281793071125250/history/1690380108963", + "revision": "64ab44b5059c4810be1bd5d6", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690380108963", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 145829, + "total_amount": 145829, + "id": 1690380108963, + "history_id": 1690380108963, + "date_created": { + "type": 6, + "value": 1690380108963 + }, + "date_last_updated": { + "type": 6, + "value": 1690392697340 + }, + "date_of_expiration": { + "type": 6, + "value": 1690380108963 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": { + "type": 6, + "value": 1690392697340 + }, + "money_release_date": { + "type": 6, + "value": 1690392697340 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "db03407b16e84dd8bfb79ae3", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690380108963/description", + "content": { + "type": 5, + "value": "Saque de 145.829,00 IVIP para a carteira 0xD99D89C01D8F4F0809a32D3916CbC94331E7b87e", + "revision": "c026c5992ae843eb924af71a", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history", + "content": { + "type": 1, + "value": {}, + "revision": "79d4718510de46c2b4c4da16", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "f27c51a577224ec0a661538a", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "599901cdb8d24fd7872988da", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684104139226, + "dateValidity": 1684104139226, + "totalValue": 6.02, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1693018800000 + } + }, + "revision": "70e53bf405214545a076be11", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "2596003.86000000", + "symbol": "IVIP", + "value": 270.012 + }, + "revision": "110ab1a0e480492db0cc84ca", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/balances", + "content": { + "type": 1, + "value": {}, + "revision": "251ce003e09c4fc1a15b73cd", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679009450729/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "0d874e0c19964f6895fe57b4", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679009450729", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1800, + "total_amount": 1800, + "history_id": 1679009450729, + "id": 1679009450729, + "date_created": { + "type": 6, + "value": 1679009450729 + }, + "date_last_updated": { + "type": 6, + "value": 1679009578413 + }, + "date_of_expiration": { + "type": 6, + "value": 1681601450729 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679009578413 + }, + "money_release_date": { + "type": 6, + "value": 1679009578413 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "4dab8f21ca224db793c461af", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679009450729/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.800,00 para a carteira iVip 0606.0636.6606.7580-00", + "revision": "13d902b4b34546aea4392da9", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679267499015/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679267499015, + "acquirer_reference": "", + "verification_code": 1679267499015, + "net_received_amount": 0, + "total_paid_amount": 1800, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "ccbe0872d10d40aeb6d19474", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679267499015", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 10484307, + "total_amount": 10484307, + "id": 1679267499015, + "date_created": { + "type": 6, + "value": 1679267499015 + }, + "date_last_updated": { + "type": 6, + "value": 1679267499015 + }, + "date_of_expiration": { + "type": 6, + "value": 1679267499015 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679267499015, + "description": "Compra de 10484307 IVIP por 1800 BRL" + }, + "revision": "48df37574ecf402c8f5ddc28", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476464326/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688476464326, + "acquirer_reference": "", + "verification_code": 1688476464326, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "b059b2726ecc49b498322ade", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476464326", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1688476464326, + "date_created": { + "type": 6, + "value": 1688476464326 + }, + "date_last_updated": { + "type": 6, + "value": 1688476464326 + }, + "date_of_expiration": { + "type": 6, + "value": 1720098864326 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688476464326 + }, + "revision": "4d6defd096d2433aaaef900a", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476464326/description", + "content": { + "type": 5, + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/4/2024", + "revision": "86328042bc3145a180b1b406", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476478538/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688476478538, + "acquirer_reference": "", + "verification_code": 1688476478538, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "b9a623a41dfd41859df57236", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476478538", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1688476478538, + "date_created": { + "type": 6, + "value": 1688476478538 + }, + "date_last_updated": { + "type": 6, + "value": 1688476478538 + }, + "date_of_expiration": { + "type": 6, + "value": 1751634878538 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688476478538 + }, + "revision": "e9e967bd2d9740a797684be6", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476478538/description", + "content": { + "type": 5, + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/4/2025", + "revision": "881dfb785a804fb69d5c3e7f", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1693784335259/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693784335259, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5684843, + "installment_amount": 5684843, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "c021b70986904b4e9a7270a9", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1693784335259/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1693784335259", + "revision": "44b3e1432f3d46298b407126", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1693784335259", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 5684843, + "total_amount": 5684843, + "id": "1693784335259", + "history_id": "1693784335259", + "date_created": { + "type": 6, + "value": 1693784335259 + }, + "date_last_updated": { + "type": 6, + "value": 1693784335259 + }, + "date_of_expiration": { + "type": 6, + "value": 1696376335258 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "d664c3e01a2c486cadb03ddc", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1693784335259/description", + "content": { + "type": 5, + "value": "Investimento de 5.684.843,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", + "revision": "b95a59aaee2645b79168ab33", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384249715/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384249715, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5684843, + "installment_amount": 5684843, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "ba51af38fd5d492fb127d0b4", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384249715/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384249715", + "revision": "1b72516fa11f4a33bd07702a", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384249715", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "060606366606758000", + "payment_method": "staking", + "original_amount": 5798539.86, + "total_amount": 5798539.86, + "id": "1696384249715", + "history_id": "1696384249715", + "date_created": { + "type": 6, + "value": 1696384249715 + }, + "date_last_updated": { + "type": 6, + "value": 1696384249715 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384249715 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "5ee3acf5c964494ebd02c6ae", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384249715/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27", + "revision": "62dd2399fc4d4f3eb13833b0", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384254400/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384254400, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5684843, + "installment_amount": 5684843, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "11eae7524137423dbfa6bcb4", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384254400/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384254400", + "revision": "2c8042cf3fe14722b933376f", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384254400", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "060606366606758000", + "payment_method": "staking", + "original_amount": 5798539.86, + "total_amount": 5798539.86, + "id": "1696384254400", + "history_id": "1696384254400", + "date_created": { + "type": 6, + "value": 1696384254400 + }, + "date_last_updated": { + "type": 6, + "value": 1696384254400 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384254400 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment" + }, + "revision": "7588cbaa18444dbb860ad6ef", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384254400/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27", + "revision": "3480b6b92f7d4e66a5240cc9", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384253628/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384253628, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5684843, + "installment_amount": 5684843, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "b7eac97475a44a7faefaead8", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384253628/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384253628", + "revision": "3785fcc0f0fd4719a74396c9", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384253628", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "060606366606758000", + "payment_method": "staking", + "original_amount": 5798539.86, + "total_amount": 5798539.86, + "id": "1696384253628", + "history_id": "1696384253628", + "date_created": { + "type": 6, + "value": 1696384253628 + }, + "date_last_updated": { + "type": 6, + "value": 1696384253628 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384253628 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment" + }, + "revision": "c709d940f9744d498f3b9210", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384253628/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27", + "revision": "ceec2fe82cae4ddea2edf45c", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696457810654/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696457810654, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "0eaa72a869fa4b74b899d2ca", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696457810654/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696457810654", + "revision": "98ca7fc338d34531a9ec25bb", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696457810654", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "060606366606758000", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": "1696457810654", + "history_id": "1696457810654", + "date_created": { + "type": 6, + "value": 1696457810654 + }, + "date_last_updated": { + "type": 6, + "value": 1696457810654 + }, + "date_of_expiration": { + "type": 6, + "value": 1699136210615 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "522bf2507dfc425792156903", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696457810654/description", + "content": { + "type": 5, + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", + "revision": "c403a1f838a8430d8526dd94", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history", + "content": { + "type": 1, + "value": {}, + "revision": "05fbf0a765bb4541a477b61f", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "1639bef3527448459134d747", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "83dba651b690467b8cea5ccf", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679008860926, + "dateValidity": 1679023260971, + "totalValue": 563.3215233209353, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } + }, + "revision": "557a98d0790a496c8ab1f2fc", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/061447691609698650/history", + "content": { + "type": 1, + "value": {}, + "revision": "6399c4a053bc466090bfd19a", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BTC", + "content": { + "type": 1, + "value": { + "symbol": "BTC", + "value": 0.12708406600000002, + "available": "0.00000509" + }, + "revision": "e6e0e61c4a4c485aa96e225c", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BNB", + "content": { + "type": 1, + "value": { + "symbol": "BNB", + "value": 0.0088529947, + "available": "0.00002689" + }, + "revision": "09c2b9f34a3d4abdbb283f5f", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BUSD", + "content": { + "type": 1, + "value": { + "symbol": "BUSD", + "value": 0.032112, + "available": "0.03211200" + }, + "revision": "8a9fb61e328e45c89c3fe189", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/KAVA", + "content": { + "type": 1, + "value": { + "symbol": "KAVA", + "value": 1.4510568362399998, + "available": "1.41843288" + }, + "revision": "107289f3d02c417580982f11", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BRL", + "content": { + "type": 1, + "value": { + "symbol": "BRL", + "value": 0.145340815, + "available": "0.76697000" + }, + "revision": "f75b03cb9f3745758e625497", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/IDEX", + "content": { + "type": 1, + "value": { + "symbol": "IDEX", + "value": 0.0002743, + "available": "0.00500000" + }, + "revision": "d611bf9fd64943c59d597f0b", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/NFT", + "content": { + "type": 1, + "value": { + "symbol": "NFT", + "value": 0.15272504798763, + "available": "372500.117043" + }, + "revision": "6037cf653b5d4c2784789ad1", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/LUNC", + "content": { + "type": 1, + "value": { + "symbol": "LUNC", + "value": 7.524e-8, + "available": "0.00060000" + }, + "revision": "57876a99618145ec8a6c481d", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/GFT", + "content": { + "type": 1, + "value": { + "symbol": "GFT", + "value": 0.001235, + "available": "0.10000000" + }, + "revision": "050d94b2a4504d69bc0255ac", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances", + "content": { + "type": 1, + "value": {}, + "revision": "1e88a559aae646fbb3657544", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/061447691609698650", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678997573060, + "dateValidity": 1679015562550, + "totalValue": 1.919, + "currencyType": "USD" + }, + "revision": "6f3321e5a70c4737a4eb58ac", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "1808506.00000000", + "symbol": "IVIP", + "value": 279.32 + }, + "revision": "cd8062c15eaf4c5d81fb284b", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/balances", + "content": { + "type": 1, + "value": {}, + "revision": "7dbd64100b234ae0ada8c202", + "revision_nr": 1, + "created": 1702563036373, + "modified": 1702563036373 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693586433996 + } + }, + "revision": "899524ce9f2f45a4be410a7d", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690994433997, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "a66f5a97ca5b4959b7e50b94", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1690994433997", + "revision": "3dd8001eecb142b58acf4d4d", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "id": 1690994433997, + "history_id": 1690994433997, + "date_created": { + "type": 6, + "value": 1690994433997 + }, + "date_last_updated": { + "type": 6, + "value": 1691009312957 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1691009312957 + }, + "money_release_date": { + "type": 6, + "value": 1691009312957 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "fac765079ea742579b3c5de5", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997/description", + "content": { + "type": 5, + "value": "Deposito de um valor 1.000,00 para a carteira iVip 0625.7521.4502.4773-84", + "revision": "f71da9cacab04a04a64bbb59", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691064347943/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691064347943, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "217b4a30caa3410aa4d1b409", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691064347943/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691064347943", + "revision": "d543d0106ff84f1d9a86b3a4", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691064347943", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 207673, + "total_amount": 207673, + "id": 1691064347943, + "history_id": 1691064347943, + "date_created": { + "type": 6, + "value": 1691064347943 + }, + "date_last_updated": { + "type": 6, + "value": 1691064347943 + }, + "date_of_expiration": { + "type": 6, + "value": 1691064347943 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 207.673,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "9c5810f11a6a4b0f97521734", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691234903050/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691234903050, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "defa73c4f2d54b7f95170997", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691234903050/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691234903050", + "revision": "88e20793ba2947898ac99157", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691234903050", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 292108, + "total_amount": 292108, + "id": 1691234903050, + "history_id": 1691234903050, + "date_created": { + "type": 6, + "value": 1691234903050 + }, + "date_last_updated": { + "type": 6, + "value": 1691234903050 + }, + "date_of_expiration": { + "type": 6, + "value": 1691234903050 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 292.108,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "d06bfdbf124847559bb1a422", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691237670718/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691237670718, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "afd1e78edb1a4a4bbb8bdf85", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691237670718/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691237670718", + "revision": "f3b937071ff14098ab52808b", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691237670718", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 293284, + "total_amount": 293284, + "id": 1691237670718, + "history_id": 1691237670718, + "date_created": { + "type": 6, + "value": 1691237670718 + }, + "date_last_updated": { + "type": 6, + "value": 1691237670718 + }, + "date_of_expiration": { + "type": 6, + "value": 1691237670718 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 293.284,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "1769d28b3aed45a8b693a201", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691454318499/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691454318499, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "d6057746f55e4c84acc25ba9", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691454318499/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691454318499", + "revision": "9672238f8b774f84bfc85d9c", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691454318499", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 327037, + "total_amount": 327037, + "id": 1691454318499, + "history_id": 1691454318499, + "date_created": { + "type": 6, + "value": 1691454318499 + }, + "date_last_updated": { + "type": 6, + "value": 1691454318499 + }, + "date_of_expiration": { + "type": 6, + "value": 1691454318499 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 327.037,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "a64d5d5aac70422bbf7f0ab9", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694087110176 + } + }, + "revision": "1c98bf414ed64b298da3d1c4", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691495110179, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "3ae40a01f5fb4a4697c9aaf7", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691495110179", + "revision": "b21a1c7b54aa4ad88bb98a21", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "id": 1691495110179, + "history_id": 1691495110179, + "date_created": { + "type": 6, + "value": 1691495110179 + }, + "date_last_updated": { + "type": 6, + "value": 1691499951775 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1691499951775 + }, + "money_release_date": { + "type": 6, + "value": 1691499951775 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "09ce1edc13c34d79aff34c17", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179/description", + "content": { + "type": 5, + "value": "Deposito de um valor 1.000,00 para a carteira iVip 0625.7521.4502.4773-84", + "revision": "fd5857be88a64389a49b49ef", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691500327136/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691500327136, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "d6fbfa2b5eba4cb09b0bf491", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691500327136/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691500327136", + "revision": "5b56a1fdf6ab498a8039fff1", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691500327136", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 332596, + "total_amount": 332596, + "id": 1691500327136, + "history_id": 1691500327136, + "date_created": { + "type": 6, + "value": 1691500327136 + }, + "date_last_updated": { + "type": 6, + "value": 1691500327136 + }, + "date_of_expiration": { + "type": 6, + "value": 1691500327136 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 332.596,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "bf96c10720c54b51ac727ea3", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691711802306/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691711802306, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "38d69429a9f343cfafa2e55a", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691711802306/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691711802306", + "revision": "9e5e7cb9bb4b4093b9be7b62", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691711802306", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 372254, + "total_amount": 372254, + "id": 1691711802306, + "history_id": 1691711802306, + "date_created": { + "type": 6, + "value": 1691711802306 + }, + "date_last_updated": { + "type": 6, + "value": 1691711802306 + }, + "date_of_expiration": { + "type": 6, + "value": 1691711802306 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 372.254,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "626c82ea70be4682af8fcf8d", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691848017758/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691848017758, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "06a313f676dc47c7994ffc10", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691848017758/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691848017758", + "revision": "055c4216e5424454ac93037e", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691848017758", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 378088, + "total_amount": 378088, + "id": 1691848017758, + "history_id": 1691848017758, + "date_created": { + "type": 6, + "value": 1691848017758 + }, + "date_last_updated": { + "type": 6, + "value": 1691848017758 + }, + "date_of_expiration": { + "type": 6, + "value": 1691848017758 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 378.088,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "f6aa395652184557a1e8c766", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692027842104/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692027842104, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "89768b59324a452685d94309", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692027842104/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692027842104", + "revision": "8061181ed2344eb6ad48ec76", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692027842104", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 456006, + "total_amount": 456006, + "id": 1692027842104, + "history_id": 1692027842104, + "date_created": { + "type": 6, + "value": 1692027842104 + }, + "date_last_updated": { + "type": 6, + "value": 1692027842104 + }, + "date_of_expiration": { + "type": 6, + "value": 1692027842104 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 456.006,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "03c7b93e55854ff7938dcaec", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692250715020/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692250715020, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "1226a9de412f4150bb46e257", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692250715020/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692250715020", + "revision": "c316738cd69c42fc858b8ec9", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692250715020", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 475181, + "total_amount": 475181, + "id": 1692250715020, + "history_id": 1692250715020, + "date_created": { + "type": 6, + "value": 1692250715020 + }, + "date_last_updated": { + "type": 6, + "value": 1692250715020 + }, + "date_of_expiration": { + "type": 6, + "value": 1692250715020 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 475.181,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "cef43598bffe4bafa2942f2d", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695079270157 + } + }, + "revision": "cf4e485383a147c6af1ad144", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692487270158, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1500, + "installment_amount": 1500, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "b83470567b8445e982dc67a4", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692487270158", + "revision": "2667ae5f0d3145c9b599c226", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "id": 1692487270158, + "history_id": 1692487270158, + "date_created": { + "type": 6, + "value": 1692487270158 + }, + "date_last_updated": { + "type": 6, + "value": 1692487270158 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "99687a2090aa44aab559b59a", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158/description", + "content": { + "type": 5, + "value": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84", + "revision": "334b3c5ab7844120839ae6d0", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695079578184 + } + }, + "revision": "b6346fa07f534fc48833d1ee", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692487578184, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1500, + "installment_amount": 1500, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "73aea47ae89c4ab9a7188041", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692487578184", + "revision": "039cf797fd5348588d1db037", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "id": 1692487578184, + "history_id": 1692487578184, + "date_created": { + "type": 6, + "value": 1692487578184 + }, + "date_last_updated": { + "type": 6, + "value": 1692487578184 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "4d553f94316c42a4b5337f04", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184/description", + "content": { + "type": 5, + "value": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84", + "revision": "0111bc679b844ff7b74a362b", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692488711638/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692488711638, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "245b476690d74a009d18665f", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692488711638/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692488711638", + "revision": "72e8b13a4d494d37a5ed03e4", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692488711638", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 328542, + "total_amount": 328542, + "id": 1692488711638, + "history_id": 1692488711638, + "date_created": { + "type": 6, + "value": 1692488711638 + }, + "date_last_updated": { + "type": 6, + "value": 1692488711638 + }, + "date_of_expiration": { + "type": 6, + "value": 1692488711638 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 328.542,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "80886970407f43da9cd8abed", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695240164836 + } + }, + "revision": "275fa02c1cf44ac19939f2b1", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692648164836, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1500, + "installment_amount": 1500, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "f817ffdc9667411b83ccf2ce", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692648164836", + "revision": "b845aa1f24e4423ca501724a", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "id": 1692648164836, + "history_id": 1692648164836, + "date_created": { + "type": 6, + "value": 1692648164836 + }, + "date_last_updated": { + "type": 6, + "value": 1692666231441 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1692666231441 + }, + "money_release_date": { + "type": 6, + "value": 1692666231441 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "77089b989c374cf7b611bd63", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836/description", + "content": { + "type": 5, + "value": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84", + "revision": "71e07b88973246be8c502c35", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666772551/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692666772551, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "8a9161b79a054110a9ebdfff", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666772551/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692666772551", + "revision": "59c193f22b8c4830a700b9e7", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666772551", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 285329, + "total_amount": 285329, + "id": "1692666772551", + "history_id": "1692666772551", + "date_created": { + "type": 6, + "value": 1692666772551 + }, + "date_last_updated": { + "type": 6, + "value": 1692666772551 + }, + "date_of_expiration": { + "type": 6, + "value": 1692666772551 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 285.329,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "ad3d05e7d99f43aabd9b3305", + "revision_nr": 1, + "created": 1702563036374, + "modified": 1702563036374 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666803752/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692666803752, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "ca3d7ae050064825ae155669", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666803752/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692666803752", + "revision": "9a3d05bf60f849d18be1c44c", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666803752", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 285329, + "total_amount": 285329, + "id": "1692666803752", + "history_id": "1692666803752", + "date_created": { + "type": 6, + "value": 1692666803752 + }, + "date_last_updated": { + "type": 6, + "value": 1692666803752 + }, + "date_of_expiration": { + "type": 6, + "value": 1692666803752 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 285.329,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "88ce5c8a8879478694960c55", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692730130844/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692730130844, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "b45c40e8a9104773a58d6f5f", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692730130844/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692730130844", + "revision": "8b4cf64df6724eb7b42097a8", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692730130844", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 282682, + "total_amount": 282682, + "id": "1692730130844", + "history_id": "1692730130844", + "date_created": { + "type": 6, + "value": 1692730130844 + }, + "date_last_updated": { + "type": 6, + "value": 1692730130844 + }, + "date_of_expiration": { + "type": 6, + "value": 1692730130844 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 282.682,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "0ab30132819c4c6eac80aece", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692751123570/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692751123570, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 400, + "installment_amount": 400, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "b1352176993b49309d49dc68", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692751123570/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692751123570", + "revision": "7e2b06bcd1444d9ba7a32f7c", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692751123570", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 526629, + "total_amount": 526629, + "id": "1692751123570", + "history_id": "1692751123570", + "date_created": { + "type": 6, + "value": 1692751123570 + }, + "date_last_updated": { + "type": 6, + "value": 1692751123570 + }, + "date_of_expiration": { + "type": 6, + "value": 1692751123570 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 526.629,00 IVIP por 400,00 BRL", + "status_detail": "accredited" + }, + "revision": "0989a82de54c4590b3384da8", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692814492618/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692814492618, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 500, + "installment_amount": 500, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "609509a7715944c6956e301d", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692814492618/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692814492618", + "revision": "baf38e1205b04392b87f2b08", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692814492618", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 614430, + "total_amount": 614430, + "id": "1692814492618", + "history_id": "1692814492618", + "date_created": { + "type": 6, + "value": 1692814492618 + }, + "date_last_updated": { + "type": 6, + "value": 1692814492618 + }, + "date_of_expiration": { + "type": 6, + "value": 1692814492618 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 614.430,00 IVIP por 500,00 BRL", + "status_detail": "accredited" + }, + "revision": "bff4158c780a4f42b01f790d", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697297622264 + } + }, + "revision": "83cf4a9dd3e246689eaaeb3f", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694705622264, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2000, + "installment_amount": 2000, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "b69c5d392ff8499aaca33a02", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1694705622264", + "revision": "f44bc9412ead49ab93fd559c", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "id": "1694705622264", + "history_id": "1694705622264", + "date_created": { + "type": 6, + "value": 1694705622264 + }, + "date_last_updated": { + "type": 6, + "value": 1694716697493 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1694716697493 + }, + "money_release_date": { + "type": 6, + "value": 1694716697493 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "eefc91ee1fbb4d2a84db667f", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264/description", + "content": { + "type": 5, + "value": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0625.7521.4502.4773-84", + "revision": "1fcb76331ebe46e49ad69674", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694719090426/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694719090426, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2000, + "installment_amount": 2000, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "cb92cf598e384356b78d83d4", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694719090426/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1694719090426", + "revision": "f6552316b2f4443ebca5f119", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694719090426", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 2446285, + "total_amount": 2446285, + "id": "1694719090426", + "history_id": "1694719090426", + "date_created": { + "type": 6, + "value": 1694719090426 + }, + "date_last_updated": { + "type": 6, + "value": 1694719090426 + }, + "date_of_expiration": { + "type": 6, + "value": 1694719090426 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 2.446.285,00 IVIP por 2.000,00 BRL", + "status_detail": "accredited" + }, + "revision": "05b78dee40894b19bb38de61", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1695328321082/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695328321082, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1136670, + "installment_amount": 1136670, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "f7180c89cdad410ea2490792", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1695328321082/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1695328321082", + "revision": "9185c5189f254492ae44f0be", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1695328321082", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 1136670, + "total_amount": 1136670, + "id": "1695328321082", + "history_id": "1695328321082", + "date_created": { + "type": 6, + "value": 1695328321082 + }, + "date_last_updated": { + "type": 6, + "value": 1695328321082 + }, + "date_of_expiration": { + "type": 6, + "value": 1758486721058 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "8f3a54d8733e48d083544159", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1695328321082/description", + "content": { + "type": 5, + "value": "Investimento de 1.136.670,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 21/09/2025 - P9A02KSL", + "revision": "c50cdd81a2144f9f9d3b48bd", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1696508927650/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696508927650, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 4958277, + "installment_amount": 4958277, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "2ac2b7815d7b4556a9a50a98", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1696508927650/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1696508927650", + "revision": "5fbe969cc153403c86f409fd", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1696508927650", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "062575214502477384", + "payment_method": "staking", + "original_amount": 4958277, + "total_amount": 4958277, + "id": "1696508927650", + "history_id": "1696508927650", + "date_created": { + "type": 6, + "value": 1696508927650 + }, + "date_last_updated": { + "type": 6, + "value": 1696508927650 + }, + "date_of_expiration": { + "type": 6, + "value": 1699187327619 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "350e9b8790c3422daa89de7d", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1696508927650/description", + "content": { + "type": 5, + "value": "Investimento de 4.958.277,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27", + "revision": "d84036aef9644b76adcc609a", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history", + "content": { + "type": 1, + "value": {}, + "revision": "c910e31a916944fbbcc26b59", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "f0069757858649f89f3c6738", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "analysisRequested": { + "type": 6, + "value": 1691240400848 + } + }, + "revision": "e052955e63d747e6b6b6df70", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384", + "content": { + "type": 1, + "value": { + "dataModificacao": 1690559154331, + "dateValidity": 1690559154379, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } + }, + "revision": "cfcdc4faef1d450cb4d45b82", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/065013731763701400/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "150.00000000", + "symbol": "BRL", + "value": 30.33 + }, + "revision": "6c085992ca854f6987b401d9", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/065013731763701400/balances", + "content": { + "type": 1, + "value": {}, + "revision": "9f687baf71dd4356bf4840eb", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history/1689114820357/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "7f4f6a69462840d7a79b4c61", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history/1689114820357", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 150, + "total_amount": 150, + "history_id": 1689114820357, + "id": 1689114820357, + "date_created": { + "type": 6, + "value": 1689114820357 + }, + "date_last_updated": { + "type": 6, + "value": 1689691551563 + }, + "date_of_expiration": { + "type": 6, + "value": 1691706820357 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689691551563 + }, + "money_release_date": { + "type": 6, + "value": 1689691551563 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "d33f358f50ba46128fd80e75", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history/1689114820357/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0650.1373.1763.7014-00", + "revision": "5ee0e51b8a9a4b68af4c0e78", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history", + "content": { + "type": 1, + "value": {}, + "revision": "1577240166bb4d6eb59fd6c6", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/065013731763701400/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "d4bb91715be3488b8e2725e8", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/065013731763701400/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "d1e92ef4c67043afb1b53466", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/065013731763701400", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689114736496, + "dateValidity": 1689114736496, + "totalValue": 30.93, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1691895600000 + } + }, + "revision": "dcd34f79310042958337d261", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/balances", + "content": { + "type": 1, + "value": {}, + "revision": "068f3d24666b499fae5c23cf", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, + "revision": "382630867a9e4ef0b7a1c158", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "b36688d81c3e477c921a8a57", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "ec87b1ac685c4ba4ae8b489b", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "b4bddbb5efcb4baca29bf751", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0 + }, + "revision": "09bd006a9b2342f8adb354aa", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/qr_code", + "content": { + "type": 5, + "value": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540520.205802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558382385016304DD50", + "revision": "6cff220183564962bd84c511", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/ticket_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/payments/55838238501/ticket?caller_id=1310149122&hash=983b907e-205f-4db2-9b0a-8e3b51ecea21", + "revision": "8b8110063103436e9e661ab7", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/qr_code_base64", + "content": { + "type": 5, + "value": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJf0lEQVR42u3dQW7jOhIGYGrlY/io9lF9hLfUShwEebFZVVTizGCAbunzpo0okj72isX8LLb+x3/+aYyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjH+2cW3xc/38ye3r0ueXpff716XPz/Jx8+Pzy/3rh89f/rh0+fjn49Klbx+X/v1JvWt4ICMjIyMjIyMjI+NZjOPFD0j9Eo2310s+fmebjay9aH18Tr19ymBkZGRkZGRkZGQ8g/H+NVt/vvZzav/v+/trjt++XrulouHyGtkWjI9URoR3ra8ChZGRkZGRkZGRkfHkxj68NiyxR/WwVP8cUBvHET/DOFZGRkZGRkZGRkZGxjx/ny6opxX6Zage2uv2QR0Li1BhXMIqPiMjIyMjIyMjI+M5jT0mXJawQj8s3q8lcr6+vsTl/JrBqaXGf5/vYWRkZGRkZGRkZPzbjXUv6VJW1v8/X/6X/a6MjIyMjIyMjIyMf7Nx5xPS6HE5v5dYehjrcwvpWlbxL/3dDyMjIyMjIyMjI+PRjVuqFi6pjLiO6/HPNPqWOri0lIIJW1HjL4exLm+s2TMyMjIyMjIyMjIe1HhNP0mRmSXQHiXwnkd2G3ucxwxODePcGBkZGRkZGRkZGc9mXEu7xLzRs5V+LaHLS5+v4j9Sc5d7HGsfbr+/le9hZGRkZGRkZGRkPJ5x6KSYOyC29JOhlcs1reKnxfuWRhYP/xxoD0ZGRkZGRkZGRsYTGts4bb/Mw+xp1t/m5wiFkW2py8tafnn2FwNGRkZGRkZGRkbG4xtzLD2vtffeS0DmUXLu889SBl3VS3ogIyMjIyMjIyMj4xmMucf5kJS5hBJhfgpo2zuGaBDFnaOpW8x7GXZGRkZGRkZGRkbGoxlz9vxS3jb8TmygGIqGJQ2x7fVWfKR64t18DyMjIyMjIyMjI+NhjD3EyYeXXPealN/LftNvurykMqKlL7GNOiMjIyMjIyMjI+NZjDmN/ijYNnYr70ndyllD9Tk5jDNvu9gZGRkZGRkZGRkZT2YM0/a6qTSeEbRXK0yHeHsrlfNOdoaRkZGRkZGRkZHxQMZh/h4bH157beXSS/UwdGfpKbqeC4tezizqb5+HxMjIyMjIyMjIyHg0Y+1NHl87RM5ju8RbbIiei4bL/BWTFXpGRkZGRkZGRkbGsxnXFGzJLVh6qRWeU/v7RD1Lx89W6OPm1Gu+jZGRkZGRkZGRkfHYxp5asFyni+41jb57fNBaCot46bbTZHFhZGRkZGRkZGRkPJMxZ2damMgPM/rQUjGu9D9f8ii0Ni75j+XIbJspIyMjIyMjIyMj4zmMwwp9zs6sr6hLjpzvhNl773u9FdOgx3hO2LfKyMjIyMjIyMjIeAZjXJj/ZhU/5dxzu8Q4xD7dk7p76dF+0YedkZGRkZGRkZGR8e83zub4W2mX2Mpy/jig25hzXycbT7+5tL2Vs2dkZGRkZGRkZGQ8mjEuzD9eKZicas/9WmqqfS8ys83veqQ0DSMjIyMjIyMjI+OpjLM0ep7j13h7G6f/LWRw5nXAOj8gNERvGBkZGRkZGRkZGc9hfCbWl5RqzztHQ+Q892KZ3dXLHwGWGfb2c63AyMjIyMjIyMjIeCxjn3RAnK7Zf2O8xyaLeQdqrkuuk3f9sJeUkZGRkZGRkZGR8VjGIeqSZ/2tTP+rOs/6Qxxmp+1iKBre7q3IyMjIyMjIyMjIeChjTcG0FGa/TLq87EBm2J0BDQ/8sf8jIyMjIyMjIyMj47GMsVv5bYyux97kLR4HGr/s7gqth4j2wr+99XcFRkZGRkZGRkZGxgMZ89FAYf6+Jdqatn4+XptBY9+X2aBzl5c2zcIzMjIyMjIyMjIynsEYY+kpez6Ntw9r9o/XgHZW3++x3cuy15Gxf1/PMDIyMjIyMjIyMh7SeE0L82HnaG12fnkZ4xbSfAxR2znzc/tddoaRkZGRkZGRkZHxgMaQednps7JXK4wR+IDN2Zkair+WeoKRkZGRkZGRkZHxdMYYbLmOF/Ny/hpaKu7tE30+MJYjuSNjY2RkZGRkZGRkZDytsU9akscmi3kcYfH+MhlHbhJTQ/Exg8PIyMjIyMjIyMh4FmPNs8Qntck202tpoBjSNOOS/6w3TK4ebvW/i5GRkZGRkZGRkfHYxtxbMb+kfkmbQWOspqWtqC1Ctln781vPHRkZGRkZGRkZGRkZD26Ms/77mILpk6JhPDXoPs76Z9tMl1kEvnaCeWPNnpGRkZGRkZGRkfFoxiXR6slCa+l6Hjee/nBpNztT6xJGRkZGRkZGRkbGExnnpwbFBoptjMy0+a7QWwmzh2aN6+SvAWM8h5GRkZGRkZGRkfEsxjxtDwmX/Oza7LylbovPzxC02TnFaKA9GBkZGRkZGRkZGc9m7GGpPuRZWuKvpTJoqdQIWfiYymlJHUqE9Xf9HxkZGRkZGRkZGRn/bmPOzjxKw5UQOW/p9M42ae6SEzfxrr3O6IyMjIyMjIyMjIynMra0PXR4ZEu9FZ9z/KiuIZrUyHyaWA+HiDIyMjIyMjIyMjKeyhixt9JAsRVa2m/aQ9HQJxXGZd/Yw3I+IyMjIyMjIyMj46mMgyif/xMaKM7atMSXzGix/2Ib39VLJxhGRkZGRkZGRkbGMxhzjKU2XAm03ApxnXSCiVtRw4C2UGE8/xsYGRkZGRkZGRkZz2lskzxLT4/MHVyGpMzPIZoaz2mTUDwjIyMjIyMjIyPjOYw7IZr2TbAl5muWFL1pe03Ta9uYnv4+wMjIyMjIyMjIyHgWY57sXyf59BpC36kMbn22OfVSFubXyV0LIyMjIyMjIyMj45mMS4mxtNSLpZ4a1MLpQ6FWmPVWzKmcX9cKjIyMjIyMjIyMjAc03uOsfwklQh/DL7EOuO4vw4fb67tiqTHczsjIyMjIyMjIyHhW407APPRr2b09PzlkZ56Q7Xc5e0ZGRkZGRkZGRsbjG5fSSTFHZobV92d0ffzSXgv8+a8Bz0st7kllZGRkZGRkZGRkPJux7zwpfh5lHMNkv3YrX1MDmPzAtBWVkZGRkZGRkZGR8VTGvJf0iR2+bIM6vW1LJ3zOEust8Gsq58fsDCMjIyMjIyMjI+OxjH/mh5GRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGR8Q80/gd+PCOEIzZrpQAAAABJRU5ErkJggg==", + "revision": "683695bc8b1147f681012ef0", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "0a42a8f125fd4b01b190677d", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 20, + "total_amount": 20.2, + "history_id": 1679067982009, + "id": 55838238501, + "date_created": { + "type": 6, + "value": 1679067982887 + }, + "date_last_updated": { + "type": 6, + "value": 1679154643000 + }, + "date_of_expiration": { + "type": 6, + "value": 1679154382597 + }, + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "cancelled", + "status_detail": "expired", + "currency_id": "BRL" + }, + "revision": "284b8466208e432b97bcb128", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0667.4940.3784.9818-40", + "revision": "fb9f39b93ed7489487a553f0", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history", + "content": { + "type": 1, + "value": {}, + "revision": "4dd024f30c944dd498f2b4d1", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "f907172a499d49829537a0f7", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "6937a57978314db498f62d36", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679067783161, + "dateValidity": 1679067783161, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "6bab275378df4ee9b27d59e2", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "20.00000000", + "symbol": "BRL", + "value": 3.86 + }, + "revision": "04f4c346f4fe4e66a9aff1f4", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "12224831.00000000", + "symbol": "IVIP", + "value": 1888.088 + }, + "revision": "adb15d9b7de642a2b7f17739", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/balances", + "content": { + "type": 1, + "value": {}, + "revision": "2b48a5c93fb2428f8d2b9b57", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684181007832/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "f8226d7d17674dfab8900913", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684181007832", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1600, + "total_amount": 1600, + "history_id": 1684181007832, + "id": 1684181007832, + "date_created": { + "type": 6, + "value": 1684181007832 + }, + "date_last_updated": { + "type": 6, + "value": 1684185342475 + }, + "date_of_expiration": { + "type": 6, + "value": 1686773007832 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684185342475 + }, + "money_release_date": { + "type": 6, + "value": 1684185342475 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "e1e9601f8b874656b3130dee", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684181007832/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 0721.5687.2012.5989-10", + "revision": "76bb8d7806d141e48be9adde", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 134.08 + }, + "revision": "6b86dbf378b5453b8b3a3a35", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168/details", + "content": { + "type": 1, + "value": {}, + "revision": "e1f2454856b14426bcdff9e8", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "d9070adbc54d46eda2683a67", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 1676, + "total_amount": 1810.08, + "history_id": 1684623306168, + "id": 1684623306168, + "date_created": { + "type": 6, + "value": 1684623306168 + }, + "date_last_updated": { + "type": 6, + "value": 1684623306168 + }, + "date_of_expiration": { + "type": 6, + "value": 1687215306168 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "f7104bb75a244b7aba9df76f", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", + "revision": "e345ff6edc3f4c6388de9ef3", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624428265/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624428265, + "acquirer_reference": "", + "verification_code": 1684624428265, + "net_received_amount": 0, + "total_paid_amount": 3276, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "4521de87ea684c749de83b87", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624428265", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 15956517, + "total_amount": 15956517, + "id": 1684624428265, + "date_created": { + "type": 6, + "value": 1684624428265 + }, + "date_last_updated": { + "type": 6, + "value": 1684624428265 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624428265 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624428265, + "description": "Compra de 15.956.517,00 IVIP por 3.276,00 BRL" + }, + "revision": "3a1cfc6ac3a64a858f52ee39", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 105.92 + }, + "revision": "014b8374e8a245bdb87bdcdb", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509/details", + "content": { + "type": 1, + "value": {}, + "revision": "e113570dcdf84af390971100", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "adea73d4ffa34a58981c8532", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 1324, + "total_amount": 1429.92, + "history_id": 1684624857509, + "id": 1684624857509, + "date_created": { + "type": 6, + "value": 1684624857509 + }, + "date_last_updated": { + "type": 6, + "value": 1684624857509 + }, + "date_of_expiration": { + "type": 6, + "value": 1687216857509 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "b1696638168b498a90d34191", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", + "revision": "f676d6c0a83e4f7eb1e736c7", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624906138/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624906138, + "acquirer_reference": "", + "verification_code": 1684624906138, + "net_received_amount": 0, + "total_paid_amount": 1324, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "f7f758b953e14d1ca1e836eb", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624906138", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 6448848, + "total_amount": 6448848, + "id": 1684624906138, + "date_created": { + "type": 6, + "value": 1684624906138 + }, + "date_last_updated": { + "type": 6, + "value": 1684624906138 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624906138 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624906138, + "description": "Compra de 6.448.848,00 IVIP por 1.324,00 BRL" + }, + "revision": "9e5901efcd1d410091ebbe13", + "revision_nr": 1, + "created": 1702563036375, + "modified": 1702563036375 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687293918217/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "c84d47c91ce647fbb6085f2a", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687293918217", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1687293918217, + "id": 1687293918217, + "date_created": { + "type": 6, + "value": 1687293918217 + }, + "date_last_updated": { + "type": 6, + "value": 1687293955023 + }, + "date_of_expiration": { + "type": 6, + "value": 1689885918217 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1687293955023 + }, + "money_release_date": { + "type": 6, + "value": 1687293955023 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "19373020eb13484ba8f035f1", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687293918217/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0721.5687.2012.5989-10", + "revision": "04d143a7e64841a089aa144a", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024615/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 3, + "payment_method_reference_id": 1687294024615, + "acquirer_reference": "", + "verification_code": 1687294024615, + "net_received_amount": 0, + "total_paid_amount": 452.52, + "overpaid_amount": 0, + "installment_amount": 452.52, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "9fc746086f6e41ab8a99c804", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024615", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 452.52, + "total_amount": 452.52, + "id": 1687294024615, + "contract_id": "1684623306168", + "date_created": { + "type": 6, + "value": 1687294024615 + }, + "date_last_updated": { + "type": 6, + "value": 1687294024615 + }, + "date_of_expiration": { + "type": 6, + "value": 1687294024615 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1687294024615 + }, + "revision": "6e3db8289b874967896c299f", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024615/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 1 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", + "revision": "e0d485c9ec1e47c58476ece3", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024774/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 3, + "payment_method_reference_id": 1687294024774, + "acquirer_reference": "", + "verification_code": 1687294024774, + "net_received_amount": 0, + "total_paid_amount": 357.48, + "overpaid_amount": 0, + "installment_amount": 357.48, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "f9dfa557c0ef4fb6bd9e2607", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024774", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 357.48, + "total_amount": 357.48, + "id": 1687294024774, + "contract_id": "1684624857509", + "date_created": { + "type": 6, + "value": 1687294024774 + }, + "date_last_updated": { + "type": 6, + "value": 1687294024774 + }, + "date_of_expiration": { + "type": 6, + "value": 1687294024774 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1687294024774 + }, + "revision": "c2a4a4f5fd8340648edc0846", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024774/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 1 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", + "revision": "a43d017a522f45ab993ba7b5", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1688524692305/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688524692305, + "acquirer_reference": "", + "verification_code": 1688524692305, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "35876c95825d43cfad1f9955", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1688524692305", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1688524692305, + "date_created": { + "type": 6, + "value": 1688524692305 + }, + "date_last_updated": { + "type": 6, + "value": 1688524692305 + }, + "date_of_expiration": { + "type": 6, + "value": 1691203092305 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688524692305 + }, + "revision": "05ef9c4540fb4e92ac0dee7e", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1688524692305/description", + "content": { + "type": 5, + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/4/2023", + "revision": "75a994c7118f4c5c99f111f7", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1688525524308/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688525524308, + "acquirer_reference": "", + "verification_code": 1688525524308, + "net_received_amount": 0, + "total_paid_amount": 50, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "b8e5ff26c40840caa0f5d4c2", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1688525524308", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 155466, + "total_amount": 155466, + "id": 1688525524308, + "date_created": { + "type": 6, + "value": 1688525524308 + }, + "date_last_updated": { + "type": 6, + "value": 1688525524308 + }, + "date_of_expiration": { + "type": 6, + "value": 1688525524308 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688525524308, + "description": "Compra de 155.466,00 IVIP por 50,00 BRL" + }, + "revision": "fa7fd4b58b7a4936a4d1af7f", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689182003298/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "94130ce192d44cb8b1a6c98f", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689182003298", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 2500000, + "total_amount": 2500000, + "history_id": 1689182003298, + "id": 1689182003298, + "date_created": { + "type": 6, + "value": 1689182003298 + }, + "date_last_updated": { + "type": 6, + "value": 1689256552452 + }, + "date_of_expiration": { + "type": 6, + "value": 1689182003298 + }, + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1689256552452 + }, + "money_release_date": { + "type": 6, + "value": 1689256552452 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "20009109d3dc4bf59d078338", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689182003298/description", + "content": { + "type": 5, + "value": "Saque de 2.500.000,00 IVIP para a carteira 0xA7d5Cb00F2824b3D3Bf7b0a4AFe13175618B0FdC", + "revision": "42b780a8a638416596857269", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689689388308/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "94f0a002a89d4203b02b4ab8", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689689388308", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 800, + "total_amount": 800, + "history_id": 1689689388308, + "id": 1689689388308, + "date_created": { + "type": 6, + "value": 1689689388308 + }, + "date_last_updated": { + "type": 6, + "value": 1689690587708 + }, + "date_of_expiration": { + "type": 6, + "value": 1692281388308 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689690587708 + }, + "money_release_date": { + "type": 6, + "value": 1689690587708 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "84819dabb93b4a279a85c85e", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689689388308/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 800,00 para a carteira iVip 0721.5687.2012.5989-10", + "revision": "3b5c09e35803483e9afb76a0", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928096/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 2, + "payment_method_reference_id": 1689690928096, + "acquirer_reference": "", + "verification_code": 1689690928096, + "net_received_amount": 0, + "total_paid_amount": 452.52, + "overpaid_amount": 0, + "installment_amount": 452.52, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "de63fa7cfd2045d2a9674034", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928096", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 452.52, + "total_amount": 452.52, + "id": 1689690928096, + "contract_id": "1684623306168", + "date_created": { + "type": 6, + "value": 1689690928096 + }, + "date_last_updated": { + "type": 6, + "value": 1689690928096 + }, + "date_of_expiration": { + "type": 6, + "value": 1689690928096 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1689690928096 + }, + "revision": "9716fc7e5ad54d91b39cc922", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928096/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 2 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", + "revision": "ed3c30079e364d8397225d30", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928337/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 2, + "payment_method_reference_id": 1689690928337, + "acquirer_reference": "", + "verification_code": 1689690928337, + "net_received_amount": 0, + "total_paid_amount": 357.48, + "overpaid_amount": 0, + "installment_amount": 357.48, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "40ab02c0aadc485bac7e4a70", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928337", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 357.48, + "total_amount": 357.48, + "id": 1689690928337, + "contract_id": "1684624857509", + "date_created": { + "type": 6, + "value": 1689690928337 + }, + "date_last_updated": { + "type": 6, + "value": 1689690928337 + }, + "date_of_expiration": { + "type": 6, + "value": 1689690928337 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1689690928337 + }, + "revision": "a84bb5899f0042088ffc0572", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928337/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 2 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", + "revision": "697c2de6097440f0aaf531e1", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691203130486/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691203130486, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8160000, + "installment_amount": 8160000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "9c470014667346af85190160", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691203130486/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691203130486", + "revision": "179c87d75804437f84ad9c71", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691203130486", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": 1691203130486, + "history_id": 1691203130486, + "date_created": { + "type": 6, + "value": 1691203130486 + }, + "date_last_updated": { + "type": 6, + "value": 1691203130486 + }, + "date_of_expiration": { + "type": 6, + "value": 1691203130486 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "32f69758b2b24995bc2a09ff", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691203130486/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", + "revision": "9d2eebdf76d54dcead5ff2fd", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691556958476/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691556958476, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200000, + "installment_amount": 200000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "e5a380bf2437427a9bc1dbcc", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691556958476/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691556958476", + "revision": "ec84294a2d394ca9b9d6122e", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691556958476", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 200000, + "total_amount": 200000, + "id": 1691556958476, + "history_id": 1691556958476, + "date_created": { + "type": 6, + "value": 1691556958476 + }, + "date_last_updated": { + "type": 6, + "value": 1691556958476 + }, + "date_of_expiration": { + "type": 6, + "value": 1694235358473 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "1eabfbd1af1648b1bb66ff21", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691556958476/description", + "content": { + "type": 5, + "value": "Investimento de 200.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/9/2023", + "revision": "777fa7632fe74ef08989d8ea", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691557017053/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691557017053, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 30, + "installment_amount": 30, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "580d1db2a54f4c1d8e2751d2", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691557017053/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691557017053", + "revision": "d58677c736e14ea988a67f37", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691557017053", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 30, + "total_amount": 30, + "id": 1691557017053, + "history_id": 1691557017053, + "date_created": { + "type": 6, + "value": 1691557017053 + }, + "date_last_updated": { + "type": 6, + "value": 1691557017053 + }, + "date_of_expiration": { + "type": 6, + "value": 1717909017027 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited" + }, + "revision": "6e0daf7b08504f4fa0b04131", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691557017053/description", + "content": { + "type": 5, + "value": "Investimento de 30,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/9/2024", + "revision": "b41e00652f6e4c558c892d4e", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694808463023 + } + }, + "revision": "2e6a0cd4a59146b2ad111578", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692216463023, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 720, + "installment_amount": 720, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "6e6bae722a2f412ca714f1bc", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1692216463023", + "revision": "36899e5c86c84438abb3bd8d", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 720, + "total_amount": 720, + "id": 1692216463023, + "history_id": 1692216463023, + "date_created": { + "type": 6, + "value": 1692216463023 + }, + "date_last_updated": { + "type": 6, + "value": 1692217576651 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1692217576651 + }, + "money_release_date": { + "type": 6, + "value": 1692217576651 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "6609f931fa504314abf61b65", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023/description", + "content": { + "type": 5, + "value": "Deposito de um valor 720,00 para a carteira iVip 0721.5687.2012.5989-10", + "revision": "7cd7858d4bba4549a816f031", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296799894/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 3, + "installments_payable": 1, + "payment_method_reference_id": 1692296799894, + "acquirer_reference": "", + "verification_code": 1692296799894, + "net_received_amount": 0, + "total_paid_amount": 452.52, + "overpaid_amount": 0, + "installment_amount": 452.52, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "7c8baf9a67ad47cc86f8cb67", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296799894", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 452.52, + "total_amount": 452.52, + "id": 1692296799894, + "contract_id": "1684623306168", + "date_created": { + "type": 6, + "value": 1692296799894 + }, + "date_last_updated": { + "type": 6, + "value": 1692296799894 + }, + "date_of_expiration": { + "type": 6, + "value": 1692296799894 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1692296799894 + }, + "revision": "798bece973a14869beabf808", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296799894/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 3 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", + "revision": "5ed803bb860943e19175634e", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296800012/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 3, + "installments_payable": 1, + "payment_method_reference_id": 1692296800012, + "acquirer_reference": "", + "verification_code": 1692296800012, + "net_received_amount": 0, + "total_paid_amount": 357.48, + "overpaid_amount": 0, + "installment_amount": 357.48, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "77f06e0354334789958b6a25", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296800012", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 357.48, + "total_amount": 357.48, + "id": 1692296800012, + "contract_id": "1684624857509", + "date_created": { + "type": 6, + "value": 1692296800012 + }, + "date_last_updated": { + "type": 6, + "value": 1692296800012 + }, + "date_of_expiration": { + "type": 6, + "value": 1692296800012 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1692296800012 + }, + "revision": "b2959a698b7b49369c8cf36b", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296800012/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 3 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", + "revision": "26435ea283ef435dad4ece55", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237371329/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694237371329, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200000, + "installment_amount": 200000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "a38a14331b48458ca66c0ace", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237371329/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694237371329", + "revision": "2b482c80065b489582a612f4", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237371329", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 204000, + "total_amount": 204000, + "id": "1694237371329", + "history_id": "1694237371329", + "date_created": { + "type": 6, + "value": 1694237371329 + }, + "date_last_updated": { + "type": 6, + "value": 1694237371329 + }, + "date_of_expiration": { + "type": 6, + "value": 1694237371329 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "bcb29aeb321c479999748b83", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237371329/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 200.000,00 IVIP com um rendimento de +4.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "244b542c2fb84d0bae32d538", + "revision_nr": 1, + "created": 1702563036376, + "modified": 1702563036376 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237443497/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694237443497, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1030591, + "installment_amount": 1030591, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "66dfb3901a2645beb9ba8a0c", + "revision_nr": 1, + "created": 1702563036377, + "modified": 1702563036377 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237443497/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694237443497", + "revision": "8ea47a84f92f4837b58abe7c", + "revision_nr": 1, + "created": 1702563036377, + "modified": 1702563036377 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237443497", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 1030591, + "total_amount": 1030591, + "id": "1694237443497", + "history_id": "1694237443497", + "date_created": { + "type": 6, + "value": 1694237443497 + }, + "date_last_updated": { + "type": 6, + "value": 1696462319577 + }, + "date_of_expiration": { + "type": 6, + "value": 1696829443496 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_staked_amount", + "money_release_date": { + "type": 6, + "value": 1696462319577 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "740b17d2bddb4df5b16024e1", + "revision_nr": 1, + "created": 1702563036377, + "modified": 1702563036377 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237443497/description", + "content": { + "type": 5, + "value": "Investimento de 1.030.591,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 09/10/2023 - Y12XDT27", + "revision": "75022f95dfc14b9d8e02532b", + "revision_nr": 1, + "created": 1702563036377, + "modified": 1702563036377 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697304530286 + } + }, + "revision": "b9903095b73a4eafa6014600", + "revision_nr": 1, + "created": 1702563036377, + "modified": 1702563036377 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694712530286, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 820, + "installment_amount": 820, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "0737645a0ff14ffcb48d666c", + "revision_nr": 1, + "created": 1702563036377, + "modified": 1702563036377 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694712530286", + "revision": "4acbd150c6514f25833addbe", + "revision_nr": 1, + "created": 1702563036377, + "modified": 1702563036377 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 820, + "total_amount": 820, + "id": "1694712530286", + "history_id": "1694712530286", + "date_created": { + "type": 6, + "value": 1694712530286 + }, + "date_last_updated": { + "type": 6, + "value": 1694717255639 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1694717255639 + }, + "money_release_date": { + "type": 6, + "value": 1694717255639 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "3abbf933f6c14d59a08398db", + "revision_nr": 1, + "created": 1702563036377, + "modified": 1702563036377 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286/description", + "content": { + "type": 5, + "value": "Deposito de um valor 820,00 BRL para a carteira iVip 0721.5687.2012.5989-10", + "revision": "f10d9d609c6f4ad3b402bf14", + "revision_nr": 1, + "created": 1702563036377, + "modified": 1702563036377 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447405/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694723447405, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 452.52, + "installment_amount": 452.52, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 4, + "installments_payable": 0 + }, + "revision": "cace423b289346f8aa2c5325", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447405/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694723447405", + "revision": "06e1b8c9b2954146946c9268", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447405", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 452.52, + "total_amount": 452.52, + "id": "1694723447405", + "history_id": "1694723447405", + "date_created": { + "type": 6, + "value": 1694723447405 + }, + "date_last_updated": { + "type": 6, + "value": 1694723447405 + }, + "date_of_expiration": { + "type": 6, + "value": 1694723447405 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "21faef87bf0346b3812cbed3", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447405/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 4 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", + "revision": "162aedcd60fa4559a50a9e79", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447463/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694723447463, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 357.48, + "installment_amount": 357.48, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 4, + "installments_payable": 0 + }, + "revision": "4cac30eff57948fcbdd8033b", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447463/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694723447463", + "revision": "4be68f3720d24479a0b0dca7", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447463", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 357.48, + "total_amount": 357.48, + "id": "1694723447463", + "history_id": "1694723447463", + "date_created": { + "type": 6, + "value": 1694723447463 + }, + "date_last_updated": { + "type": 6, + "value": 1694723447463 + }, + "date_of_expiration": { + "type": 6, + "value": 1694723447463 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "5c2f26ed5aad46b8b618383c", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447463/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 4 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", + "revision": "77076ea354d844d7a2ebda6f", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1696464489805/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696464489805, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "dcdd37903fb343dc8e81d3e6", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1696464489805/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1696464489805", + "revision": "c6b1f995ab244fd5b7231102", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1696464489805", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "072156872012598910", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": "1696464489805", + "history_id": "1696464489805", + "date_created": { + "type": 6, + "value": 1696464489805 + }, + "date_last_updated": { + "type": 6, + "value": 1696464489805 + }, + "date_of_expiration": { + "type": 6, + "value": 1699142889771 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "07bad6e3e7a94c828fb6dd08", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1696464489805/description", + "content": { + "type": 5, + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", + "revision": "2fc28e48b4d9447c91724a9c", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history", + "content": { + "type": 1, + "value": {}, + "revision": "98d23e580960479885af44c7", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 134.08 + }, + "revision": "7ace2e98f5fb4a26a66cbbf0", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168", + "content": { + "type": 1, + "value": { + "id": 1684623306168, + "type": "emprestimo", + "original_amount": 1676, + "total_amount": 1810.08, + "installments": 4, + "installment_amount": 452.52, + "date_created": { + "type": 6, + "value": 1684623306168 + }, + "history_id": 1684623306168, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "8d1f011cfcd24cba9c08fd4f", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", + "revision": "f7217604abb845e5b7c71419", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168/costs", + "content": { + "type": 2, + "value": {}, + "revision": "d176fd7fe0074fd597c15198", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 105.92 + }, + "revision": "9d642d5d1d134c81a9da416c", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509", + "content": { + "type": 1, + "value": { + "id": 1684624857509, + "type": "emprestimo", + "original_amount": 1324, + "total_amount": 1429.92, + "installments": 4, + "installment_amount": 357.48, + "date_created": { + "type": 6, + "value": 1684624857509 + }, + "history_id": 1684624857509, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "2b813d68fe7e45108068acc6", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", + "revision": "2a15138fc7a84946b7165c3c", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509/costs", + "content": { + "type": 2, + "value": {}, + "revision": "9aeef3b8872c442095f3e3ed", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "648614f14d9b47ad87366ae4", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 134.08 + }, + "revision": "7cc3f6e13f10496fa1d18b6b", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168", + "content": { + "type": 1, + "value": { + "id": 1684623306168, + "type": "emprestimo", + "original_amount": 1676, + "total_amount": 1810.08, + "installments": 4, + "installment_amount": 452.52, + "date_created": { + "type": 6, + "value": 1684623306168 + }, + "history_id": 1684623306168, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "a2adf8c5f7b949828f736c6c", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", + "revision": "08c579bfdccc47c98213307d", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168/costs", + "content": { + "type": 2, + "value": {}, + "revision": "a545bd89c1114807a512cce3", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 105.92 + }, + "revision": "8487b1d1c29443ce8eab8963", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509", + "content": { + "type": 1, + "value": { + "id": 1684624857509, + "type": "emprestimo", + "original_amount": 1324, + "total_amount": 1429.92, + "installments": 4, + "installment_amount": 357.48, + "date_created": { + "type": 6, + "value": 1684624857509 + }, + "history_id": 1684624857509, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "ca2da29af646492980dbf70e", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", + "revision": "a134f846abc24fc68cf33260", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509/costs", + "content": { + "type": 2, + "value": {}, + "revision": "a0f9382691654da5aed08493", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "9cf8d664a5df43229394e576", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 134.08 + }, + "revision": "4242cf96af9e4309898e4d11", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168", + "content": { + "type": 1, + "value": { + "id": 1684623306168, + "type": "emprestimo", + "original_amount": 1676, + "total_amount": 1810.08, + "installments": 4, + "installment_amount": 452.52, + "date_created": { + "type": 6, + "value": 1684623306168 + }, + "history_id": 1684623306168, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "452e33a85f624c48ad06a589", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", + "revision": "993daa59a2274f61948cc867", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168/costs", + "content": { + "type": 2, + "value": {}, + "revision": "defff3c4fa904155acdada32", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 105.92 + }, + "revision": "f6f24573e54d45bf8d8e7b29", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509", + "content": { + "type": 1, + "value": { + "id": 1684624857509, + "type": "emprestimo", + "original_amount": 1324, + "total_amount": 1429.92, + "installments": 4, + "installment_amount": 357.48, + "date_created": { + "type": 6, + "value": 1684624857509 + }, + "history_id": 1684624857509, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "db80117b43ff493ba27f32b2", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", + "revision": "6390f0ceeeda493592123758", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509/costs", + "content": { + "type": 2, + "value": {}, + "revision": "b3b55bd3ef95424db9d4ff6b", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308", + "content": { + "type": 1, + "value": {}, + "revision": "f39e96059d1044c89f5b3cd5", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 134.08 + }, + "revision": "031308046fb44dc0bd8e1f3a", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168", + "content": { + "type": 1, + "value": { + "id": 1684623306168, + "type": "emprestimo", + "original_amount": 1676, + "total_amount": 1810.08, + "installments": 4, + "installment_amount": 452.52, + "date_created": { + "type": 6, + "value": 1684623306168 + }, + "history_id": 1684623306168, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1694723447423 + } + }, + "revision": "8c7206b843234e35bf50c9ab", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", + "revision": "aa5794f44156491796928f65", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168/costs", + "content": { + "type": 2, + "value": {}, + "revision": "6abd318b411546a1b6e7f01c", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 105.92 + }, + "revision": "4cff713add7b4e56afd2646c", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509", + "content": { + "type": 1, + "value": { + "id": 1684624857509, + "type": "emprestimo", + "original_amount": 1324, + "total_amount": 1429.92, + "installments": 4, + "installment_amount": 357.48, + "date_created": { + "type": 6, + "value": 1684624857509 + }, + "history_id": 1684624857509, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1694723447480 + } + }, + "revision": "b4116c2666754edca47c7892", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", + "revision": "2981a083a8124aaeb0af63a6", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509/costs", + "content": { + "type": 2, + "value": {}, + "revision": "4d8772c0076e4a818d376d55", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309", + "content": { + "type": 1, + "value": {}, + "revision": "42fd09d91bf247999bc556ba", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "eb4e3e00b30b4f9daa6b9679", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 3000, + "limitUsed": 750, + "analysisRequested": { + "type": 6, + "value": 1684185845062 + }, + "lastReview": { + "type": 6, + "value": 1684186352172 + } + }, + "revision": "1fa38c5c154243e0bb6b0f05", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684180740501, + "dateValidity": 1684180740501, + "totalValue": 6472.835, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } + }, + "revision": "ce5991b0e05c450ba60ce287", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072270616449276800/balances", + "content": { + "type": 1, + "value": {}, + "revision": "9dbecf38298d44ada19772df", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072270616449276800/history", + "content": { + "type": 1, + "value": {}, + "revision": "c214d6b5ce144beeb1654a2e", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072270616449276800", + "content": { + "type": 1, + "value": { + "dataModificacao": 1683670601575, + "dateValidity": 1683670601575, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "ea2cd7cbd9e2425d88e2550f", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, + "revision": "dc77e5b535ea4729b5a8069b", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "44999.00000000", + "symbol": "IVIP", + "value": 15.26 + }, + "revision": "f9198aff4a7e4fe9835533dd", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/balances", + "content": { + "type": 1, + "value": {}, + "revision": "14d6020040df43d88431a039", + "revision_nr": 1, + "created": 1702563036378, + "modified": 1702563036378 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689017003664/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "0837aad366014f8a8e9e7856", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689017003664", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1689017003664, + "id": 1689017003664, + "date_created": { + "type": 6, + "value": 1689017003664 + }, + "date_last_updated": { + "type": 6, + "value": 1689025727768 + }, + "date_of_expiration": { + "type": 6, + "value": 1691609003664 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689025727768 + }, + "money_release_date": { + "type": 6, + "value": 1689025727768 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "401b60e8c5e94b2e9113c7a4", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689017003664/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0723.1653.8247.0090-10", + "revision": "ba5085dcd5ad4a05a27015fd", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689029121257/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689029121257, + "acquirer_reference": "", + "verification_code": 1689029121257, + "net_received_amount": 0, + "total_paid_amount": 50, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "f487ecb9b3af4e80b50c6e3d", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689029121257", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 44999, + "total_amount": 44999, + "id": 1689029121257, + "date_created": { + "type": 6, + "value": 1689029121257 + }, + "date_last_updated": { + "type": 6, + "value": 1689029121257 + }, + "date_of_expiration": { + "type": 6, + "value": 1689029121257 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689029121257, + "description": "Compra de 44.999,00 IVIP por 50,00 BRL" + }, + "revision": "1ff1c971fdf745bf8b616385", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history", + "content": { + "type": 1, + "value": {}, + "revision": "48c42f5ed6cf4d0d905c9522", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "db38648a5e85400e94686299", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "1e89f72b1d9e40cbb58e5263", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072316538247009010", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689016980183, + "dateValidity": 1689016980183, + "totalValue": 10.2, + "currencyType": "USD", + "balancesModificacao": 1689822000000 + }, + "revision": "24bcd9d900b94e71b1da6497", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, + "revision": "58e4e43dbb304f1fb3f61471", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "88319.00000000", + "symbol": "IVIP", + "value": 24.34 + }, + "revision": "f391b186a7694744ab3811db", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/balances", + "content": { + "type": 1, + "value": {}, + "revision": "a92f3b4092d043f8b964078b", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684153197656/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "c2d2811cd12a47c9a05bef30", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684153197656", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1684153197656, + "id": 1684153197656, + "date_created": { + "type": 6, + "value": 1684153197656 + }, + "date_last_updated": { + "type": 6, + "value": 1684153475791 + }, + "date_of_expiration": { + "type": 6, + "value": 1686745197656 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684153475791 + }, + "money_release_date": { + "type": 6, + "value": 1684153475791 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "a405cfaea8c943a7b6cd5af1", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684153197656/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0724.0208.9290.1489-10", + "revision": "c0dfffb9dee14d52b7d510af", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684634671417/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684634671417, + "acquirer_reference": "", + "verification_code": 1684634671417, + "net_received_amount": 0, + "total_paid_amount": 100, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "6bf5796894644a409f17ad61", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684634671417", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 488292, + "total_amount": 488292, + "id": 1684634671417, + "date_created": { + "type": 6, + "value": 1684634671417 + }, + "date_last_updated": { + "type": 6, + "value": 1684634671417 + }, + "date_of_expiration": { + "type": 6, + "value": 1684634671417 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684634671417, + "description": "Compra de 488.292,00 IVIP por 100,00 BRL" + }, + "revision": "54c7213f6cdf42cabb42414f", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685124719970/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "8924d7a216f245ee9e172d24", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685124719970", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 120, + "total_amount": 120, + "history_id": 1685124719970, + "id": 1685124719970, + "date_created": { + "type": 6, + "value": 1685124719970 + }, + "date_last_updated": { + "type": 6, + "value": 1685364677545 + }, + "date_of_expiration": { + "type": 6, + "value": 1687716719970 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685364677545 + }, + "money_release_date": { + "type": 6, + "value": 1685364677545 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "a60f9f218508469d865155f9", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685124719970/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 120,00 para a carteira iVip 0724.0208.9290.1489-10", + "revision": "933a021e1ba54f2b925c5021", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685203508718/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "3bbde30eb7cd4d15bb8bc612", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685203508718", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1510, + "total_amount": 1510, + "history_id": 1685203508718, + "id": 1685203508718, + "date_created": { + "type": 6, + "value": 1685203508718 + }, + "date_last_updated": { + "type": 6, + "value": 1685211121604 + }, + "date_of_expiration": { + "type": 6, + "value": 1687795508718 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685211121604 + }, + "money_release_date": { + "type": 6, + "value": 1685211121604 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "6d6b09b4f61b4dfa8147404e", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685203508718/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.510,00 para a carteira iVip 0724.0208.9290.1489-10", + "revision": "5a9fdf3245ea4b87bfd9b576", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685744132878/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685744132878, + "acquirer_reference": "", + "verification_code": 1685744132878, + "net_received_amount": 0, + "total_paid_amount": 1630, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "062c9a21c98348f9b0fc9dba", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685744132878", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 5725017, + "total_amount": 5725017, + "id": 1685744132878, + "date_created": { + "type": 6, + "value": 1685744132878 + }, + "date_last_updated": { + "type": 6, + "value": 1685744132878 + }, + "date_of_expiration": { + "type": 6, + "value": 1685744132878 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685744132878, + "description": "Compra de 5.725.017,00 IVIP por 1.630,00 BRL" + }, + "revision": "49c45adc902047898f7853d5", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1687787978807/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "40cd79f4cd2646cd85d7db99", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1687787978807", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 5122916, + "total_amount": 5122916, + "history_id": 1687787978807, + "id": 1687787978807, + "date_created": { + "type": 6, + "value": 1687787978807 + }, + "date_last_updated": { + "type": 6, + "value": 1687975273708 + }, + "date_of_expiration": { + "type": 6, + "value": 1687787978807 + }, + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1687975273708 + }, + "money_release_date": { + "type": 6, + "value": 1687975273708 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "bc3125ff3de74a4e8be65e07", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1687787978807/description", + "content": { + "type": 5, + "value": "Saque de 5.122.916,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83", + "revision": "c9e7eaf3d11e447ead2a1d32", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1688549736848/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "842ec23e78f64b49ae1fc05b", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1688549736848", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1002074, + "total_amount": 1002074, + "history_id": 1688549736848, + "id": 1688549736848, + "date_created": { + "type": 6, + "value": 1688549736848 + }, + "date_last_updated": { + "type": 6, + "value": 1688562736770 + }, + "date_of_expiration": { + "type": 6, + "value": 1688549736848 + }, + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1688562736770 + }, + "money_release_date": { + "type": 6, + "value": 1688562736770 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "63c10b754cc245b89c7a774a", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1688549736848/description", + "content": { + "type": 5, + "value": "Saque de 1.002.074,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83", + "revision": "3b1e7159c897458c9c0df617", + "revision_nr": 1, + "created": 1702563036379, + "modified": 1702563036379 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1690225683361/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690225683361, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 88319, + "installment_amount": 88319, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "d9deea55b37f496e8be12e5d", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1690225683361/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/072402089290148910/history/1690225683361", + "revision": "b7b82258cc6a4606a2dd4692", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1690225683361", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 88319, + "total_amount": 88319, + "id": 1690225683361, + "history_id": 1690225683361, + "date_created": { + "type": 6, + "value": 1690225683361 + }, + "date_last_updated": { + "type": 6, + "value": 1690398452462 + }, + "date_of_expiration": { + "type": 6, + "value": 1690225683361 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": { + "type": 6, + "value": 1690398452462 + }, + "money_release_date": { + "type": 6, + "value": 1690398452462 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "5ddafebca87c4865bb50e2b9", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1690225683361/description", + "content": { + "type": 5, + "value": "Saque de 88.319,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83", + "revision": "815b969ddb444968b0623b48", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history", + "content": { + "type": 1, + "value": {}, + "revision": "04a97e8984a94e4c853f09be", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "0e50064fef4d4abea35374f8", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 3000, + "limitUsed": 0, + "analysisRequested": { + "type": 6, + "value": 1687788045586 + }, + "lastReview": { + "type": 6, + "value": 1687975284723 + } + }, + "revision": "955ee88405214a038b84b84c", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684153171860, + "dateValidity": 1684153171860, + "totalValue": 6.86, + "currencyType": "USD", + "balancesModificacao": 1690398452515 + }, + "revision": "b125322d82df4bb7885d64a8", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/073789164441763200/balances", + "content": { + "type": 1, + "value": {}, + "revision": "7c1901a3ff1c442c839e44c8", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/073789164441763200/history", + "content": { + "type": 1, + "value": {}, + "revision": "e4f9f63aa410498b82a03b96", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/073789164441763200", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696199966019, + "dateValidity": 1696199966060, + "currencyType": "USD" + }, + "revision": "55218e94b8cb478994655a69", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/074981242324574820/balances", + "content": { + "type": 1, + "value": {}, + "revision": "d92f55d2653e49b4a2304c03", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/074981242324574820/history/1678088421430/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "18d3b0219ae641f095fd1d2f", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/074981242324574820/history/1678088421430", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1678088421430, + "id": 1678088421430, + "date_created": { + "type": 6, + "value": 1678088421430 + }, + "date_last_updated": { + "type": 6, + "value": 1678715837019 + }, + "date_of_expiration": { + "type": 6, + "value": 1680680421430 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1678715837019 + }, + "money_release_status": "rejected" + }, + "revision": "0d39cbf5538542a3aa1bcefc", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/074981242324574820/history/1678088421430/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0749.8124.2324.5748-20", + "revision": "f15e68952296449fbebbb2ec", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/074981242324574820/history", + "content": { + "type": 1, + "value": {}, + "revision": "221562a7b9a54754a23a7dbd", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/074981242324574820", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677902662156, + "dateValidity": 1678146242488, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "4922afd64fd342f5b69cdadf", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075270012379589070/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "30.00000000", + "symbol": "BRL", + "value": 6.28 + }, + "revision": "efca8b59b558438a9f7e592f", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075270012379589070/balances", + "content": { + "type": 1, + "value": {}, + "revision": "089e9d601cd3476093956a2c", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history/1689767358341/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "0fa72b79733c47ddab827903", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history/1689767358341", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 30, + "total_amount": 30, + "history_id": 1689767358341, + "id": 1689767358341, + "date_created": { + "type": 6, + "value": 1689767358341 + }, + "date_last_updated": { + "type": 6, + "value": 1690408278554 + }, + "date_of_expiration": { + "type": 6, + "value": 1692359358341 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1690408278554 + }, + "money_release_date": { + "type": 6, + "value": 1690408278554 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "c1d184fc248e451e98076c72", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history/1689767358341/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 30,00 para a carteira iVip 0752.7001.2379.5890-70", + "revision": "060c4c9adaba4ab7959c372d", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history", + "content": { + "type": 1, + "value": {}, + "revision": "1261b1e1578c4252927db7ad", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075270012379589070/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "bed650bfb9244abfb17a6f31", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075270012379589070/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "e4aa4afea1644d0795636ff6", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075270012379589070", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689767257899, + "dateValidity": 1689767257899, + "totalValue": 0, + "currencyType": "USD", + "balancesModificacao": 1690416536434 + }, + "revision": "36f04088ccbc4f7f86c58fd4", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "186.00000000", + "symbol": "BRL", + "value": 36.47 + }, + "revision": "998497a48bbb410baf57c858", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/balances", + "content": { + "type": 1, + "value": {}, + "revision": "2af968391f874d74ad9e7834", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1684093506914/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "fe93b98247dc4466bdfd1f21", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1684093506914", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 240, + "total_amount": 240, + "history_id": 1684093506914, + "id": 1684093506914, + "date_created": { + "type": 6, + "value": 1684093506914 + }, + "date_last_updated": { + "type": 6, + "value": 1684096086351 + }, + "date_of_expiration": { + "type": 6, + "value": 1686685506914 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684096086351 + }, + "money_release_date": { + "type": 6, + "value": 1684096086351 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "68b0a104c281440d9394ea30", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1684093506914/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 240,00 para a carteira iVip 0754.2952.0947.6616-50", + "revision": "f0660694e3aa4a01a4437380", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1689771495719/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689771495719, + "acquirer_reference": "", + "verification_code": 1689771495719, + "net_received_amount": 0, + "total_paid_amount": 54, + "overpaid_amount": 0, + "installment_amount": 54, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "c0e6a72e851c4de9b1f5a9df", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1689771495719", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 54, + "total_amount": 54, + "id": 1689771495719, + "date_created": { + "type": 6, + "value": 1689771495719 + }, + "date_last_updated": { + "type": 6, + "value": 1689771495719 + }, + "date_of_expiration": { + "type": 6, + "value": 1716123495719 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1689771495719 + }, + "revision": "e345493ea00d48c18592bb4f", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1689771495719/description", + "content": { + "type": 5, + "value": "Investimento de 54,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/19/2024", + "revision": "813e6f30297e4acb9538ecb6", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history", + "content": { + "type": 1, + "value": {}, + "revision": "adcb38088194451aa6d29f0b", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "5e9d07858b264c07bebdad42", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "53f3bc86be964199a8f9efb5", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075429520947661650", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684093342801, + "dateValidity": 1684093342801, + "totalValue": 38.464800000000004, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } + }, + "revision": "3fce3b91dfb24263854f0fa8", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076012264992064480/balances", + "content": { + "type": 1, + "value": {}, + "revision": "e3f2202fb4cd4d26bad953e6", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076012264992064480/history", + "content": { + "type": 1, + "value": {}, + "revision": "51264d944a2740a3942b624d", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076012264992064480/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "6654464f59174d799b11260f", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076012264992064480/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "96cfcdd507de415abeb3972b", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076012264992064480", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678218975769, + "dateValidity": 1678233375802, + "totalValue": 0, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697079600000 + } + }, + "revision": "1f1c37465df94b668bb89bdf", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "932705.00000000", + "symbol": "IVIP", + "value": 508.13 + }, + "revision": "812d3a17e65b4e33a64977e2", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/balances", + "content": { + "type": 1, + "value": {}, + "revision": "22a19c05280f4f4682d203b6", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1683069444271/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "f4375d566ab94ba990b6aace", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1683069444271", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1683069444271, + "id": 1683069444271, + "date_created": { + "type": 6, + "value": 1683069444271 + }, + "date_last_updated": { + "type": 6, + "value": 1684153250305 + }, + "date_of_expiration": { + "type": 6, + "value": 1685661444271 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684153250305 + }, + "money_release_date": { + "type": 6, + "value": 1684153250305 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "23d60f6842e94f0bb8467019", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1683069444271/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40", + "revision": "d6454e560ff24315894569d4", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684135234297/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "33cad4f460c3421e80d482bc", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684135234297", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1684135234297, + "id": 1684135234297, + "date_created": { + "type": 6, + "value": 1684135234297 + }, + "date_last_updated": { + "type": 6, + "value": 1684190546714 + }, + "date_of_expiration": { + "type": 6, + "value": 1686727234297 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684190546714 + }, + "money_release_date": { + "type": 6, + "value": 1684190546714 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "784b99afe58148c5bca7f75a", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684135234297/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40", + "revision": "f605910ccf4c4a4dad00f427", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684178465791/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "24770f57f2e743709fbd9786", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684178465791", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1684178465791, + "id": 1684178465791, + "date_created": { + "type": 6, + "value": 1684178465791 + }, + "date_last_updated": { + "type": 6, + "value": 1684181715990 + }, + "date_of_expiration": { + "type": 6, + "value": 1686770465791 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684181715990 + }, + "money_release_date": { + "type": 6, + "value": 1684181715990 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "060b7af00df040518b0d28ab", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684178465791/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40", + "revision": "099d3a82d31441d1926bc3b1", + "revision_nr": 1, + "created": 1702563036380, + "modified": 1702563036380 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, + "revision": "f26d04ab42c143d98fd5d8cb", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499/details", + "content": { + "type": 1, + "value": {}, + "revision": "0e812a8e5b1a4ca3a9a6a545", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "6e19e7c54f15423daf4ce76d", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 1000, + "total_amount": 1300, + "history_id": 1684353970499, + "id": 1684353970499, + "date_created": { + "type": 6, + "value": 1684353970499 + }, + "date_last_updated": { + "type": 6, + "value": 1684353970499 + }, + "date_of_expiration": { + "type": 6, + "value": 1686945970499 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "2294c95a89334e5e96e18db9", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", + "revision": "342db5b11ffb4f30a76bce05", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684627580539/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684627580539, + "acquirer_reference": "", + "verification_code": 1684627580539, + "net_received_amount": 0, + "total_paid_amount": 1300, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "aaf2aaf09d564077bd0bd2a6", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684627580539", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 6331951, + "total_amount": 6331951, + "id": 1684627580539, + "date_created": { + "type": 6, + "value": 1684627580539 + }, + "date_last_updated": { + "type": 6, + "value": 1684627580539 + }, + "date_of_expiration": { + "type": 6, + "value": 1684627580539 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684627580539, + "description": "Compra de 6.331.951,00 IVIP por 1.300,00 BRL" + }, + "revision": "964304a0c5374ff88f96203a", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684628335504/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684628335504, + "acquirer_reference": "", + "verification_code": 1684628335504, + "net_received_amount": 0, + "total_paid_amount": 320, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "ff66599675f34bfa89250e5a", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684628335504", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 320, + "total_amount": 320, + "id": 1684628335504, + "date_created": { + "type": 6, + "value": 1684628335504 + }, + "date_last_updated": { + "type": 6, + "value": 1684628335504 + }, + "date_of_expiration": { + "type": 6, + "value": 1684628335504 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684628335504 + }, + "revision": "f54d8a83c9244bec9c194e56", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684628335504/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "5daffbc65462444da980eca4", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684633146254/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684633146254, + "acquirer_reference": "", + "verification_code": 1684633146254, + "net_received_amount": 0, + "total_paid_amount": 320, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "0b5526330c5d48709b1c89ed", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684633146254", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1561756, + "total_amount": 1561756, + "id": 1684633146254, + "date_created": { + "type": 6, + "value": 1684633146254 + }, + "date_last_updated": { + "type": 6, + "value": 1684633146254 + }, + "date_of_expiration": { + "type": 6, + "value": 1684633146254 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684633146254, + "description": "Compra de 1.561.756,00 IVIP por 320,00 BRL" + }, + "revision": "3f8bd8cc4b5b4199b255f0a7", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1687191698878/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "11c1c4ce08204122957221a4", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1687191698878", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 130, + "total_amount": 130, + "history_id": 1687191698878, + "id": 1687191698878, + "date_created": { + "type": 6, + "value": 1687191698878 + }, + "date_last_updated": { + "type": 6, + "value": 1687543965861 + }, + "date_of_expiration": { + "type": 6, + "value": 1689783698878 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1687543965861 + }, + "money_release_date": { + "type": 6, + "value": 1687543965861 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "61899dcf24a244cfa1b8ec06", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1687191698878/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 130,00 para a carteira iVip 0765.1978.1500.7150-40", + "revision": "e457079ce3cf4464b19ba936", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689106982837/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "9859717b698a4e72a94960c6", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689106982837", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1689106982837, + "id": 1689106982837, + "date_created": { + "type": 6, + "value": 1689106982837 + }, + "date_last_updated": { + "type": 6, + "value": 1689106982837 + }, + "date_of_expiration": { + "type": 6, + "value": 1689106982837 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "013b25f41f1f4bdca8a78593", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689106982837/description", + "content": { + "type": 5, + "value": "Saque de 1.000,00 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113", + "revision": "b597d12ded11473bb764e65b", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689107140445/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "fd714d32f6e143ed91e83136", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689107140445", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 100000, + "total_amount": 100000, + "history_id": 1689107140445, + "id": 1689107140445, + "date_created": { + "type": 6, + "value": 1689107140445 + }, + "date_last_updated": { + "type": 6, + "value": 1689107140445 + }, + "date_of_expiration": { + "type": 6, + "value": 1689107140445 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "9a74f66be08f47619300c302", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689107140445/description", + "content": { + "type": 5, + "value": "Saque de 100.000,00 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113", + "revision": "0fd6b226491a4031a3e2f735", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689751872577/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 9, + "payment_method_reference_id": 1689751872577, + "acquirer_reference": "", + "verification_code": 1689751872577, + "net_received_amount": 0, + "total_paid_amount": 130, + "overpaid_amount": 0, + "installment_amount": 130, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "a4e682f0b14e4d34991f029a", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689751872577", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 130, + "total_amount": 130, + "id": 1689751872577, + "contract_id": "1684353970499", + "date_created": { + "type": 6, + "value": 1689751872577 + }, + "date_last_updated": { + "type": 6, + "value": 1689751872577 + }, + "date_of_expiration": { + "type": 6, + "value": 1689751872577 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1689751872577 + }, + "revision": "dc0e41b00c9141679437a44a", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689751872577/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 1 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", + "revision": "54c98e3b0c0d4b338d50fa69", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689787472412/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "7ef2a374ab844ce1868ac7a8", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689787472412", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 130, + "total_amount": 130, + "history_id": 1689787472412, + "id": 1689787472412, + "date_created": { + "type": 6, + "value": 1689787472412 + }, + "date_last_updated": { + "type": 6, + "value": 1690469763902 + }, + "date_of_expiration": { + "type": 6, + "value": 1692379472412 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1690469763902 + }, + "money_release_date": { + "type": 6, + "value": 1690469763902 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "8104878f0bbb4387a3cc9686", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689787472412/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 130,00 para a carteira iVip 0765.1978.1500.7150-40", + "revision": "70e8ef596010473d8c9cc2f3", + "revision_nr": 1, + "created": 1702563036381, + "modified": 1702563036381 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1690471265404/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 8, + "payment_method_reference_id": 1690471265404, + "acquirer_reference": "", + "verification_code": 1690471265404, + "net_received_amount": 0, + "total_paid_amount": 130, + "overpaid_amount": 0, + "installment_amount": 130, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "12f1849b6d894d0a90f68bee", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1690471265404", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 130, + "total_amount": 130, + "id": 1690471265404, + "contract_id": "1684353970499", + "date_created": { + "type": 6, + "value": 1690471265404 + }, + "date_last_updated": { + "type": 6, + "value": 1690471265404 + }, + "date_of_expiration": { + "type": 6, + "value": 1690471265404 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1690471265404 + }, + "revision": "ed54905624304174947380f5", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1690471265404/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 2 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", + "revision": "8656620dccfa455d84b088fd", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695216566475 + } + }, + "revision": "cc6b9010c17344399422f62d", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692624566475, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 130, + "installment_amount": 130, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "03e59cccbd8545b9a557ee17", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692624566475", + "revision": "401923fe5228431baad376ee", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 130, + "total_amount": 130, + "id": 1692624566475, + "history_id": 1692624566475, + "date_created": { + "type": 6, + "value": 1692624566475 + }, + "date_last_updated": { + "type": 6, + "value": 1692625291282 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1692625291282 + }, + "money_release_date": { + "type": 6, + "value": 1692625291282 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "0566cceac7584bbd89a52530", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475/description", + "content": { + "type": 5, + "value": "Deposito de um valor 130,00 BRL para a carteira iVip 0765.1978.1500.7150-40", + "revision": "cad7470ed16a4086996071e0", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692660761580/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692660761580, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 130, + "installment_amount": 130, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 3, + "installments_payable": 7 + }, + "revision": "70ea2d6b9e884fa0b8553a32", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692660761580/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692660761580", + "revision": "1706c550b04144c08e088c5a", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692660761580", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 130, + "total_amount": 130, + "id": "1692660761580", + "history_id": "1692660761580", + "date_created": { + "type": 6, + "value": 1692660761580 + }, + "date_last_updated": { + "type": 6, + "value": 1692660761580 + }, + "date_of_expiration": { + "type": 6, + "value": 1692660761580 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "f8fddd0b26094faf827b1deb", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692660761580/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 3 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", + "revision": "435003dd25c84b14b08c4e4d", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 208830.06 + }, + "revision": "4c98cd6745984584abfbcb83", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692785689941, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 6961002, + "installment_amount": 6961002, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "ac89693edb3e49dbb3ed7443", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692785689941", + "revision": "27a3eeaf859c43108c6d4a0f", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "6ebd379ff781444d83d0c8ab", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 6961002, + "total_amount": 6752171.94, + "id": "1692785689941", + "history_id": "1692785689941", + "date_created": { + "type": 6, + "value": 1692785689941 + }, + "date_last_updated": { + "type": 6, + "value": 1692972204887 + }, + "date_of_expiration": { + "type": 6, + "value": 1692785689941 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": { + "type": 6, + "value": 1692972204887 + }, + "money_release_date": { + "type": 6, + "value": 1692972204887 + }, + "money_release_status": "drawee", + "wasDebited": true + }, + "revision": "12c67705378948efacda1deb", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/description", + "content": { + "type": 5, + "value": "Saque de 6.752.171,94 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113", + "revision": "2f72dddc469e4671ae38e312", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699203881018 + } + }, + "revision": "f9587f83ca3a459197713948", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696611881018", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 130, + "installment_amount": 130, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "142e6f3b809a4ef397f22574", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1696611881018", + "revision": "a200e42b794f4dbdbe831943", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "076519781500715040", + "payment_method": "whatsapp", + "original_amount": 130, + "total_amount": 130, + "id": "1696611881018", + "history_id": "1696611881018", + "date_created": { + "type": 6, + "value": 1696611881018 + }, + "date_last_updated": { + "type": 6, + "value": 1696612563868 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1696612563868 + }, + "money_release_date": { + "type": 6, + "value": 1696612563868 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "5cd8f98ebb294f96a41368d2", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018/description", + "content": { + "type": 5, + "value": "Deposito de um valor 130,00 BRL para a carteira iVip 0765.1978.1500.7150-40", + "revision": "e8a0ccd4c3d84128ab66eec8", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696613460272/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696613460272", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 130, + "installment_amount": 130, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 4, + "installments_payable": 6 + }, + "revision": "16b1fe6faa2d4101901fc8ff", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696613460272/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1696613460272", + "revision": "5a5dc0e31d784f7da490d893", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696613460272", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "076519781500715040", + "payment_method": "credit", + "original_amount": 130, + "total_amount": 130, + "id": "1696613460272", + "history_id": "1696613460272", + "date_created": { + "type": 6, + "value": 1696613460272 + }, + "date_last_updated": { + "type": 6, + "value": 1696613460272 + }, + "date_of_expiration": { + "type": 6, + "value": 1696613460272 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "e5b94b7ddcae407286decf83", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696613460272/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 4 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", + "revision": "6a3c15bdf4de4587a8b5e49e", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history", + "content": { + "type": 1, + "value": {}, + "revision": "f88f846441c4414aaa7967af", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, + "revision": "b362b22183ed4c61922ad1f5", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499", + "content": { + "type": 1, + "value": { + "id": 1684353970499, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1300, + "installments": 10, + "installment_amount": 130, + "date_created": { + "type": 6, + "value": 1684353970499 + }, + "history_id": 1684353970499, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "dc571060f70c4788ab1af514", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", + "revision": "b03c4d9dee46476880d21bc4", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499/costs", + "content": { + "type": 2, + "value": {}, + "revision": "24556146b0ef4940a43e788c", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "d79cc7b279214bdfbbaeae2e", + "revision_nr": 1, + "created": 1702563036382, + "modified": 1702563036382 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, + "revision": "80cb3e433ad7429090847fa3", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499", + "content": { + "type": 1, + "value": { + "id": 1684353970499, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1300, + "installments": 10, + "installment_amount": 130, + "date_created": { + "type": 6, + "value": 1684353970499 + }, + "history_id": 1684353970499, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "c2d4150f8bf445a8a9b3a3b5", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", + "revision": "146dcd0259d54809a793ba32", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499/costs", + "content": { + "type": 2, + "value": {}, + "revision": "880debeeabd742e09989f6d7", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "a1b550f466ef42c3817f8349", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, + "revision": "9ab8d75961564920a4282fb3", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499", + "content": { + "type": 1, + "value": { + "id": 1684353970499, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1300, + "installments": 10, + "installment_amount": 130, + "date_created": { + "type": 6, + "value": 1684353970499 + }, + "history_id": 1684353970499, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "be20cd007e7143ef95d33cfa", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", + "revision": "2ef0e5897703487b8701cf6f", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499/costs", + "content": { + "type": 2, + "value": {}, + "revision": "ee7ffdf142a04ea98119e2e2", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308", + "content": { + "type": 1, + "value": {}, + "revision": "84dd006ac3d042b39906d907", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, + "revision": "9fb5a40e390d4e8892f1b7cf", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499", + "content": { + "type": 1, + "value": { + "id": 1684353970499, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1300, + "installments": 10, + "installment_amount": 130, + "date_created": { + "type": 6, + "value": 1684353970499 + }, + "history_id": 1684353970499, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1696613460287 + } + }, + "revision": "029ceef27a9f4bff92c7f869", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", + "revision": "95c4062ab2eb40f1898c08c1", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499/costs", + "content": { + "type": 2, + "value": {}, + "revision": "90820d6adf4e4cee8d32493e", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309", + "content": { + "type": 1, + "value": {}, + "revision": "2f0ecbd0498c491e9ffd4e7c", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, + "revision": "8c270df8fc104572a9b785af", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499", + "content": { + "type": 1, + "value": { + "id": 1684353970499, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1300, + "installments": 10, + "installment_amount": 130, + "date_created": { + "type": 6, + "value": 1684353970499 + }, + "history_id": 1684353970499, + "currency_id": "BRL" + }, + "revision": "9494a7ec1a344e709c3e3ef9", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", + "revision": "1ce76d4e2d354192851fa5b2", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499/costs", + "content": { + "type": 2, + "value": {}, + "revision": "16907d82468d4839ae482d32", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310", + "content": { + "type": 1, + "value": {}, + "revision": "46e362066db64c5581c77e34", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, + "revision": "788e374eef434f8ea405e6bc", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499", + "content": { + "type": 1, + "value": { + "id": 1684353970499, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1300, + "installments": 10, + "installment_amount": 130, + "date_created": { + "type": 6, + "value": 1684353970499 + }, + "history_id": 1684353970499, + "currency_id": "BRL" + }, + "revision": "1c992cea400c44c1939dca79", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", + "revision": "911f2e45c0964ea1ab76878c", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499/costs", + "content": { + "type": 2, + "value": {}, + "revision": "9769db2b3a434e648b745f4a", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311", + "content": { + "type": 1, + "value": {}, + "revision": "6f43b950a9aa4de58afb7708", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, + "revision": "a32a366eca5644cb9c9e54b4", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499", + "content": { + "type": 1, + "value": { + "id": 1684353970499, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1300, + "installments": 10, + "installment_amount": 130, + "date_created": { + "type": 6, + "value": 1684353970499 + }, + "history_id": 1684353970499, + "currency_id": "BRL" + }, + "revision": "5a9e4ffeb76e4981a1b77d80", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", + "revision": "b7aba323ece04d0a8079096f", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499/costs", + "content": { + "type": 2, + "value": {}, + "revision": "da5abaf60e834cd78000c2ec", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312", + "content": { + "type": 1, + "value": {}, + "revision": "2538449de8f046688dcc0e0c", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, + "revision": "582a5655b3f04221b052da88", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499", + "content": { + "type": 1, + "value": { + "id": 1684353970499, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1300, + "installments": 10, + "installment_amount": 130, + "date_created": { + "type": 6, + "value": 1684353970499 + }, + "history_id": 1684353970499, + "currency_id": "BRL" + }, + "revision": "231fcf1e06954b7aa05b6d0d", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", + "revision": "d0424d6e041947249305584f", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499/costs", + "content": { + "type": 2, + "value": {}, + "revision": "c4e79625f8054d66a45b998a", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401", + "content": { + "type": 1, + "value": {}, + "revision": "bc5aa4f54dad4e30a82bc8e2", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, + "revision": "61ca135388f24384b9c0f414", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499", + "content": { + "type": 1, + "value": { + "id": 1684353970499, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1300, + "installments": 10, + "installment_amount": 130, + "date_created": { + "type": 6, + "value": 1684353970499 + }, + "history_id": 1684353970499, + "currency_id": "BRL" + }, + "revision": "f8fe5f60c652408cad41aadf", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", + "revision": "ed19a536c5564627b8475e60", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499/costs", + "content": { + "type": 2, + "value": {}, + "revision": "694b78a5c72c4ee6b29ac123", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402", + "content": { + "type": 1, + "value": {}, + "revision": "a637a79a9b6447549d8e5f7a", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, + "revision": "da923b3aee3d49e68a117d72", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499", + "content": { + "type": 1, + "value": { + "id": 1684353970499, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1300, + "installments": 10, + "installment_amount": 130, + "date_created": { + "type": 6, + "value": 1684353970499 + }, + "history_id": 1684353970499, + "currency_id": "BRL" + }, + "revision": "697af154a7174933af78705a", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499/costs", + "content": { + "type": 2, + "value": {}, + "revision": "348eac1bd5754cd081b1edea", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", + "revision": "c04d06deb7534b7ca88a0411", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403", + "content": { + "type": 1, + "value": {}, + "revision": "2d341f78c00e44b7a6e4a118", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "2480a9e1469248a392ca87b7", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 1000, + "limitUsed": 800, + "analysisRequested": { + "type": 6, + "value": 1684328944557 + }, + "lastReview": { + "type": 6, + "value": 1684329405576 + } + }, + "revision": "5ab1ad152bf7423084b5ff46", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040", + "content": { + "type": 1, + "value": { + "dataModificacao": 1682778060382, + "dateValidity": 1682778060382, + "totalValue": 296.475, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } + }, + "revision": "c29f50f18cc44f1aacf767bc", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078019109826485740/balances", + "content": { + "type": 1, + "value": {}, + "revision": "d73e3927ac63417782424c01", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078019109826485740/history", + "content": { + "type": 1, + "value": {}, + "revision": "7baf568c513747d097039bb2", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078019109826485740", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677453360716, + "dateValidity": 1677453360716, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "24e80260c7c64501bdc1c7cf", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078295014075340450/balances", + "content": { + "type": 1, + "value": {}, + "revision": "d262e9c4b5ff46b1b1f48f4c", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078295014075340450/history/1677768924149/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "0c01e544c59d498bb3e64f1a", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078295014075340450/history/1677768924149", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "history_id": 1677768924149, + "id": 1677768924149, + "date_created": { + "type": 6, + "value": 1677768924149 + }, + "date_last_updated": { + "type": 6, + "value": 1678713027494 + }, + "date_of_expiration": { + "type": 6, + "value": 1680360924149 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1678713027494 + }, + "money_release_status": "rejected" + }, + "revision": "f105d521f73648ba9a927968", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078295014075340450/history/1677768924149/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0782.9501.4075.3404-50", + "revision": "39c0ead724954ce6920833c8", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078295014075340450/history", + "content": { + "type": 1, + "value": {}, + "revision": "0c9945f4dcce4f94b2118392", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078295014075340450", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677768631228, + "dateValidity": 1677768631228, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "d2930e2297f04369b4dcfe93", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/balances/BRL", + "content": { + "type": 1, + "value": { + "symbol": "BRL", + "available": "0.00000000", + "value": 0 + }, + "revision": "c930ebb5081b496cbd67c62e", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/balances/IVIP", + "content": { + "type": 1, + "value": { + "symbol": "IVIP", + "available": "0.00000000", + "value": 0 + }, + "revision": "6c236aab12ac4a2a9a929fee", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/balances", + "content": { + "type": 1, + "value": {}, + "revision": "cc841e345b5444d283fd0d9e", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684172899523/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "2d115df9d279401cb8870121", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684172899523", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1684172899523, + "id": 1684172899523, + "date_created": { + "type": 6, + "value": 1684172899523 + }, + "date_last_updated": { + "type": 6, + "value": 1684186044298 + }, + "date_of_expiration": { + "type": 6, + "value": 1686764899523 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684186044298 + }, + "money_release_date": { + "type": 6, + "value": 1684186044298 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "e4c8214c744e49aeabc824ec", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684172899523/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0783.4537.2944.2504-80", + "revision": "8f7844f639074508a79c5605", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684625628231/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684625628231, + "acquirer_reference": "", + "verification_code": 1684625628231, + "net_received_amount": 0, + "total_paid_amount": 100, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "b4f2b5a351e944baa017da01", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684625628231", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 487073, + "total_amount": 487073, + "id": 1684625628231, + "date_created": { + "type": 6, + "value": 1684625628231 + }, + "date_last_updated": { + "type": 6, + "value": 1684625628231 + }, + "date_of_expiration": { + "type": 6, + "value": 1684625628231 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684625628231, + "description": "Compra de 487.073,00 IVIP por 100,00 BRL" + }, + "revision": "824054fee60641c1b6672081", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1688602924031/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "fc2e367f42c346679aee3dae", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1688602924031", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 487073, + "total_amount": 487073, + "history_id": 1688602924031, + "id": 1688602924031, + "date_created": { + "type": 6, + "value": 1688602924031 + }, + "date_last_updated": { + "type": 6, + "value": 1688602924031 + }, + "date_of_expiration": { + "type": 6, + "value": 1688602924031 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "19b2f0ed6a2e4ec1bcbd55aa", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1688602924031/description", + "content": { + "type": 5, + "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", + "revision": "52d7aff040eb4191902f783e", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689096874209/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "e5f09a0a8b354afe80a9dbac", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689096874209", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 487073, + "total_amount": 487073, + "history_id": 1689096874209, + "id": 1689096874209, + "date_created": { + "type": 6, + "value": 1689096874209 + }, + "date_last_updated": { + "type": 6, + "value": 1689096874209 + }, + "date_of_expiration": { + "type": 6, + "value": 1689096874209 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "525bdbe64c6a4a1f8fafbe6e", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689096874209/description", + "content": { + "type": 5, + "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", + "revision": "b72c53d6c3cc4442a413258b", + "revision_nr": 1, + "created": 1702563036383, + "modified": 1702563036383 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689182689273/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "3428139af40047118ffc3c11", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689182689273", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 487073, + "total_amount": 487073, + "history_id": 1689182689273, + "id": 1689182689273, + "date_created": { + "type": 6, + "value": 1689182689273 + }, + "date_last_updated": { + "type": 6, + "value": 1689182689273 + }, + "date_of_expiration": { + "type": 6, + "value": 1689182689273 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "3d4ef1916d894288bce29b88", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689182689273/description", + "content": { + "type": 5, + "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", + "revision": "fd88560fa3fd46e78c3530cd", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689197773070/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "f40c65c251854deca26e4b7d", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689197773070", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 487073, + "total_amount": 487073, + "history_id": 1689197773070, + "id": 1689197773070, + "date_created": { + "type": 6, + "value": 1689197773070 + }, + "date_last_updated": { + "type": 6, + "value": 1689256321891 + }, + "date_of_expiration": { + "type": 6, + "value": 1689197773070 + }, + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1689256321891 + }, + "money_release_date": { + "type": 6, + "value": 1689256321891 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "efa0b6cbeb8448208b41e1d0", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689197773070/description", + "content": { + "type": 5, + "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", + "revision": "bc4e2382fc8d4f8cb675d6a3", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history", + "content": { + "type": 1, + "value": {}, + "revision": "1a37ada90ad64b778c11b0b9", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "26111d2d585c4b86be0f52b8", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "590194297740481bb7fd47fb", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684172840672, + "dateValidity": 1684172840672, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "ab1c934e971d4a0cb5e501ed", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "1863605.00000000", + "symbol": "IVIP", + "value": 199.32 + }, + "revision": "6736eb7ae8f740bdae1a8d1b", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/balances", + "content": { + "type": 1, + "value": {}, + "revision": "3f8b5a3f2fa04136a5f57b77", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684105639483/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "7871e023fb27497fb309ed69", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684105639483", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2020, + "total_amount": 2020, + "history_id": 1684105639483, + "id": 1684105639483, + "date_created": { + "type": 6, + "value": 1684105639483 + }, + "date_last_updated": { + "type": 6, + "value": 1684162218116 + }, + "date_of_expiration": { + "type": 6, + "value": 1686697639483 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684162218116 + }, + "money_release_date": { + "type": 6, + "value": 1684162218116 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "68b80ce36da64b8e850240c2", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684105639483/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.020,00 para a carteira iVip 0807.3197.8336.0713-80", + "revision": "5ed81293ff8c4fe79bdc48b2", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684624287649/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624287649, + "acquirer_reference": "", + "verification_code": 1684624287649, + "net_received_amount": 0, + "total_paid_amount": 2020, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "4036d73a0c394c06bf12bed8", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684624287649", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 9838878, + "total_amount": 9838878, + "id": 1684624287649, + "date_created": { + "type": 6, + "value": 1684624287649 + }, + "date_last_updated": { + "type": 6, + "value": 1684624287649 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624287649 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624287649, + "description": "Compra de 9.838.878,00 IVIP por 2.020,00 BRL" + }, + "revision": "1489b0b3c99b4d4a9f6a8a0a", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1685667269938/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685667269938, + "acquirer_reference": "", + "verification_code": 1685667269938, + "net_received_amount": 0, + "total_paid_amount": 7975273, + "overpaid_amount": 0, + "installment_amount": 7975273, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "14e44bcd8af64b0e988f6dd9", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1685667269938", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 7975273, + "total_amount": 7975273, + "id": 1685667269938, + "date_created": { + "type": 6, + "value": 1685667269938 + }, + "date_last_updated": { + "type": 6, + "value": 1685667269938 + }, + "date_of_expiration": { + "type": 6, + "value": 1748825669938 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685667269938 + }, + "revision": "7b6568c24a8645a5819c35fd", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1685667269938/description", + "content": { + "type": 5, + "value": "Investimento de 7.975.273,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", + "revision": "eb1ac1e8ec3940839dae11fc", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history", + "content": { + "type": 1, + "value": {}, + "revision": "cc0c888b5efe473c88e0bb4e", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "887f7edbd1c04bf1b906a87a", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "4e28edb23aef4a32b0b55a0f", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/080731978336071380", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684103814248, + "dateValidity": 1684103814248, + "totalValue": 103.1880266333287, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697166000000 + } + }, + "revision": "e8809676e22c466ca907c415", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "2366500.54000000", + "symbol": "IVIP", + "value": 355.3 + }, + "revision": "e6a99a7e5aa14d16b7f118ff", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/balances", + "content": { + "type": 1, + "value": {}, + "revision": "8892e1b529a240c0bf8eb694", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677928546145/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "a22d9ff97afa495195819082", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677928546145", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "history_id": 1677928546145, + "id": 1677928546145, + "date_created": { + "type": 6, + "value": 1677928546145 + }, + "date_last_updated": { + "type": 6, + "value": 1677929119050 + }, + "date_of_expiration": { + "type": 6, + "value": 1680520546145 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677929119050 + }, + "money_release_date": { + "type": 6, + "value": 1677929119050 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "0e1a4e59a4c8499c95d30298", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677928546145/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0813.9836.2853.5692-80", + "revision": "4ce1b327185745ad95fa3a37", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677787145274/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "474348f3ab424abe9869f383", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677787145274", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1677787145274, + "id": 1677787145274, + "date_created": { + "type": 6, + "value": 1677787145274 + }, + "date_last_updated": { + "type": 6, + "value": 1677787605317 + }, + "date_of_expiration": { + "type": 6, + "value": 1680379145274 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677787605317 + }, + "money_release_date": { + "type": 6, + "value": 1677787605317 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "b8765e3ff75d43238fe8ccde", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677787145274/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0813.9836.2853.5692-80", + "revision": "af18f19f01a448e29d07d4e1", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678059759995/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678059759995, + "acquirer_reference": "", + "verification_code": 1678059759995, + "net_received_amount": 0, + "total_paid_amount": 1520, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "0fce2f49bd8b4699a8f18414", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678059759995", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 10760563, + "total_amount": 10760563, + "id": 1678059759995, + "date_created": { + "type": 6, + "value": 1678059759995 + }, + "date_last_updated": { + "type": 6, + "value": 1678059759995 + }, + "date_of_expiration": { + "type": 6, + "value": 1678059759995 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678059759995, + "description": "Compra de 10760563 IVIP por 1520 BRL" + }, + "revision": "0c54af8e92224572b51bcbdb", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678742795429/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "10d903b40b864883ad8f2065", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678742795429", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 153, + "total_amount": 153, + "history_id": 1678742795429, + "id": 1678742795429, + "date_created": { + "type": 6, + "value": 1678742795429 + }, + "date_last_updated": { + "type": 6, + "value": 1678742838748 + }, + "date_of_expiration": { + "type": 6, + "value": 1681334795429 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678742838748 + }, + "money_release_date": { + "type": 6, + "value": 1678742838748 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "0bcda8aa5ca245829ef50eb9", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678742795429/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 153,00 para a carteira iVip 0813.9836.2853.5692-80", + "revision": "eef75af7b40f4efda856ecfa", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678209797800/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678209797800, + "acquirer_reference": "", + "verification_code": 1678209797800, + "net_received_amount": 0, + "total_paid_amount": 3, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "56a976134486458eb75b9f5a", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678209797800", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 3, + "total_amount": 3, + "id": 1678209797800, + "date_created": { + "type": 6, + "value": 1678209797800 + }, + "date_last_updated": { + "type": 6, + "value": 1678209797800 + }, + "date_of_expiration": { + "type": 6, + "value": 1678209797800 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1678209797800 + }, + "revision": "a6f708d0fae44fa2b7f53bee", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678209797800/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "039c8d23728c4500a0b9acad", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678215371496/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678215371496, + "acquirer_reference": "", + "verification_code": 1678215371496, + "net_received_amount": 0, + "total_paid_amount": 2, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "206630e5c2bb4d25a28bafca", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678215371496", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 2, + "total_amount": 2, + "id": 1678215371496, + "date_created": { + "type": 6, + "value": 1678215371496 + }, + "date_last_updated": { + "type": 6, + "value": 1678215371496 + }, + "date_of_expiration": { + "type": 6, + "value": 1678215371496 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1678215371496 + }, + "revision": "871e294d43f840329c7d7c16", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678215371496/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "fd695bfb0b6545da813a4292", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679267048083/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679267048083, + "acquirer_reference": "", + "verification_code": 1679267048083, + "net_received_amount": 0, + "total_paid_amount": 9.4, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "b9737d0a79ba4796928bde4e", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679267048083", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 9.4, + "total_amount": 9.4, + "id": 1679267048083, + "date_created": { + "type": 6, + "value": 1679267048083 + }, + "date_last_updated": { + "type": 6, + "value": 1679267048083 + }, + "date_of_expiration": { + "type": 6, + "value": 1679267048083 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1679267048083 + }, + "revision": "0a76fe0e63b3487dbbb2da4d", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679267048083/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "3fb420ac921e470d9dff542a", + "revision_nr": 1, + "created": 1702563036384, + "modified": 1702563036384 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679268223760/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679268223760, + "acquirer_reference": "", + "verification_code": 1679268223760, + "net_received_amount": 0, + "total_paid_amount": 167.4, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "792489c9a2744de3a74eb20f", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679268223760", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 974525, + "total_amount": 974525, + "id": 1679268223760, + "date_created": { + "type": 6, + "value": 1679268223760 + }, + "date_last_updated": { + "type": 6, + "value": 1679268223760 + }, + "date_of_expiration": { + "type": 6, + "value": 1679268223760 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679268223760, + "description": "Compra de 974525 IVIP por 167.4 BRL" + }, + "revision": "3db0adf411cf4d4eb651ea86", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679914966258/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679914966258, + "acquirer_reference": "", + "verification_code": 1679914966258, + "net_received_amount": 0, + "total_paid_amount": 10, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "aa7a2b22250b4536991ea442", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679914966258", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 10, + "total_amount": 10, + "id": 1679914966258, + "date_created": { + "type": 6, + "value": 1679914966258 + }, + "date_last_updated": { + "type": 6, + "value": 1679914966258 + }, + "date_of_expiration": { + "type": 6, + "value": 1679914966258 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1679914966258 + }, + "revision": "8ab05f980d4b46528a576561", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679914966258/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "0cfd23d727784f689c013bb2", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684348398411/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684348398411, + "acquirer_reference": "", + "verification_code": 1684348398411, + "net_received_amount": 0, + "total_paid_amount": 203, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "4800c8f041b04e219cccb0c7", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684348398411", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 203, + "total_amount": 203, + "id": 1684348398411, + "date_created": { + "type": 6, + "value": 1684348398411 + }, + "date_last_updated": { + "type": 6, + "value": 1684348398411 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348398411 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684348398411 + }, + "revision": "22389a76a5764f368c2909f0", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684348398411/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "f39d56597df64f8e965be248", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624161069/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624161069, + "acquirer_reference": "", + "verification_code": 1684624161069, + "net_received_amount": 0, + "total_paid_amount": 9, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "cc8ed62598eb4304a4bbf21d", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624161069", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 9, + "total_amount": 9, + "id": 1684624161069, + "date_created": { + "type": 6, + "value": 1684624161069 + }, + "date_last_updated": { + "type": 6, + "value": 1684624161069 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624161069 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684624161069 + }, + "revision": "bfd9829a5cf543488f45bf9b", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624161069/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "f38020b0e8b14563baf660e8", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624222413/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624222413, + "acquirer_reference": "", + "verification_code": 1684624222413, + "net_received_amount": 0, + "total_paid_amount": 222, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "40b123dc55aa4bb8869b5860", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624222413", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1081302, + "total_amount": 1081302, + "id": 1684624222413, + "date_created": { + "type": 6, + "value": 1684624222413 + }, + "date_last_updated": { + "type": 6, + "value": 1684624222413 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624222413 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624222413, + "description": "Compra de 1.081.302,00 IVIP por 222,00 BRL" + }, + "revision": "9edea25011d245af9b9a3501", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624292772/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624292772, + "acquirer_reference": "", + "verification_code": 1684624292772, + "net_received_amount": 0, + "total_paid_amount": 7, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "100a2afca4134211810ca0c5", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624292772", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 7, + "total_amount": 7, + "id": 1684624292772, + "date_created": { + "type": 6, + "value": 1684624292772 + }, + "date_last_updated": { + "type": 6, + "value": 1684624292772 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624292772 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684624292772 + }, + "revision": "af9d353796cd4bdf980e934a", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624292772/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "8ee3ede9afd747d383fec32d", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1688520874831/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "63755b8de1bf41b5bbe7af6e", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1688520874831", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1061299, + "total_amount": 1061299, + "history_id": 1688520874831, + "id": 1688520874831, + "date_created": { + "type": 6, + "value": 1688520874831 + }, + "date_last_updated": { + "type": 6, + "value": 1689257884324 + }, + "date_of_expiration": { + "type": 6, + "value": 1688520874831 + }, + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1689257884324 + }, + "money_release_date": { + "type": 6, + "value": 1689257884324 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "8b8b86f69d824205a36666e6", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1688520874831/description", + "content": { + "type": 5, + "value": "Saque de 1.061.299,00 IVIP para a carteira 0xE15d4Dd48a54BAF74D9FA6a77FBb4B943a2A0d07", + "revision": "2742b1b224a04ae1a21e4ad8", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689257644454/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "a9859e3e7337427096acfe03", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689257644454", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 10045174, + "total_amount": 10045174, + "history_id": 1689257644454, + "id": 1689257644454, + "date_created": { + "type": 6, + "value": 1689257644454 + }, + "date_last_updated": { + "type": 6, + "value": 1689356814071 + }, + "date_of_expiration": { + "type": 6, + "value": 1689257644454 + }, + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1689356814071 + }, + "money_release_date": { + "type": 6, + "value": 1689356814071 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "3e9f79e857a648318ef1046c", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689257644454/description", + "content": { + "type": 5, + "value": "Saque de 10.045.174,00 IVIP para a carteira 0xE15d4Dd48a54BAF74D9FA6a77FBb4B943a2A0d07", + "revision": "c5f15973326b48bc99fd245d", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689463707269/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "684ddf16532443df93f130e6", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689463707269", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1689463707269, + "id": 1689463707269, + "date_created": { + "type": 6, + "value": 1689463707269 + }, + "date_last_updated": { + "type": 6, + "value": 1689688497994 + }, + "date_of_expiration": { + "type": 6, + "value": 1692055707269 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689688497994 + }, + "money_release_date": { + "type": 6, + "value": 1689688497994 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "cfdc3959df2a4f8a947610de", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689463707269/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0813.9836.2853.5692-80", + "revision": "72203848274f41f89233c4d7", + "revision_nr": 1, + "created": 1702563036385, + "modified": 1702563036385 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689688682027/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689688682027, + "acquirer_reference": "", + "verification_code": 1689688682027, + "net_received_amount": 0, + "total_paid_amount": 1007, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "35371f6c66c5474489bfc33e", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689688682027", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 661120, + "total_amount": 661120, + "id": 1689688682027, + "date_created": { + "type": 6, + "value": 1689688682027 + }, + "date_last_updated": { + "type": 6, + "value": 1689688682027 + }, + "date_of_expiration": { + "type": 6, + "value": 1689688682027 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689688682027, + "description": "Compra de 661.120,00 IVIP por 1.007,00 BRL" + }, + "revision": "947c6cde27be4926aa5c0ac0", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692810437203 + } + }, + "revision": "dbc9b7fe829340c6970f9745", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690218437204, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "f7425842d22d4e289373f922", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1690218437204", + "revision": "6c293981fa524994a498678a", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "id": 1690218437204, + "history_id": 1690218437204, + "date_created": { + "type": 6, + "value": 1690218437204 + }, + "date_last_updated": { + "type": 6, + "value": 1690218437204 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "dd520e3069674f6c86d0f65d", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0813.9836.2853.5692-80", + "revision": "702b011539de4c91924552a4", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1691105324726/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691105324726, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2362853, + "installment_amount": 2362853, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "681373120d45480a82e6b376", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1691105324726/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1691105324726", + "revision": "d23a531f1b524c32b2d35c73", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1691105324726", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 2362853, + "total_amount": 2362853, + "id": 1691105324726, + "history_id": 1691105324726, + "date_created": { + "type": 6, + "value": 1691105324726 + }, + "date_last_updated": { + "type": 6, + "value": 1691105324726 + }, + "date_of_expiration": { + "type": 6, + "value": 1693783724725 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "0aabcef476ce49fdaf51f97c", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1691105324726/description", + "content": { + "type": 5, + "value": "Investimento de 2.362.853,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", + "revision": "b10debbfde4843baa5143666", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693783873313/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693783873313, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2362853, + "installment_amount": 2362853, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "321b176e91724cd4a84a54fc", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693783873313/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1693783873313", + "revision": "26cd8bc9a43147b5b57f8fcd", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693783873313", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 2410110.06, + "total_amount": 2410110.06, + "id": "1693783873313", + "history_id": "1693783873313", + "date_created": { + "type": 6, + "value": 1693783873313 + }, + "date_last_updated": { + "type": 6, + "value": 1693783873313 + }, + "date_of_expiration": { + "type": 6, + "value": 1693783873313 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "a8b700b064a7469980737f55", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693783873313/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 2.362.853,00 IVIP com um rendimento de +47.257,06 IVIP (2,00%) - Y12XDT27", + "revision": "bbe6826b6cf44d09ab61f3b1", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693916505659/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693916505659, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2410324, + "installment_amount": 2410324, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "50ad6676879c4abebdab69d4", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693916505659/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1693916505659", + "revision": "41a40c7d591744ed8cc4d1c1", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693916505659", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 2410324, + "total_amount": 2410324, + "id": "1693916505659", + "history_id": "1693916505659", + "date_created": { + "type": 6, + "value": 1693916505659 + }, + "date_last_updated": { + "type": 6, + "value": 1693916505659 + }, + "date_of_expiration": { + "type": 6, + "value": 1696508505658 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "8f5e5031e6854ffeb2f40c19", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693916505659/description", + "content": { + "type": 5, + "value": "Investimento de 2.410.324,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", + "revision": "f9ebe6aec7454f9a8fed152f", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696508517073/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696508517073, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2410324, + "installment_amount": 2410324, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "f70f2a5f1ae447b2a4937093", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696508517073/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696508517073", + "revision": "9bcff1158b3d44a2a0a53436", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696508517073", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "081398362853569280", + "payment_method": "staking", + "original_amount": 2458530.48, + "total_amount": 2458530.48, + "id": "1696508517073", + "history_id": "1696508517073", + "date_created": { + "type": 6, + "value": 1696508517073 + }, + "date_last_updated": { + "type": 6, + "value": 1696508517073 + }, + "date_of_expiration": { + "type": 6, + "value": 1696508517073 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "f28c017001a64aa686ceb882", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696508517073/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 2.410.324,00 IVIP com um rendimento de +48.206,48 IVIP (2,00%) - Y12XDT27", + "revision": "30c523393da447e09d0e9ea0", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696541853446/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696541853446, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100000, + "installment_amount": 100000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "e7afbc1fd7cd44939effabb8", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696541853446/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696541853446", + "revision": "b3e223244e9c4143ad32ddb4", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696541853446", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "081398362853569280", + "payment_method": "staking", + "original_amount": 100000, + "total_amount": 100000, + "id": "1696541853446", + "history_id": "1696541853446", + "date_created": { + "type": 6, + "value": 1696541853446 + }, + "date_last_updated": { + "type": 6, + "value": 1696541853446 + }, + "date_of_expiration": { + "type": 6, + "value": 1759700253408 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "4e48b7329c544e5285758142", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696541853446/description", + "content": { + "type": 5, + "value": "Investimento de 100.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 05/10/2025 - P9A02KSL", + "revision": "a85fcfad3c5b40dbbbdf4051", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696640077573/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696640077573", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2366500, + "installment_amount": 2366500, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "d52f6402f65849dd969829d3", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696640077573/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696640077573", + "revision": "b324fb2a369f44b89d119731", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696640077573", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "081398362853569280", + "payment_method": "staking", + "original_amount": 2366500, + "total_amount": 2366500, + "id": "1696640077573", + "history_id": "1696640077573", + "date_created": { + "type": 6, + "value": 1696640077573 + }, + "date_last_updated": { + "type": 6, + "value": 1696640077573 + }, + "date_of_expiration": { + "type": 6, + "value": 1699318477538 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "3fa51dc71c704f42bcae404b", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696640077573/description", + "content": { + "type": 5, + "value": "Investimento de 2.366.500,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", + "revision": "e6d2029ef63a4197b2064225", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history", + "content": { + "type": 1, + "value": {}, + "revision": "55dd9de4635a4bc988433d75", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "4cbdabb8cc3e400a84516e9a", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "a0b75c00268e47b3956e712c", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677420406636, + "dateValidity": 1678944817912, + "totalValue": 779.84, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } + }, + "revision": "a652f57db7724713911d3545", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "1189036.00000000", + "symbol": "IVIP", + "value": 151.17 + }, + "revision": "bd44db83082146df95bbb223", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/balances", + "content": { + "type": 1, + "value": {}, + "revision": "e4a1813bb8f44382805c5907", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698791726584 + } + }, + "revision": "14c7e44dfdad4f3291d064c4", + "revision_nr": 1, + "created": 1702563036386, + "modified": 1702563036386 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696199726584, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 10000, + "installment_amount": 10000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "fac8243742584250b33779ef", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696199726584", + "revision": "a1d89cfb6d844fd29a673357", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "083249759247314030", + "payment_method": "whatsapp", + "original_amount": 10000, + "total_amount": 10000, + "id": "1696199726584", + "history_id": "1696199726584", + "date_created": { + "type": 6, + "value": 1696199726584 + }, + "date_last_updated": { + "type": 6, + "value": 1696199726584 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment" + }, + "revision": "0f5802e7241944c9a8372f0f", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584/description", + "content": { + "type": 5, + "value": "Deposito de um valor 10.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30", + "revision": "bcac5f81573e48b1a680a42b", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698801123721 + } + }, + "revision": "194f96526b1142a7ad351caa", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696209123721, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 10000, + "installment_amount": 10000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "59a8605b316f473da02e87b6", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696209123721", + "revision": "f24ef6cfb09345359d9629e2", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "083249759247314030", + "payment_method": "whatsapp", + "original_amount": 10000, + "total_amount": 10000, + "id": "1696209123721", + "history_id": "1696209123721", + "date_created": { + "type": 6, + "value": 1696209123721 + }, + "date_last_updated": { + "type": 6, + "value": 1696272500859 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1696272500859 + }, + "money_release_date": { + "type": 6, + "value": 1696272500859 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "bb8d2d752d044dc385bd7fdd", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721/description", + "content": { + "type": 5, + "value": "Deposito de um valor 10.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30", + "revision": "85c4345593de43f688da7e20", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696355307483/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696355307483, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 10000, + "installment_amount": 10000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "b8c9d890313d4466865a2d65", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696355307483/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696355307483", + "revision": "78b8d0e499a94d9a929f5576", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696355307483", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "083249759247314030", + "payment_method": "staking", + "original_amount": 10000, + "total_amount": 10000, + "id": "1696355307483", + "history_id": "1696355307483", + "date_created": { + "type": 6, + "value": 1696355307483 + }, + "date_last_updated": { + "type": 6, + "value": 1696355307483 + }, + "date_of_expiration": { + "type": 6, + "value": 1699033707483 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "b15129ee12cb45bfa5e61d99", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696355307483/description", + "content": { + "type": 5, + "value": "Investimento de 10.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/11/2023 - Y12XDT27", + "revision": "d67200cbf4954a2dba813e8e", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699201715603 + } + }, + "revision": "24203cc5ca2349ccb70b7e91", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696609715603", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 250, + "installment_amount": 250, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "46f1f533d53a478aa3a553d5", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696609715603", + "revision": "3b4f1b6a3ab94bf4851baf70", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "083249759247314030", + "payment_method": "whatsapp", + "original_amount": 250, + "total_amount": 250, + "id": "1696609715603", + "history_id": "1696609715603", + "date_created": { + "type": 6, + "value": 1696609715603 + }, + "date_last_updated": { + "type": 6, + "value": 1696611008116 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1696611008116 + }, + "money_release_date": { + "type": 6, + "value": 1696611008116 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "ac0c27e55b4945c2ad02a692", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603/description", + "content": { + "type": 5, + "value": "Deposito de um valor 250,00 BRL para a carteira iVip 0832.4975.9247.3140-30", + "revision": "fd3b6b1a6f3b429e96af219b", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699202450136 + } + }, + "revision": "5933c2449f8e4282948f2217", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696610450136", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 868000, + "installment_amount": 868000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "b8a2eb42535944fc87757b5b", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696610450136", + "revision": "25e1c092f46a48c39e7e250c", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "083249759247314030", + "payment_method": "whatsapp", + "original_amount": 868000, + "total_amount": 868000, + "id": "1696610450136", + "history_id": "1696610450136", + "date_created": { + "type": 6, + "value": 1696610450136 + }, + "date_last_updated": { + "type": 6, + "value": 1696611986733 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1696611986733 + }, + "money_release_date": { + "type": 6, + "value": 1696611986733 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "52329e54dfd1455e86085c97", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136/description", + "content": { + "type": 5, + "value": "Deposito de um valor 868.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30", + "revision": "296ba4939dab42a4a07b8e7f", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696611534552/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696611534552", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 250, + "installment_amount": 250, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "6d2ba90ed6db4be4b59df962", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696611534552/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696611534552", + "revision": "a9573c1bb83641c882fd7b4b", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696611534552", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "wallet_id": "083249759247314030", + "payment_method": "swap", + "original_amount": 321036, + "total_amount": 321036, + "id": "1696611534552", + "history_id": "1696611534552", + "date_created": { + "type": 6, + "value": 1696611534552 + }, + "date_last_updated": { + "type": 6, + "value": 1696611534552 + }, + "date_of_expiration": { + "type": 6, + "value": 1696611534552 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 321.036,00 IVIP por 250,00 BRL", + "status_detail": "accredited" + }, + "revision": "38c8439283724a3f970f0423", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history", + "content": { + "type": 1, + "value": {}, + "revision": "a7857bba1b17459884b2cab0", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "3ff18070fbd84294a9d97105", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "f888e317476e46adb7d65ce4", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696067091160, + "dateValidity": 1696067091189, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } + }, + "revision": "17e81a6e52a745f785a7ef1d", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/balances", + "content": { + "type": 1, + "value": {}, + "revision": "37b63e0d7a1f4df38c1e23ee", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698340651115 + } + }, + "revision": "e73f024a557440bfa3dbc2cf", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695748651115, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "531e6c5cf5044f37a8aa0985", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748651115", + "revision": "1f7c0c70e5704986b34a3aa2", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "084938385673306140", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "id": "1695748651115", + "history_id": "1695748651115", + "date_created": { + "type": 6, + "value": 1695748651115 + }, + "date_last_updated": { + "type": 6, + "value": 1695748651115 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment" + }, + "revision": "aab29cacb1574f9d9651f7d6", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115/description", + "content": { + "type": 5, + "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40", + "revision": "39f4d1d465364410a0d3c2cb", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698340743839 + } + }, + "revision": "9738fefc5e2e4982a235c9ed", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695748743840, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "1d63c08ea3c942c6b5b6f588", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748743840", + "revision": "36c172236ef94c05abcd9f91", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "084938385673306140", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "id": "1695748743840", + "history_id": "1695748743840", + "date_created": { + "type": 6, + "value": 1695748743840 + }, + "date_last_updated": { + "type": 6, + "value": 1695748743840 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment" + }, + "revision": "6244557bd07a423caf40b15b", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840/description", + "content": { + "type": 5, + "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40", + "revision": "ee7ef18fb2134eefa83567e7", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698340845971 + } + }, + "revision": "b1be0462db8a44b4bb6f388b", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695748845971, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "537997d6a0e74f29bef45050", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748845971", + "revision": "7b082793cf3241bc8ca80fbd", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "084938385673306140", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "id": "1695748845971", + "history_id": "1695748845971", + "date_created": { + "type": 6, + "value": 1695748845971 + }, + "date_last_updated": { + "type": 6, + "value": 1695748845971 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment" + }, + "revision": "1af6f60a42964005a1ab4a44", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971/description", + "content": { + "type": 5, + "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40", + "revision": "53c2aa9d881b47429238427d", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history", + "content": { + "type": 1, + "value": {}, + "revision": "457d0d5a2cfd4683baa5a89e", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "8fd866737402415f9ba23ac2", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "bc90393d1f83461ca76537b0", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140", + "content": { + "type": 1, + "value": { + "dataModificacao": 1695748509301, + "dateValidity": 1695748509557, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1695870000000 + } + }, + "revision": "ff3aeb232b234a9687ede01c", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/balances", + "content": { + "type": 1, + "value": {}, + "revision": "9a97f38da198417ab4d9f7ad", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678035077732/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "19fbd2b10c574ca8af537910", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678035077732", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1678035077732, + "id": 1678035077732, + "date_created": { + "type": 6, + "value": 1678035077732 + }, + "date_last_updated": { + "type": 6, + "value": 1678129028692 + }, + "date_of_expiration": { + "type": 6, + "value": 1680627077732 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678129028692 + }, + "money_release_date": { + "type": 6, + "value": 1678129028692 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "0bc5944362f1404fb7312e17", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678035077732/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0852.1260.9036.6842-60", + "revision": "216007bb18f14fe79ed4a4f1", + "revision_nr": 1, + "created": 1702563036387, + "modified": 1702563036387 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678163430853/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678163430853, + "acquirer_reference": "", + "verification_code": 1678163430853, + "net_received_amount": 0, + "total_paid_amount": 200, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "af2046e9658b48d99b3c2962", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678163430853", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1426241, + "total_amount": 1426241, + "id": 1678163430853, + "date_created": { + "type": 6, + "value": 1678163430853 + }, + "date_last_updated": { + "type": 6, + "value": 1678163430853 + }, + "date_of_expiration": { + "type": 6, + "value": 1678163430853 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678163430853, + "description": "Compra de 1426241 IVIP por 200 BRL" + }, + "revision": "59c01b75ccb14dafad7a2ff9", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1681136191198/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "071d52eef6154dc0a713e182", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1681136191198", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1681136191198, + "id": 1681136191198, + "date_created": { + "type": 6, + "value": 1681136191198 + }, + "date_last_updated": { + "type": 6, + "value": 1681137381704 + }, + "date_of_expiration": { + "type": 6, + "value": 1683728191198 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1681137381704 + }, + "money_release_date": { + "type": 6, + "value": 1681137381704 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "55f66ff5117c42fe98c3728a", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1681136191198/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0852.1260.9036.6842-60", + "revision": "e4db51a00f6c410797a3caeb", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1684632748749/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684632748749, + "acquirer_reference": "", + "verification_code": 1684632748749, + "net_received_amount": 0, + "total_paid_amount": 200, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "35aa75b928a14ca2a02ea6fd", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1684632748749", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 976097, + "total_amount": 976097, + "id": 1684632748749, + "date_created": { + "type": 6, + "value": 1684632748749 + }, + "date_last_updated": { + "type": 6, + "value": 1684632748749 + }, + "date_of_expiration": { + "type": 6, + "value": 1684632748749 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684632748749, + "description": "Compra de 976.097,00 IVIP por 200,00 BRL" + }, + "revision": "733a0257e1aa432cbe68119f", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109385732/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "64a532c69587496588646e6b", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109385732", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1200, + "total_amount": 1200, + "history_id": 1685109385732, + "id": 1685109385732, + "date_created": { + "type": 6, + "value": 1685109385732 + }, + "date_last_updated": { + "type": 6, + "value": 1685109385732 + }, + "date_of_expiration": { + "type": 6, + "value": 1687701385732 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "b28c846c97ca401b8e68dc9d", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109385732/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60", + "revision": "e531521bc5b641d3bbd29d59", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109442881/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "60503752e31647c991977152", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109442881", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1200, + "total_amount": 1200, + "history_id": 1685109442881, + "id": 1685109442881, + "date_created": { + "type": 6, + "value": 1685109442881 + }, + "date_last_updated": { + "type": 6, + "value": 1685109442881 + }, + "date_of_expiration": { + "type": 6, + "value": 1687701442881 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "abd058e04f8141f38cf17cb8", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109442881/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60", + "revision": "aa972ee76b3a40d2a58c8623", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685213653014/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "620f212ebe1c49b5a55bed98", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685213653014", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1200, + "total_amount": 1200, + "history_id": 1685213653014, + "id": 1685213653014, + "date_created": { + "type": 6, + "value": 1685213653014 + }, + "date_last_updated": { + "type": 6, + "value": 1685364258194 + }, + "date_of_expiration": { + "type": 6, + "value": 1687805653014 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685364258194 + }, + "money_release_date": { + "type": 6, + "value": 1685364258194 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "2f6bec53cb1347218fd4c875", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685213653014/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60", + "revision": "7b9e8849fde446acb73a021c", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685666059762/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685666059762, + "acquirer_reference": "", + "verification_code": 1685666059762, + "net_received_amount": 0, + "total_paid_amount": 2402000, + "overpaid_amount": 0, + "installment_amount": 2402000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "50b5adda8c7d49c2b8e43ae1", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685666059762", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 2402000, + "total_amount": 2402000, + "id": 1685666059762, + "date_created": { + "type": 6, + "value": 1685666059762 + }, + "date_last_updated": { + "type": 6, + "value": 1685666059762 + }, + "date_of_expiration": { + "type": 6, + "value": 1717288459762 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685666059762 + }, + "revision": "2d9e355ff759477b80465737", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685666059762/description", + "content": { + "type": 5, + "value": "Investimento de 2.402.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", + "revision": "df3902d6139b429d94e23b7f", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685744731387/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685744731387, + "acquirer_reference": "", + "verification_code": 1685744731387, + "net_received_amount": 0, + "total_paid_amount": 1200, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "82a7acf8943845eca3b17220", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685744731387", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 4214736, + "total_amount": 4214736, + "id": 1685744731387, + "date_created": { + "type": 6, + "value": 1685744731387 + }, + "date_last_updated": { + "type": 6, + "value": 1685744731387 + }, + "date_of_expiration": { + "type": 6, + "value": 1685744731387 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685744731387, + "description": "Compra de 4.214.736,00 IVIP por 1.200,00 BRL" + }, + "revision": "088150ea5c914cdab49054c1", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1688521364022/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688521364022, + "acquirer_reference": "", + "verification_code": 1688521364022, + "net_received_amount": 0, + "total_paid_amount": 4000000, + "overpaid_amount": 0, + "installment_amount": 4000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "4d2775a1781d43479d10b1b6", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1688521364022", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 4000000, + "total_amount": 4000000, + "id": 1688521364022, + "date_created": { + "type": 6, + "value": 1688521364022 + }, + "date_last_updated": { + "type": 6, + "value": 1688521364022 + }, + "date_of_expiration": { + "type": 6, + "value": 1691199764022 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688521364022 + }, + "revision": "92d6f6c5cd6a4e1ba62dc30f", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1688521364022/description", + "content": { + "type": 5, + "value": "Investimento de 4.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/4/2023", + "revision": "a6b2aa7a46e94380a60284a9", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691199857902/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691199857902, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 4080000, + "installment_amount": 4080000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "56d75c12e97944519b5e64da", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691199857902/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691199857902", + "revision": "2b2a2db5486f42e1be91a2d3", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691199857902", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 4080000, + "total_amount": 4080000, + "id": 1691199857902, + "history_id": 1691199857902, + "date_created": { + "type": 6, + "value": 1691199857902 + }, + "date_last_updated": { + "type": 6, + "value": 1691199857902 + }, + "date_of_expiration": { + "type": 6, + "value": 1691199857902 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "ae669d0ac6ac4ec3a65043cf", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691199857902/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 4.000.000,00 IVIP com um rendimento de +80.000,00 IVIP (2,00%)", + "revision": "5107c204a76d4df78b4f8f49", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 124986.6534 + }, + "revision": "42b33e1401c7421f971748e0", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691271945589, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 4295074, + "installment_amount": 4295074, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "94abde2165be4cf09f8da210", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691271945589", + "revision": "95c22655e70342bf9521c41b", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "2b9c6a4651a048789c3da8c8", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 4295074, + "total_amount": 4166221.78, + "id": 1691271945589, + "history_id": 1691271945589, + "date_created": { + "type": 6, + "value": 1691271945589 + }, + "date_last_updated": { + "type": 6, + "value": 1692196076970 + }, + "date_of_expiration": { + "type": 6, + "value": 1691271945589 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "rejected", + "money_release_date": { + "type": 6, + "value": 1692196076970 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "8bc1710dacfa448c8d91c055", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/description", + "content": { + "type": 5, + "value": "Saque de 4.166.221,78 IVIP para a carteira 0x13d16B24c3293ABAD823e83A490982c0906508A8", + "revision": "9bfff95bc802474cbb875555", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 124986.6534 + }, + "revision": "af3fd6754795428a8c296a14", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691437746780, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 4295074, + "installment_amount": 4295074, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "a63e1fd6d7334530aea3bd8f", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691437746780", + "revision": "bf30eb95ca944c45a42a9b74", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "d30521ec68174e0e8a824720", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 4295074, + "total_amount": 4166221.78, + "id": 1691437746780, + "history_id": 1691437746780, + "date_created": { + "type": 6, + "value": 1691437746780 + }, + "date_last_updated": { + "type": 6, + "value": 1691509186843 + }, + "date_of_expiration": { + "type": 6, + "value": 1691437746780 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": { + "type": 6, + "value": 1691509186843 + }, + "money_release_date": { + "type": 6, + "value": 1691509186843 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "549b903272b04dffa9bf8d39", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/description", + "content": { + "type": 5, + "value": "Saque de 4.166.221,78 IVIP para a carteira 0x13d16B24c3293ABAD823e83A490982c0906508A8", + "revision": "2c1274aab15140a290e768ed", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history", + "content": { + "type": 1, + "value": {}, + "revision": "32ddeed5904d434cb25bcaa8", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "5d25ddae0b96458b8454fcdb", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 1000, + "limitUsed": 0, + "analysisRequested": { + "type": 6, + "value": 1679167350161 + }, + "lastReview": { + "type": 6, + "value": 1679261140619 + } + }, + "revision": "8d4c2a57dfdc4c9e86ef6570", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678034837603, + "dateValidity": 1679040303242, + "totalValue": 14.089318085490447, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } + }, + "revision": "ee790140910d45989729240e", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085869720472730110/balances", + "content": { + "type": 1, + "value": {}, + "revision": "ecbe2a22a4cb47fb999cc298", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085869720472730110/history/1677939492133/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "5428fd6fcb9b419ba32e59d3", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085869720472730110/history/1677939492133", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 300, + "total_amount": 300, + "history_id": 1677939492133, + "id": 1677939492133, + "date_created": { + "type": 6, + "value": 1677939492133 + }, + "date_last_updated": { + "type": 6, + "value": 1678714240045 + }, + "date_of_expiration": { + "type": 6, + "value": 1680531492133 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1678714240045 + }, + "money_release_status": "rejected" + }, + "revision": "a6a1f043058f40b49677b317", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085869720472730110/history/1677939492133/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0858.6972.0472.7301-10", + "revision": "102c3b07fdaa4f4286bfb61a", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085869720472730110/history", + "content": { + "type": 1, + "value": {}, + "revision": "242b5fde6a4f40c0a6c7d472", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085869720472730110/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "3414f1ab66484bb19b3ebeb0", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085869720472730110/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "c2af060ae35f430489e4de15", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085869720472730110", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677772587436, + "dateValidity": 1678142633851, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "ec77fda5bb18464f902e327a", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "1370911.00000000", + "symbol": "IVIP", + "value": 901.85 + }, + "revision": "849392730b4848a3916af935", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/balances", + "content": { + "type": 1, + "value": {}, + "revision": "7accee2574714d8281e61037", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1678097305816/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "4b41072a437b446e8b16e6e5", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1678097305816", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 140, + "total_amount": 140, + "history_id": 1678097305816, + "id": 1678097305816, + "date_created": { + "type": 6, + "value": 1678097305816 + }, + "date_last_updated": { + "type": 6, + "value": 1678214824970 + }, + "date_of_expiration": { + "type": 6, + "value": 1680689305816 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678214824970 + }, + "money_release_date": { + "type": 6, + "value": 1678214824970 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "780278b9d69442c3b943571c", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1678097305816/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 140,00 para a carteira iVip 0878.7790.2032.1434-10", + "revision": "a2df46a2449f45ee95f5bb86", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 1.00%", + "amount": 1.1111 + }, + "revision": "2cabdf72a4ab4e15826400a1", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "03f44200f07f4dcb929bdf39", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, + "revision": "e73230829c104f5280600c9c", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "075938a2ab3f457c9f917587", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 112.22, + "overpaid_amount": 0, + "installment_amount": 0 + }, + "revision": "7996f5491eef4be2b650c469", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/qr_code", + "content": { + "type": 5, + "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b615204000053039865406112.225802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13123227786304C4AC", + "revision": "f296837cbfbd45f2a9ba0548", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/ticket_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/sandbox/payments/1312322778/ticket?caller_id=1310149122&hash=6c5d5276-a6c2-41fd-b3ac-10aff2badfc5", + "revision": "eb73f2f213224f738256e20c", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/qr_code_base64", + "content": { + "type": 5, + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI3klEQVR42u3dSY7kNhAFUN5A97+lbiDDC7uUjB9UeoDhpl4uGo1SpfRUu48YOK5f6HMOWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWtp/Xzvmz/H7z44/Lxx//t4fF37//u3Cz13u/zvH+Hzi+Lnp/QYfFyYGLS0tLS0tLS0tLS3tS7TTY39u8vPYyitvWt/qfuHjLtOF+98hqWhpaWlpaWlpaWlpaV+gnQJk+lb6vSkT3n+WvvvjXt2vMGhpaWlpaWlpaWlpaV+qLVW2q8TL6fNUzvsoAN6NtLS0tLS0tLS0tLS0tDEdtjeeyn4juKfy4BVS5Ph8A1paWlpaWlpaWlpa2jdrEz5dnebYSuluQk0vdDw1a/69HlFaWlpaWlpaWlpaWtpfXdtuKflv//mnO1VoaWlpaWlpaWlpaWl/UW3+nJ+NlOciBLYpsp2ku++WnLZMZgstLS0tLS0tLS0tLe3e2masLe19/NHmBPrhKd2ZR6kRtkcF9CmSlpaWlpaWlpaWlpZ2N23aL5J3PI774pH70Fs7IZcOZGuH447+pDZaWlpaWlpaWlpaWtqdtSUYtudc192SaSQuhcXFnyAd4XasMi8tLS0tLS0tLS0tLe1u2lRRW5/Alrsz6xHXU51vKh6WrsvmpG1aWlpaWlpaWlpaWtrdtan1Mh1sPcXLactkul8edUtdnEdgHLS0tLS0tLS0tLS0tC/Rlum1a5EESylw5O3/7eHZ+RtniJcXLS0tLS0tLS0tLS3tS7Tf37NNmx/PycNxzYlupcfzy8xLS0tLS0tLS0tLS0u7lfb8zITNZsdyzzQcd4UdJnXDSeq1TKVFWlpaWlpaWlpaWlra92jTRNsi9dWXfGrMXD2jPG3Q0tLS0tLS0tLS0tK+S1vJpc1yMqYuyXPEVs5UMiy/cnUL/WlpaWlpaWlpaWlpad+izUmwdk6mzSVTiW+6cDemibsRDml7SpG0tLS0tLS0tLS0tLQ7a8tA2rm83ZlfqM2JJU+eo57IfdLS0tLS0tLS0tLS0r5Qe5TRtMldHnGW9yu3GmGwbnrklc/XpqWlpaWlpaWlpaWlfY82VdRKDa4uLZm6JMtLTiv76zhdyZjtcdu0tLS0tLS0tLS0tLS7a2t8W6fIdhlJ6cSsqbT8lY6/tqWElpaWlpaWlpaWlpZ2U225XUqCU6/lFU5MS+RrET5TT+ZziqSlpaWlpaWlpaWlpd1KW9xH0T61XqZz19Jp2VPX5ciFvUKmpaWlpaWlpaWlpaV9gbZU1JrP9Ox7JqzNle2R2dOB2qkJk5aWlpaWlpaWlpaW9p3aUaLfVABMwbDEwdWtUtvmoqpIS0tLS0tLS0tLS0v7Cu1ZUl9ZDXk8B8gRDsWe/pkuXOGRU58mLS0tLS0tLS0tLS3tC7R5mG2UXDddaL9WTsuuS/4nT3sDWlpaWlpaWlpaWlral2gnwNWdX308LZi8l/iaNss8bFcn6brqHi0tLS0tLS0tLS0t7X7afGD1tFpk5S7GdkvJFENXufOhFklLS0tLS0tLS0tLS7uV9lo8ewp37TRcToLtS448/lZ6N2lpaWlpaWlpaWlpaV+hTZ2TI5+C/fR7I38jle7Wh7R9k3lpaWlpaWlpaWlpaWl304b4Npf42mQ5fSPdKrdUXqU788uuS1paWlpaWlpaWlpa2l205XDqtFXkzLI8IVej6XT7p2j6vFOFlpaWlpaWlpaWlpZ2I23+pNR3fpbfRoiXzZL/e4nvCGGxHgFAS0tLS0tLS0tLS0v7Jm07kLZaXzJlwp/vtjso0ztP71cCJC0tLS0tLS0tLS0t7Qu0pX2y7hfJWa+p1eXCXoqNV64qhk5MWlpaWlpaWlpaWlra7bX35xxdia8ekZbOU0uvVjosj8VW/2V1j5aWlpaWlpaWlpaWdj9tkpUy3Xhyp57MUiOs03UlVH7ZI0pLS0tLS0tLS0tLS7uV9gyyI6TIa7mHJDVXtk2YKZ+OsvWElpaWlpaWlpaWlpb2Fdq0c2QKd4uz067uiOtzMVO3LiNOG05oaWlpaWlpaWlpaWl31yZ3+7BFc2WTLMPOkVhGvL/9V1v9aWlpaWlpaWlpaWlp99Gmk9VWvZZp1WS6UEbdVmN3U3mQlpaWlpaWlpaWlpb2PdoS6abbnTlAdgv4x7RzJN0vl/PSiB0tLS0tLS0tLS0tLe2rtO0c2zTMVtoir26Z5HqwrjmLLfyMlpaWlpaWlpaWlpZ2Z+0EKMZRCnvJXebdkqfWDct0Xa0g0tLS0tLS0tLS0tLS7q+tnY5tYa9Mr9XwuTgtu34tHQHw0CNKS0tLS0tLS0tLS0u7m7b0Rq4G3HJz5fis+J0lWebGzNFt9T9oaWlpaWlpaWlpaWnfpA2hbZRaXbPfvxQFz26wbpRmzdyEmT60tLS0tLS0tLS0tLSv0I5P4yjDbKUjsj4nJdAUL8tz616ThxRJS0tLS0tLS0tLS0u7kTYnxlqDm8bVcqhMpcD6oHRIW15QQktLS0tLS0tLS0tL+x5tsy0krYsspbta8Xuamqu7Tr7uEaWlpaWlpaWlpaWlpd1Nmz7rPSTpTLQSIM8yCJen686n8ElLS0tLS0tLS0tLS7u7to1+04RcIrdNk3kZSUqRTYvmc+alpaWlpaWlpaWlpaXdR9tkvSnclaJbzZ2p9pe6MxP+6xRJS0tLS0tLS0tLS0u7pbbEwVG6Lstc3BVWi9T2yYJqTgRYRlhaWlpaWlpaWlpaWtqXakdosxx5+0g+2PocTVxNu06+r+7R0tLS0tLS0tLS0tK+RXt0Z2TXUbdp6WR7BEC5ywhnAxy0tLS0tLS0tLS0tLSv0y7wIz92emI7EpcC5Ho47jlF0tLS0tLS0tLS0tLSbqZNlbwp4U2yUfLkInw2o3P5DeqGSlpaWlpaWlpaWlpa2t21//8PLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLe2/pv0Nc/R6xtt85A0AAAAASUVORK5CYII=", + "revision": "ae80a3322c0c4252aa96bf44", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "a5486e5572204e19af083024", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 111.11, + "total_amount": 112.22, + "history_id": 1679947244258, + "id": 1312322778, + "date_created": { + "type": 6, + "value": 1679947245050 + }, + "date_last_updated": { + "type": 6, + "value": 1679947245050 + }, + "date_of_expiration": { + "type": 6, + "value": 1680033644758 + }, + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "pending", + "status_detail": "pending_waiting_transfer", + "currency_id": "BRL" + }, + "revision": "11f4419277074d6a9f5fc092", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 111,11 para a carteira iVip 0878.7790.2032.1434-10", + "revision": "b380cf00bb2b4acba147da3f", + "revision_nr": 1, + "created": 1702563036388, + "modified": 1702563036388 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1680260155565/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1680260155565, + "acquirer_reference": "", + "verification_code": 1680260155565, + "net_received_amount": 0, + "total_paid_amount": 91.56, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "a2601e369b2442e88bd154a7", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1680260155565", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 500004, + "total_amount": 500004, + "id": 1680260155565, + "date_created": { + "type": 6, + "value": 1680260155565 + }, + "date_last_updated": { + "type": 6, + "value": 1680260155565 + }, + "date_of_expiration": { + "type": 6, + "value": 1680260155565 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1680260155565, + "description": "Compra de 500.004,00 IVIP por 91,56 BRL" + }, + "revision": "79b44fed67024fa8b50c4f99", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1680391431083/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1680391431083, + "acquirer_reference": "", + "verification_code": 1680391431083, + "net_received_amount": 0, + "total_paid_amount": 48.44, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "74a4f3bd76c942949bd7aca7", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1680391431083", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 267396, + "total_amount": 267396, + "id": 1680391431083, + "date_created": { + "type": 6, + "value": 1680391431083 + }, + "date_last_updated": { + "type": 6, + "value": 1680391431083 + }, + "date_of_expiration": { + "type": 6, + "value": 1680391431083 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1680391431083, + "description": "Compra de 267.396,00 IVIP por 48,44 BRL" + }, + "revision": "7d6af85484ad4efba8e62665", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1683913607250/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "ef894af06787495c815de0fe", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1683913607250", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 99.99, + "total_amount": 99.99, + "history_id": 1683913607250, + "id": 1683913607250, + "date_created": { + "type": 6, + "value": 1683913607250 + }, + "date_last_updated": { + "type": 6, + "value": 1683918275703 + }, + "date_of_expiration": { + "type": 6, + "value": 1686505607250 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683918275703 + }, + "money_release_date": { + "type": 6, + "value": 1683918275703 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "df8b299bb60441d1ad6e06ec", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1683913607250/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 99,99 para a carteira iVip 0878.7790.2032.1434-10", + "revision": "56cc3e86f7bb4c23a1888e6a", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1684628885106/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684628885106, + "acquirer_reference": "", + "verification_code": 1684628885106, + "net_received_amount": 0, + "total_paid_amount": 99.99, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "bdb88e695d954dd0987dd515", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1684628885106", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 487512, + "total_amount": 487512, + "id": 1684628885106, + "date_created": { + "type": 6, + "value": 1684628885106 + }, + "date_last_updated": { + "type": 6, + "value": 1684628885106 + }, + "date_of_expiration": { + "type": 6, + "value": 1684628885106 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684628885106, + "description": "Compra de 487.512,00 IVIP por 99,99 BRL" + }, + "revision": "c203a3905de14817bcbd94fc", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693414337210 + } + }, + "revision": "9fbd1a0f5e32419d88ad98ad", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690822337211, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "86157162a6fe47178a1f1003", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1690822337211", + "revision": "6b21395039f342b58778892a", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": 1690822337211, + "history_id": 1690822337211, + "date_created": { + "type": 6, + "value": 1690822337211 + }, + "date_last_updated": { + "type": 6, + "value": 1690822337211 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "df9303719f2341fab50d04c4", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211/description", + "content": { + "type": 5, + "value": "Deposito de um valor 20,00 para a carteira iVip 0878.7790.2032.1434-10", + "revision": "50b259377f324ee79a44842e", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693414439890 + } + }, + "revision": "06e5c9f8045c4c139df6f0f1", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690822439890, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "560cbcc14c2344549b5f6600", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1690822439890", + "revision": "4c2f84dbb90a499d8fc4adc2", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "id": 1690822439890, + "history_id": 1690822439890, + "date_created": { + "type": 6, + "value": 1690822439890 + }, + "date_last_updated": { + "type": 6, + "value": 1690837212866 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1690837212866 + }, + "money_release_date": { + "type": 6, + "value": 1690837212866 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "ecfe8ca02d364522a6192fed", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890/description", + "content": { + "type": 5, + "value": "Deposito de um valor 100,00 para a carteira iVip 0878.7790.2032.1434-10", + "revision": "c2430ddb597b45af92a550cd", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1695782499707/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695782499707, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "6cbfc4f549f0458d890966a3", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1695782499707/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1695782499707", + "revision": "56ba270b4eb1479faee19aa8", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1695782499707", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "wallet_id": "087877902032143410", + "payment_method": "swap", + "original_amount": 115999, + "total_amount": 115999, + "id": "1695782499707", + "history_id": "1695782499707", + "date_created": { + "type": 6, + "value": 1695782499707 + }, + "date_last_updated": { + "type": 6, + "value": 1695782499707 + }, + "date_of_expiration": { + "type": 6, + "value": 1695782499707 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 115.999,00 IVIP por 100,00 BRL", + "status_detail": "accredited" + }, + "revision": "0293e9ebc4854a17b5eddc29", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history", + "content": { + "type": 1, + "value": {}, + "revision": "6e5284e77872478488820960", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "5baea3ddbc8e4f98ab34392a", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "8a0f47de49f44108b36654d9", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677405879103, + "dateValidity": 1678984144008, + "totalValue": 47.38, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696906800000 + } + }, + "revision": "be621a6571d744a1b6e6b52b", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "16470.00000000", + "symbol": "IVIP", + "value": 4.22 + }, + "revision": "665407e2285c43c88357b001", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/balances", + "content": { + "type": 1, + "value": {}, + "revision": "c01003c5e84241e68ef35663", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684164750598/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "806ec4f0fd5d4eddad71be62", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684164750598", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "history_id": 1684164750598, + "id": 1684164750598, + "date_created": { + "type": 6, + "value": 1684164750598 + }, + "date_last_updated": { + "type": 6, + "value": 1684185652543 + }, + "date_of_expiration": { + "type": 6, + "value": 1686756750598 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684185652543 + }, + "money_release_date": { + "type": 6, + "value": 1684185652543 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "52f44c94798448c4b17f2524", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684164750598/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0887.5336.8634.7750-00", + "revision": "512527875af34b7798d7df3a", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684165632184/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "de44c1959caf49048bcd9b66", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684165632184", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1800, + "total_amount": 1800, + "history_id": 1684165632184, + "id": 1684165632184, + "date_created": { + "type": 6, + "value": 1684165632184 + }, + "date_last_updated": { + "type": 6, + "value": 1684165632184 + }, + "date_of_expiration": { + "type": 6, + "value": 1686757632184 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "d06ae1b24dc844e69201f742", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684165632184/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.800,00 para a carteira iVip 0887.5336.8634.7750-00", + "revision": "1ee5fc40e1f547fe8015be82", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684452112873/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "c05033d7e0f146f5b73bfd14", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684452112873", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 150, + "total_amount": 150, + "history_id": 1684452112873, + "id": 1684452112873, + "date_created": { + "type": 6, + "value": 1684452112873 + }, + "date_last_updated": { + "type": 6, + "value": 1684452414072 + }, + "date_of_expiration": { + "type": 6, + "value": 1687044112873 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684452414072 + }, + "money_release_date": { + "type": 6, + "value": 1684452414072 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "b9cba3654a67484c91449dbf", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684452112873/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0887.5336.8634.7750-00", + "revision": "56623fb3fd724ef0ae3effed", + "revision_nr": 1, + "created": 1702563036389, + "modified": 1702563036389 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684519388805/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "fd325954825c44fda1b7bebd", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684519388805", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "history_id": 1684519388805, + "id": 1684519388805, + "date_created": { + "type": 6, + "value": 1684519388805 + }, + "date_last_updated": { + "type": 6, + "value": 1684556278179 + }, + "date_of_expiration": { + "type": 6, + "value": 1687111388805 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1684556278179 + }, + "money_release_status": "rejected" + }, + "revision": "afd01c7420c54569a70b001d", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684519388805/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0887.5336.8634.7750-00", + "revision": "450dd7b15479472cb032e776", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684538973500/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "37c8804f83b54f07a4a57225", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684538973500", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 950, + "total_amount": 950, + "history_id": 1684538973500, + "id": 1684538973500, + "date_created": { + "type": 6, + "value": 1684538973500 + }, + "date_last_updated": { + "type": 6, + "value": 1684555702071 + }, + "date_of_expiration": { + "type": 6, + "value": 1687130973500 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1684555702071 + }, + "money_release_status": "rejected" + }, + "revision": "144142bd3c0547ad97e980fe", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684538973500/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00", + "revision": "142123de3e8c420993cd75d6", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684540522383/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "a397b5464bd8453fbbb68b3a", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684540522383", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 950, + "total_amount": 950, + "history_id": 1684540522383, + "id": 1684540522383, + "date_created": { + "type": 6, + "value": 1684540522383 + }, + "date_last_updated": { + "type": 6, + "value": 1684618713877 + }, + "date_of_expiration": { + "type": 6, + "value": 1687132522383 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1684618713877 + }, + "money_release_status": "rejected" + }, + "revision": "0d745f920fb14931b9e7787d", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684540522383/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00", + "revision": "efcd2e1e4592423bb40c237b", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684589302647/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "eea484395b2044dd9d35d32d", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684589302647", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 950, + "total_amount": 950, + "history_id": 1684589302647, + "id": 1684589302647, + "date_created": { + "type": 6, + "value": 1684589302647 + }, + "date_last_updated": { + "type": 6, + "value": 1684594446380 + }, + "date_of_expiration": { + "type": 6, + "value": 1687181302647 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684594446380 + }, + "money_release_date": { + "type": 6, + "value": 1684594446380 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "1644999ed3b1404d9683b2da", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684589302647/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00", + "revision": "35fa585291b345aaab2ea5cd", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624236329/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624236329, + "acquirer_reference": "", + "verification_code": 1684624236329, + "net_received_amount": 0, + "total_paid_amount": 1600, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "8648b7a71c1c47279f636fe2", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624236329", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 7793170, + "total_amount": 7793170, + "id": 1684624236329, + "date_created": { + "type": 6, + "value": 1684624236329 + }, + "date_last_updated": { + "type": 6, + "value": 1684624236329 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624236329 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624236329, + "description": "Compra de 7.793.170,00 IVIP por 1.600,00 BRL" + }, + "revision": "61af0fba490944fdb028e7e5", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624348122/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624348122, + "acquirer_reference": "", + "verification_code": 1684624348122, + "net_received_amount": 0, + "total_paid_amount": 160, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "018300ca00cf479b85d61cd7", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624348122", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 160, + "total_amount": 160, + "id": 1684624348122, + "date_created": { + "type": 6, + "value": 1684624348122 + }, + "date_last_updated": { + "type": 6, + "value": 1684624348122 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624348122 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684624348122 + }, + "revision": "d79aff3fcc234ec7b2de8fa2", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624348122/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "82886db215d348c1a119b97e", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624387279/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624387279, + "acquirer_reference": "", + "verification_code": 1684624387279, + "net_received_amount": 0, + "total_paid_amount": 160, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "b4e608088fd84a73b93c59e7", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624387279", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 779317, + "total_amount": 779317, + "id": 1684624387279, + "date_created": { + "type": 6, + "value": 1684624387279 + }, + "date_last_updated": { + "type": 6, + "value": 1684624387279 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624387279 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624387279, + "description": "Compra de 779.317,00 IVIP por 160,00 BRL" + }, + "revision": "311b6b8ecf5b46438f9902a8", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624827425/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624827425, + "acquirer_reference": "", + "verification_code": 1684624827425, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "7f4ac82cd0b14cd093cb0bb6", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624827425", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 20, + "total_amount": 20, + "id": 1684624827425, + "date_created": { + "type": 6, + "value": 1684624827425 + }, + "date_last_updated": { + "type": 6, + "value": 1684624827425 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624827425 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684624827425 + }, + "revision": "76b6183d138a4859b19af9bc", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624827425/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "dd90830a2e0a4cf1ae9447b0", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624867474/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624867474, + "acquirer_reference": "", + "verification_code": 1684624867474, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "942a623f1ced4388b710a8ee", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624867474", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 97414, + "total_amount": 97414, + "id": 1684624867474, + "date_created": { + "type": 6, + "value": 1684624867474 + }, + "date_last_updated": { + "type": 6, + "value": 1684624867474 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624867474 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624867474, + "description": "Compra de 97.414,00 IVIP por 20,00 BRL" + }, + "revision": "31b699851fee4494b55ccb39", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685361710845/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685361710845, + "acquirer_reference": "", + "verification_code": 1685361710845, + "net_received_amount": 0, + "total_paid_amount": 164, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "95e61bebdb664b1c92496d81", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685361710845", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 40000000, + "total_amount": 40000000, + "id": 1685361710845, + "date_created": { + "type": 6, + "value": 1685361710845 + }, + "date_last_updated": { + "type": 6, + "value": 1685361710845 + }, + "date_of_expiration": { + "type": 6, + "value": 1685361710845 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIPAY", + "history_id": 1685361710845 + }, + "revision": "3ed9a161ecb74bceab530f85", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685361710845/description", + "content": { + "type": 5, + "value": "Compra de 40.000.000,00 IVIPAY por 4.000.000,00 IVIP estabilizando US$ 164,00", + "revision": "26b24bb55e6e42958b6de4a6", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391792305/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685391792305, + "acquirer_reference": "", + "verification_code": 1685391792305, + "net_received_amount": 0, + "total_paid_amount": 4000000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "609855187f1c4977ad8480b6", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391792305", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 400000, + "total_amount": 400000, + "id": 1685391792305, + "date_created": { + "type": 6, + "value": 1685391792305 + }, + "date_last_updated": { + "type": 6, + "value": 1685391792305 + }, + "date_of_expiration": { + "type": 6, + "value": 1685391792305 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685391792305 + }, + "revision": "498a61b760254187bed93c1a", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391842660/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685391842660, + "acquirer_reference": "", + "verification_code": 1685391842660, + "net_received_amount": 0, + "total_paid_amount": 20000000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "010b0553092e4c72b62fc5ff", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391842660", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 2000000, + "total_amount": 2000000, + "id": 1685391842660, + "date_created": { + "type": 6, + "value": 1685391842660 + }, + "date_last_updated": { + "type": 6, + "value": 1685391842660 + }, + "date_of_expiration": { + "type": 6, + "value": 1685391842660 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685391842660 + }, + "revision": "1e79f372752b4fa6afc12728", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391842660/description", + "content": { + "type": 5, + "value": "Compra de 2.000.000,00 IVIP por 20.000.000,00 IVIPAY", + "revision": "2da6d1f14f5341f9b01fe3c6", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391972284/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685391972284, + "acquirer_reference": "", + "verification_code": 1685391972284, + "net_received_amount": 0, + "total_paid_amount": 1600000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "efef577891c2416ea8a25af7", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391972284", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 160000, + "total_amount": 160000, + "id": 1685391972284, + "date_created": { + "type": 6, + "value": 1685391972284 + }, + "date_last_updated": { + "type": 6, + "value": 1685391972284 + }, + "date_of_expiration": { + "type": 6, + "value": 1685391972284 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685391972284 + }, + "revision": "c145b6f70c7a4e2e87c5229f", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392038537/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685392038537, + "acquirer_reference": "", + "verification_code": 1685392038537, + "net_received_amount": 0, + "total_paid_amount": 14000000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "bf4fa406a8b34d01bf2e9548", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392038537", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1400000, + "total_amount": 1400000, + "id": 1685392038537, + "date_created": { + "type": 6, + "value": 1685392038537 + }, + "date_last_updated": { + "type": 6, + "value": 1685392038537 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392038537 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685392038537 + }, + "revision": "0867e910575a4d228cd4074c", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392038537/description", + "content": { + "type": 5, + "value": "Compra de 1.400.000,00 IVIP por 14.000.000,00 IVIPAY", + "revision": "647cd07f28914c92bc12b344", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392165654/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685392165654, + "acquirer_reference": "", + "verification_code": 1685392165654, + "net_received_amount": 0, + "total_paid_amount": 100000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "b33c9b88244047118297958d", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392165654", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 10000, + "total_amount": 10000, + "id": 1685392165654, + "date_created": { + "type": 6, + "value": 1685392165654 + }, + "date_last_updated": { + "type": 6, + "value": 1685392165654 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392165654 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685392165654, + "description": "Compra de 10.000,00 IVIP por 100.000,00 IVIPAY" + }, + "revision": "37162c582c0144cd84278190", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392465062/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685392465062, + "acquirer_reference": "", + "verification_code": 1685392465062, + "net_received_amount": 0, + "total_paid_amount": 300000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "52f3d6e57ec54cea8fab9e15", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392465062", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 30000, + "total_amount": 30000, + "id": 1685392465062, + "date_created": { + "type": 6, + "value": 1685392465062 + }, + "date_last_updated": { + "type": 6, + "value": 1685392465062 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392465062 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685392465062, + "description": "Compra de 30.000,00 IVIP por 300.000,00 IVIPAY" + }, + "revision": "ea02f73f3e524edd9871ab8b", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685396749543/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "77994dd67b1e4e0a846af934", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685396749543", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 4669901, + "total_amount": 4669901, + "history_id": 1685396749543, + "id": 1685396749543, + "date_created": { + "type": 6, + "value": 1685396749543 + }, + "date_last_updated": { + "type": 6, + "value": 1685396749543 + }, + "date_of_expiration": { + "type": 6, + "value": 1685396749543 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "70ee220fad974fbc91eb00af", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685396749543/description", + "content": { + "type": 5, + "value": "Saque de 4.669.901,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", + "revision": "eebc6035ee40411bbe99e14a", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685409104532/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685409104532, + "acquirer_reference": "", + "verification_code": 1685409104532, + "net_received_amount": 0, + "total_paid_amount": 790.8125996034149, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "fb705eb303d0402e88dc9928", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685409104532", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 86699010, + "total_amount": 86699010, + "id": 1685409104532, + "date_created": { + "type": 6, + "value": 1685409104532 + }, + "date_last_updated": { + "type": 6, + "value": 1685409104532 + }, + "date_of_expiration": { + "type": 6, + "value": 1685409104532 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIPAY", + "history_id": 1685409104532 + }, + "revision": "290cd0457a014cda99c66d54", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685409104532/description", + "content": { + "type": 5, + "value": "Compra de 86.699.010,00 IVIPAY por 8.669.901,00 IVIP estabilizando US$ 790,81", + "revision": "1c22652cc9dc451588db9909", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494858663/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685494858663, + "acquirer_reference": "", + "verification_code": 1685494858663, + "net_received_amount": 0, + "total_paid_amount": 15447894, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "271bd72daf664d4ba6b6aace", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494858663", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1544789, + "total_amount": 1544789, + "id": 1685494858663, + "date_created": { + "type": 6, + "value": 1685494858663 + }, + "date_last_updated": { + "type": 6, + "value": 1685494858663 + }, + "date_of_expiration": { + "type": 6, + "value": 1685494858663 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685494858663 + }, + "revision": "71483f8ade2e411ca6d131f8", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494858663/description", + "content": { + "type": 5, + "value": "Compra de 1.544.789,00 IVIP por 15.447.894,00 IVIPAY", + "revision": "ef6a365402554961be3ea850", + "revision_nr": 1, + "created": 1702563036390, + "modified": 1702563036390 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494914975/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685494914975, + "acquirer_reference": "", + "verification_code": 1685494914975, + "net_received_amount": 0, + "total_paid_amount": 139000000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "2b80626a5f2c4e58b8734912", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494914975", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 13900000, + "total_amount": 13900000, + "id": 1685494914975, + "date_created": { + "type": 6, + "value": 1685494914975 + }, + "date_last_updated": { + "type": 6, + "value": 1685494914975 + }, + "date_of_expiration": { + "type": 6, + "value": 1685494914975 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685494914975 + }, + "revision": "b35c6daaeb26484c8261ba13", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494914975/description", + "content": { + "type": 5, + "value": "Compra de 13.900.000,00 IVIP por 139.000.000,00 IVIPAY", + "revision": "15858c4d51a44b8996ded361", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495030715/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685495030715, + "acquirer_reference": "", + "verification_code": 1685495030715, + "net_received_amount": 0, + "total_paid_amount": 31054, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "7382545247ed4e75a5656ae0", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495030715", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 3105, + "total_amount": 3105, + "id": 1685495030715, + "date_created": { + "type": 6, + "value": 1685495030715 + }, + "date_last_updated": { + "type": 6, + "value": 1685495030715 + }, + "date_of_expiration": { + "type": 6, + "value": 1685495030715 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685495030715, + "description": "Compra de 3.105,00 IVIP por 31.054,00 IVIPAY" + }, + "revision": "8f4b65b2143341db9f492fb8", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495440046/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "86b2525bf714476586190573", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495440046", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 15447894, + "total_amount": 15447894, + "history_id": 1685495440046, + "id": 1685495440046, + "date_created": { + "type": 6, + "value": 1685495440046 + }, + "date_last_updated": { + "type": 6, + "value": 1685728987171 + }, + "date_of_expiration": { + "type": 6, + "value": 1685495440046 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "IVIP", + "money_release_date": { + "type": 6, + "value": 1685728987171 + }, + "money_release_status": "rejected" + }, + "revision": "59952f439c384174994336a6", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495440046/description", + "content": { + "type": 5, + "value": "Saque de 15.447.894,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", + "revision": "1f3754a8b63f4eceb59d3a78", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685496474860/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685496474860, + "acquirer_reference": "", + "verification_code": 1685496474860, + "net_received_amount": 0, + "total_paid_amount": 957.1195165663793, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "bb52031467784559851a063d", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685496474860", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 154478940, + "total_amount": 154478940, + "id": 1685496474860, + "date_created": { + "type": 6, + "value": 1685496474860 + }, + "date_last_updated": { + "type": 6, + "value": 1685496474860 + }, + "date_of_expiration": { + "type": 6, + "value": 1685496474860 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIPAY", + "history_id": 1685496474860 + }, + "revision": "62c64dbcfc2148d7af701559", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685496474860/description", + "content": { + "type": 5, + "value": "Compra de 154.478.940,00 IVIPAY por 15.447.894,00 IVIP estabilizando US$ 957,12", + "revision": "994d14a6831f441b8db65990", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685572512459/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685572512459, + "acquirer_reference": "", + "verification_code": 1685572512459, + "net_received_amount": 0, + "total_paid_amount": 146607949, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "0a928c4b38124d4985107d40", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685572512459", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 14660794, + "total_amount": 14660794, + "id": 1685572512459, + "date_created": { + "type": 6, + "value": 1685572512459 + }, + "date_last_updated": { + "type": 6, + "value": 1685572512459 + }, + "date_of_expiration": { + "type": 6, + "value": 1685572512459 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685572512459 + }, + "revision": "4331801e74a24be9a83fb248", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685572512459/description", + "content": { + "type": 5, + "value": "Compra de 14.660.794,00 IVIP por 146.607.949,00 IVIPAY", + "revision": "fa60e22040ad45f7afdcf244", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685574712795/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "51ed52ece6d14ae7ba042b7c", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685574712795", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 10637617, + "total_amount": 10637617, + "history_id": 1685574712795, + "id": 1685574712795, + "date_created": { + "type": 6, + "value": 1685574712795 + }, + "date_last_updated": { + "type": 6, + "value": 1685728539697 + }, + "date_of_expiration": { + "type": 6, + "value": 1685574712795 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "IVIP", + "money_release_date": { + "type": 6, + "value": 1685728539697 + }, + "money_release_status": "rejected" + }, + "revision": "5ec5d9b3fc594187883fd513", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685574712795/description", + "content": { + "type": 5, + "value": "Saque de 10.637.617,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", + "revision": "751840d2363648caaa8f595a", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685587807706/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "9fa6568ba6814aac81bc1757", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685587807706", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 14660794, + "total_amount": 14660794, + "history_id": 1685587807706, + "id": 1685587807706, + "date_created": { + "type": 6, + "value": 1685587807706 + }, + "date_last_updated": { + "type": 6, + "value": 1685728442582 + }, + "date_of_expiration": { + "type": 6, + "value": 1685587807706 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "IVIP", + "money_release_date": { + "type": 6, + "value": 1685728442582 + }, + "money_release_status": "rejected" + }, + "revision": "b1a3d2820ff445b5b726e647", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685587807706/description", + "content": { + "type": 5, + "value": "Saque de 14.660.794,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", + "revision": "c00fd2c4d0fb4eef98328874", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685623890790/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "bd2a0b3ffe7c424782d6910a", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685623890790", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 14660794, + "total_amount": 14660794, + "history_id": 1685623890790, + "id": 1685623890790, + "date_created": { + "type": 6, + "value": 1685623890790 + }, + "date_last_updated": { + "type": 6, + "value": 1685647998019 + }, + "date_of_expiration": { + "type": 6, + "value": 1685623890790 + }, + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1685647998019 + }, + "money_release_date": { + "type": 6, + "value": 1685647998019 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "37f37ccaad84462886b77fcc", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685623890790/description", + "content": { + "type": 5, + "value": "Saque de 14.660.794,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", + "revision": "df466e37bff04b2b8afb2de3", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685625562355/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685625562355, + "acquirer_reference": "", + "verification_code": 1685625562355, + "net_received_amount": 0, + "total_paid_amount": 749.8617754523927, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "367e344b844a4d6a9b1107cf", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685625562355", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 146607940, + "total_amount": 146607940, + "id": 1685625562355, + "date_created": { + "type": 6, + "value": 1685625562355 + }, + "date_last_updated": { + "type": 6, + "value": 1685625562355 + }, + "date_of_expiration": { + "type": 6, + "value": 1685625562355 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIPAY", + "history_id": 1685625562355 + }, + "revision": "ce23dae7a8e740aca95edfbb", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685625562355/description", + "content": { + "type": 5, + "value": "Compra de 146.607.940,00 IVIPAY por 14.660.794,00 IVIP estabilizando US$ 749,86", + "revision": "1a86062ccfc9469e972ee62f", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685639526258/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685639526258, + "acquirer_reference": "", + "verification_code": 1685639526258, + "net_received_amount": 0, + "total_paid_amount": 14900, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "e716c07e9edb4db292db52cc", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685639526258", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1490, + "total_amount": 1490, + "id": 1685639526258, + "date_created": { + "type": 6, + "value": 1685639526258 + }, + "date_last_updated": { + "type": 6, + "value": 1685639526258 + }, + "date_of_expiration": { + "type": 6, + "value": 1685639526258 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIP", + "history_id": 1685639526258, + "description": "Compra de 1.490,00 IVIP por 14.900,00 IVIPAY" + }, + "revision": "7d0aea18a56246308fa7ade8", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685647933824/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "65e1ce147db440bbb87801e0", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685647933824", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1490, + "total_amount": 1490, + "history_id": 1685647933824, + "id": 1685647933824, + "date_created": { + "type": 6, + "value": 1685647933824 + }, + "date_last_updated": { + "type": 6, + "value": 1685648093267 + }, + "date_of_expiration": { + "type": 6, + "value": 1685647933824 + }, + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1685648093267 + }, + "money_release_date": { + "type": 6, + "value": 1685648093267 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "7393caea77014f178a1527d8", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685647933824/description", + "content": { + "type": 5, + "value": "Saque de 1.490,00 IVIP para a carteira 0x46450913428e27edfc5B4055875c08eC6a22cbfF", + "revision": "5f567d8b2faa451eada5d351", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685653675417/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685653675417, + "acquirer_reference": "", + "verification_code": 1685653675417, + "net_received_amount": 0, + "total_paid_amount": 136031630, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "aef9337ac71f4e13b4a69ce7", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685653675417", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 13603163, + "total_amount": 13603163, + "id": 1685653675417, + "date_created": { + "type": 6, + "value": 1685653675417 + }, + "date_last_updated": { + "type": 6, + "value": 1685653675417 + }, + "date_of_expiration": { + "type": 6, + "value": 1685653675417 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIP", + "history_id": 1685653675417 + }, + "revision": "057c3c14c8e642369d0a2444", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685653675417/description", + "content": { + "type": 5, + "value": "Compra de 13.603.163,00 IVIP por 136.031.630,00 IVIPAY", + "revision": "c83039e8a1b94fc8a68cb5ad", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1688596994749/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "cbe7235b609340e59daaa0f9", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1688596994749", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 3463, + "total_amount": 3463, + "history_id": 1688596994749, + "id": 1688596994749, + "date_created": { + "type": 6, + "value": 1688596994749 + }, + "date_last_updated": { + "type": 6, + "value": 1688596994749 + }, + "date_of_expiration": { + "type": 6, + "value": 1691188994749 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "5bd71a1759b144ae810b56ad", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1688596994749/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 3.463,00 para a carteira iVip 0887.5336.8634.7750-00", + "revision": "8ba24b9a76b643f8bed7100e", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689384333712/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "cc30279a3f064270bc55f3ae", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689384333712", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1689384333712, + "id": 1689384333712, + "date_created": { + "type": 6, + "value": 1689384333712 + }, + "date_last_updated": { + "type": 6, + "value": 1689384333712 + }, + "date_of_expiration": { + "type": 6, + "value": 1691976333712 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "c59002e771154e1e9b161914", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689384333712/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0887.5336.8634.7750-00", + "revision": "a474972115864ca0b2cb7443", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692547137377 + } + }, + "revision": "6e8336a6b8984d469b8b623a", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1689955137377, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1671, + "installment_amount": 1671, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "755e163ed43b41b8b40cf36e", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1689955137377", + "revision": "40057b5531d7457b9c99a149", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1671, + "total_amount": 1671, + "id": 1689955137377, + "history_id": 1689955137377, + "date_created": { + "type": 6, + "value": 1689955137377 + }, + "date_last_updated": { + "type": 6, + "value": 1689955137377 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "84175f9f74ee4364b1ecb428", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.671,00 para a carteira iVip 0887.5336.8634.7750-00", + "revision": "e588547ec3f941989623592c", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693429523298 + } + }, + "revision": "1ef51bce39734f0c868fb50c", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690837523298, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "2aab7255df8045c592f9388f", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1690837523298", + "revision": "6a3f1ca4bb694c5fa4cbe008", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": 1690837523298, + "history_id": 1690837523298, + "date_created": { + "type": 6, + "value": 1690837523298 + }, + "date_last_updated": { + "type": 6, + "value": 1690840864751 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1690840864751 + }, + "money_release_date": { + "type": 6, + "value": 1690840864751 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "eebd5c6c105e4fb7a2d0e3dd", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298/description", + "content": { + "type": 5, + "value": "Deposito de um valor 20,00 para a carteira iVip 0887.5336.8634.7750-00", + "revision": "09620fa8e7f54e929ffa8e46", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690844181474/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690844181474, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "24b8e23234ed426890bdfe8c", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690844181474/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1690844181474", + "revision": "2ba7d45b8cef4e029892ad6c", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690844181474", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 17960, + "total_amount": 17960, + "id": 1690844181474, + "history_id": 1690844181474, + "date_created": { + "type": 6, + "value": 1690844181474 + }, + "date_last_updated": { + "type": 6, + "value": 1690844181474 + }, + "date_of_expiration": { + "type": 6, + "value": 1690844181474 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 17.960,00 IVIP por 20,00 BRL", + "status_detail": "accredited" + }, + "revision": "99e79c61fe594ae0aada4a2d", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history", + "content": { + "type": 1, + "value": {}, + "revision": "a699cf78cb3240908ed14bfa", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "33e0413ce458400b8cfc4a31", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "analysisRequested": { + "type": 6, + "value": 1688858744635 + } + }, + "revision": "b80ab2973d10475e80f79cf0", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684160584822, + "dateValidity": 1684160584822, + "totalValue": 8.87, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1695956400000 + } + }, + "revision": "3b6ca5995a7746198891c808", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "465751.00000000", + "symbol": "IVIP", + "value": 507.45 + }, + "revision": "09a8671eaf144647b57a3d23", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/balances", + "content": { + "type": 1, + "value": {}, + "revision": "e8cf5325d35348e2967558f6", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689132397301/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "996c44a64cb947c1a180677b", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689132397301", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1689132397301, + "id": 1689132397301, + "date_created": { + "type": 6, + "value": 1689132397301 + }, + "date_last_updated": { + "type": 6, + "value": 1689153725926 + }, + "date_of_expiration": { + "type": 6, + "value": 1691724397301 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689153725926 + }, + "money_release_date": { + "type": 6, + "value": 1689153725926 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "b6d0b089f5a24f6e999f047f", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689132397301/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0918.7836.9033.5585-10", + "revision": "006a340e98174aef87a7efc6", + "revision_nr": 1, + "created": 1702563036391, + "modified": 1702563036391 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689197549929/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689197549929, + "acquirer_reference": "", + "verification_code": 1689197549929, + "net_received_amount": 0, + "total_paid_amount": 200, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "8e4378b8c0f6498489db1fe2", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689197549929", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 82125, + "total_amount": 82125, + "id": 1689197549929, + "date_created": { + "type": 6, + "value": 1689197549929 + }, + "date_last_updated": { + "type": 6, + "value": 1689197549929 + }, + "date_of_expiration": { + "type": 6, + "value": 1689197549929 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689197549929, + "description": "Compra de 82.125,00 IVIP por 200,00 BRL" + }, + "revision": "12d89a2c5a3b4bfeabf8fd74", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698492550248 + } + }, + "revision": "cad8b2fa99154d7e90ba8105", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695900550248, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 458, + "installment_amount": 458, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "17b2fd8366a240f089bbe6f1", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900550248", + "revision": "bfb3b0327f914ec184fce51a", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "091878369033558510", + "payment_method": "whatsapp", + "original_amount": 458, + "total_amount": 458, + "id": "1695900550248", + "history_id": "1695900550248", + "date_created": { + "type": 6, + "value": 1695900550248 + }, + "date_last_updated": { + "type": 6, + "value": 1695900550248 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "747e948dbe2648cc8b40550b", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248/description", + "content": { + "type": 5, + "value": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10", + "revision": "4e0e268e74af4792ac16fd34", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698492550761 + } + }, + "revision": "ea9f8b27ce444ee1949ef141", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695900550761, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 458, + "installment_amount": 458, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "6b5d6bb6c872456d8daa6ebc", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900550761", + "revision": "fdb624e7c5da473db9a3b0fe", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "091878369033558510", + "payment_method": "whatsapp", + "original_amount": 458, + "total_amount": 458, + "id": "1695900550761", + "history_id": "1695900550761", + "date_created": { + "type": 6, + "value": 1695900550761 + }, + "date_last_updated": { + "type": 6, + "value": 1695900550761 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "280478192b454948b11a3049", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761/description", + "content": { + "type": 5, + "value": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10", + "revision": "3675c2b792194988a00e7ff8", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698492565784 + } + }, + "revision": "cecdbb59321c493dbe10e164", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695900565784, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 458, + "installment_amount": 458, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "6ccc85c6d91a4ff3ae6dd754", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900565784", + "revision": "f8d7414f26fa4a11b8c3dc3a", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "091878369033558510", + "payment_method": "whatsapp", + "original_amount": 458, + "total_amount": 458, + "id": "1695900565784", + "history_id": "1695900565784", + "date_created": { + "type": 6, + "value": 1695900565784 + }, + "date_last_updated": { + "type": 6, + "value": 1695901613220 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1695901613220 + }, + "money_release_date": { + "type": 6, + "value": 1695901613220 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "317a2cd23a2f4959a1b795a1", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784/description", + "content": { + "type": 5, + "value": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10", + "revision": "d3d39336b2b14a3da5777113", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695903994262/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695903994262, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 458, + "installment_amount": 458, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "a22474fed53347d8bcaaf60c", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695903994262/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695903994262", + "revision": "2b5a1518f43a416cb5009df4", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695903994262", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "wallet_id": "091878369033558510", + "payment_method": "swap", + "original_amount": 383626, + "total_amount": 383626, + "id": "1695903994262", + "history_id": "1695903994262", + "date_created": { + "type": 6, + "value": 1695903994262 + }, + "date_last_updated": { + "type": 6, + "value": 1695903994262 + }, + "date_of_expiration": { + "type": 6, + "value": 1695903994262 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 383.626,00 IVIP por 458,00 BRL", + "status_detail": "accredited" + }, + "revision": "38b891d23e3a43b7949c9833", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history", + "content": { + "type": 1, + "value": {}, + "revision": "6808376c85d249d286eefe75", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "c2229f987ec741f5bffac67c", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "027fadbf78154598b0a716a9", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689132373088, + "dateValidity": 1689132373088, + "totalValue": 41.04, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696129200000 + } + }, + "revision": "66a811f90742464e8db81d87", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/092392253957118480/balances", + "content": { + "type": 1, + "value": {}, + "revision": "7f24ede5e778472b9b697c0d", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/092392253957118480/history/1678089239675/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "f5bbe58065154f088fc77b66", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/092392253957118480/history/1678089239675", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1678089239675, + "id": 1678089239675, + "date_created": { + "type": 6, + "value": 1678089239675 + }, + "date_last_updated": { + "type": 6, + "value": 1678716487775 + }, + "date_of_expiration": { + "type": 6, + "value": 1680681239675 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1678716487775 + }, + "money_release_status": "rejected" + }, + "revision": "fe692fb9cda645eba7d22444", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/092392253957118480/history/1678089239675/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0923.9225.3957.1184-80", + "revision": "35ae60f0a6d24165a3da8ad4", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/092392253957118480/history", + "content": { + "type": 1, + "value": {}, + "revision": "bcafc67b38bf4223bbd274a5", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/092392253957118480", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677466864789, + "dateValidity": 1678103589466, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "d634a4db5e764c13baad8766", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/095633229427881890/balances", + "content": { + "type": 1, + "value": {}, + "revision": "369e30c6890e4f4ebae1a22f", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689457461269/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "c317d8bb61b54c928887c071", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689457461269", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "history_id": 1689457461269, + "id": 1689457461269, + "date_created": { + "type": 6, + "value": 1689457461269 + }, + "date_last_updated": { + "type": 6, + "value": 1689457461269 + }, + "date_of_expiration": { + "type": 6, + "value": 1692049461269 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "18e7775030384a17a91060c4", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689457461269/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0956.3322.9427.8818-90", + "revision": "5719503631b747a2bfb46e6c", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689629737479/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "c2c1e2880f2647dd9aee469b", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689629737479", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "history_id": 1689629737479, + "id": 1689629737479, + "date_created": { + "type": 6, + "value": 1689629737479 + }, + "date_last_updated": { + "type": 6, + "value": 1689629737479 + }, + "date_of_expiration": { + "type": 6, + "value": 1692221737479 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "6ee1c53bff5f4ffda3391f7f", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689629737479/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0956.3322.9427.8818-90", + "revision": "def2da11d651409b8a4362a7", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history", + "content": { + "type": 1, + "value": {}, + "revision": "07f25e681ac143d38669bd91", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/095633229427881890/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "819a7ec5d65341c68b4fd951", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/095633229427881890/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "a3c8b971cd0f4372b9fd636c", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/095633229427881890", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689457427075, + "dateValidity": 1689457427075, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "7a610967f16b4ceea2fc3d59", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/096124016860355650/balances", + "content": { + "type": 1, + "value": {}, + "revision": "805053ca48424e3fbf528165", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/096124016860355650/history/1684543373520/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "9899b1cdf25b488fa1bf4c0a", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/096124016860355650/history/1684543373520", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1684543373520, + "id": 1684543373520, + "date_created": { + "type": 6, + "value": 1684543373520 + }, + "date_last_updated": { + "type": 6, + "value": 1684543373520 + }, + "date_of_expiration": { + "type": 6, + "value": 1687135373520 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "cf7dd5a6bef44021992f475a", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/096124016860355650/history/1684543373520/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0961.2401.6860.3556-50", + "revision": "ba7af3239d0b4318a298742d", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/096124016860355650/history", + "content": { + "type": 1, + "value": {}, + "revision": "e60c736e07e44fa3a20ad2e4", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/096124016860355650/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "646219df813847318eeeaf15", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/096124016860355650/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "39f6b0c9bc014a4a8a489844", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/096124016860355650", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684187165100, + "dateValidity": 1684187165100, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "24269cef259d448e9b058cd0", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/096261179492313170/balances", + "content": { + "type": 1, + "value": {}, + "revision": "6a846bd5975f47eab1945b52", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/096261179492313170/history", + "content": { + "type": 1, + "value": {}, + "revision": "f3f336023dfd414b83f180db", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/096261179492313170", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696117965905, + "dateValidity": 1696117965942, + "currencyType": "USD" + }, + "revision": "592c57e44f9c48bda4561c26", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "10.00000000", + "symbol": "BRL", + "value": 1.92 + }, + "revision": "2057621dbde943da856e8375", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "480000.00000000", + "symbol": "IVIP", + "value": 62.92 + }, + "revision": "971ff41a667e4c50b80064b4", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/balances", + "content": { + "type": 1, + "value": {}, + "revision": "2ed226ef751e44b8bcf0ca60", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680564390483/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "0d3a631a35eb4341804cfc5c", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680564390483", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 3000, + "total_amount": 3000, + "history_id": 1680564390483, + "id": 1680564390483, + "date_created": { + "type": 6, + "value": 1680564390483 + }, + "date_last_updated": { + "type": 6, + "value": 1680570580299 + }, + "date_of_expiration": { + "type": 6, + "value": 1683156390483 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1680570580299 + }, + "money_release_date": { + "type": 6, + "value": 1680570580299 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "fc6911f273bb4930af8fdc35", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680564390483/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0983.0244.9130.1420-80", + "revision": "80b98ca588cb4e4791b1cb52", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680570737667/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "a73d2e14fe764deb89826f1d", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680570737667", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "history_id": 1680570737667, + "id": 1680570737667, + "date_created": { + "type": 6, + "value": 1680570737667 + }, + "date_last_updated": { + "type": 6, + "value": 1680570777315 + }, + "date_of_expiration": { + "type": 6, + "value": 1683162737667 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1680570777315 + }, + "money_release_date": { + "type": 6, + "value": 1680570777315 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "4e664e98a04043caaf66c638", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680570737667/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80", + "revision": "76406a5f4c5d429f93eb0d04", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, + "revision": "7a14274ed09844bf97e2339b", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806/details", + "content": { + "type": 1, + "value": {}, + "revision": "ccc0c1d40b874a7ea655946b", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "0ac8aed0fdc643c5adf84768", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 10000, + "total_amount": 12000, + "history_id": 1680571158806, + "id": 1680571158806, + "date_created": { + "type": 6, + "value": 1680571158806 + }, + "date_last_updated": { + "type": 6, + "value": 1680571158806 + }, + "date_of_expiration": { + "type": 6, + "value": 1683163158806 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "3cf3a87cc0af45afa7f6f64e", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", + "revision": "e7ab23f8365a430794794c36", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1683548182568/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 8, + "payment_method_reference_id": 1683548182568, + "acquirer_reference": "", + "verification_code": 1683548182568, + "net_received_amount": 0, + "total_paid_amount": 1200, + "overpaid_amount": 0, + "installment_amount": 1200, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "21104380cbcd4d548c11296d", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1683548182568", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 1200, + "total_amount": 1200, + "id": 1683548182568, + "contract_id": "1680571158806", + "date_created": { + "type": 6, + "value": 1683548182568 + }, + "date_last_updated": { + "type": 6, + "value": 1683548182568 + }, + "date_of_expiration": { + "type": 6, + "value": 1683548182568 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1683548182568 + }, + "revision": "7935fc3ecd5540df985bd1c4", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1683548182568/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 2 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", + "revision": "226c3cf1858d4aae92b6c43c", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367503606/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 9, + "payment_method_reference_id": 1684367503606, + "acquirer_reference": "", + "verification_code": 1684367503606, + "net_received_amount": 0, + "total_paid_amount": 1200, + "overpaid_amount": 0, + "installment_amount": 1200, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "e7d2353378734987811c05a9", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367503606", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 1200, + "total_amount": 1200, + "id": 1684367503606, + "contract_id": "1680571158806", + "date_created": { + "type": 6, + "value": 1684367503606 + }, + "date_last_updated": { + "type": 6, + "value": 1684367503606 + }, + "date_of_expiration": { + "type": 6, + "value": 1684367503606 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1684367503606 + }, + "revision": "61843ee26c7f4cd2b5ca82be", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367503606/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 1 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", + "revision": "26f0b64984234d8dbc063415", + "revision_nr": 1, + "created": 1702563036392, + "modified": 1702563036392 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, + "revision": "b123a8413abd4ddda2e1bc63", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554/details", + "content": { + "type": 1, + "value": {}, + "revision": "6292e208c17c4cfdb0d47132", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "9de10df6d4b5457680f2a823", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 2000, + "total_amount": 2320, + "history_id": 1684367721554, + "id": 1684367721554, + "date_created": { + "type": 6, + "value": 1684367721554 + }, + "date_last_updated": { + "type": 6, + "value": 1684367721554 + }, + "date_of_expiration": { + "type": 6, + "value": 1686959721554 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "a65efd92ed5744e3ba5fec7d", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", + "revision": "63a5d1946e8a47528cfb7697", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684415962143/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 7, + "payment_method_reference_id": 1684415962143, + "acquirer_reference": "", + "verification_code": 1684415962143, + "net_received_amount": 0, + "total_paid_amount": 290, + "overpaid_amount": 0, + "installment_amount": 290, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "5ac7f76358d2482d81b5789d", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684415962143", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 290, + "total_amount": 290, + "id": 1684415962143, + "contract_id": "1684367721554", + "date_created": { + "type": 6, + "value": 1684415962143 + }, + "date_last_updated": { + "type": 6, + "value": 1684415962143 + }, + "date_of_expiration": { + "type": 6, + "value": 1684415962143 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1684415962143 + }, + "revision": "44203de98c39475fa2906e25", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684415962143/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 1 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", + "revision": "85e8f0f5db8b4a139b2706de", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684544477879/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "6c624aae3d564cedaa4634a8", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684544477879", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1600, + "total_amount": 1600, + "history_id": 1684544477879, + "id": 1684544477879, + "date_created": { + "type": 6, + "value": 1684544477879 + }, + "date_last_updated": { + "type": 6, + "value": 1684545036886 + }, + "date_of_expiration": { + "type": 6, + "value": 1687136477879 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684545036886 + }, + "money_release_date": { + "type": 6, + "value": 1684545036886 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "9b1c9209a75e494f98c58b03", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684544477879/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 0983.0244.9130.1420-80", + "revision": "2b5f4832d3b844559727167c", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684624390329/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624390329, + "acquirer_reference": "", + "verification_code": 1684624390329, + "net_received_amount": 0, + "total_paid_amount": 15910, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "90fb8b75c2984f158a9f68da", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684624390329", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 77493341, + "total_amount": 77493341, + "id": 1684624390329, + "date_created": { + "type": 6, + "value": 1684624390329 + }, + "date_last_updated": { + "type": 6, + "value": 1684624390329 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624390329 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624390329, + "description": "Compra de 77.493.341,00 IVIP por 15.910,00 BRL" + }, + "revision": "0c25bef6e94446179c8e6755", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 5 + }, + "revision": "7c53ac86ef2547e189001caf", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049/details", + "content": { + "type": 1, + "value": {}, + "revision": "1c8bd700205c4c7d86087308", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "3a822c85eaac402888968946", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 250, + "total_amount": 255, + "history_id": 1684661775049, + "id": 1684661775049, + "date_created": { + "type": 6, + "value": 1684661775049 + }, + "date_last_updated": { + "type": 6, + "value": 1684661775049 + }, + "date_of_expiration": { + "type": 6, + "value": 1687253775049 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "f3887d28759144349d47d3a8", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 255,00", + "revision": "d8d6920881da40869fd36462", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661800868/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684661800868, + "acquirer_reference": "", + "verification_code": 1684661800868, + "net_received_amount": 0, + "total_paid_amount": 250, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "0f03cde339d34d2d83b4f7a6", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661800868", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1218292, + "total_amount": 1218292, + "id": 1684661800868, + "date_created": { + "type": 6, + "value": 1684661800868 + }, + "date_last_updated": { + "type": 6, + "value": 1684661800868 + }, + "date_of_expiration": { + "type": 6, + "value": 1684661800868 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684661800868, + "description": "Compra de 1.218.292,00 IVIP por 250,00 BRL" + }, + "revision": "fa18be0bc2004372ab29c3a6", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685452383443/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "1f7345363528439999c4bbae", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685452383443", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 255, + "total_amount": 255, + "history_id": 1685452383443, + "id": 1685452383443, + "date_created": { + "type": 6, + "value": 1685452383443 + }, + "date_last_updated": { + "type": 6, + "value": 1685485920714 + }, + "date_of_expiration": { + "type": 6, + "value": 1688044383443 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685485920714 + }, + "money_release_date": { + "type": 6, + "value": 1685485920714 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "b578304e7e2e4fd9b9974975", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685452383443/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 255,00 para a carteira iVip 0983.0244.9130.1420-80", + "revision": "b6153975a5d946b9be9544fe", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685486477860/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 0, + "payment_method_reference_id": 1685486477860, + "acquirer_reference": "", + "verification_code": 1685486477860, + "net_received_amount": 0, + "total_paid_amount": 255, + "overpaid_amount": 0, + "installment_amount": 255, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "31d226ce731e44c99c57e8e8", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685486477860", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 255, + "total_amount": 255, + "id": 1685486477860, + "contract_id": "1684661775049", + "date_created": { + "type": 6, + "value": 1685486477860 + }, + "date_last_updated": { + "type": 6, + "value": 1685486477860 + }, + "date_of_expiration": { + "type": 6, + "value": 1685486477860 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1685486477860 + }, + "revision": "eac70d43ef6449069d38800e", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685486477860/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 1 de 1 no valor de 255,00 BRL referente ao contrato 1684661775049", + "revision": "d55baaa7b275461dad898db5", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667437011/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685667437011, + "acquirer_reference": "", + "verification_code": 1685667437011, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "433e39d1a9244bf582f08f4e", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667437011", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1685667437011, + "date_created": { + "type": 6, + "value": 1685667437011 + }, + "date_last_updated": { + "type": 6, + "value": 1685667437011 + }, + "date_of_expiration": { + "type": 6, + "value": 1748825837011 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685667437011 + }, + "revision": "f97b45a579b044529403f7e8", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667437011/description", + "content": { + "type": 5, + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", + "revision": "1644c3036d3547f78bb6ca09", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667452001/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685667452001, + "acquirer_reference": "", + "verification_code": 1685667452001, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "a0c2227414b6490aa7d35241", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667452001", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1685667452001, + "date_created": { + "type": 6, + "value": 1685667452001 + }, + "date_last_updated": { + "type": 6, + "value": 1685667452001 + }, + "date_of_expiration": { + "type": 6, + "value": 1717289852001 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685667452001 + }, + "revision": "6da1c058491642c48725b9c0", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667452001/description", + "content": { + "type": 5, + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", + "revision": "381ffd01735b431aa58d81da", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667466065/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685667466065, + "acquirer_reference": "", + "verification_code": 1685667466065, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "3b23d357d3f244bd966eb779", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667466065", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1685667466065, + "date_created": { + "type": 6, + "value": 1685667466065 + }, + "date_last_updated": { + "type": 6, + "value": 1685667466065 + }, + "date_of_expiration": { + "type": 6, + "value": 1701478666065 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685667466065 + }, + "revision": "9a21616aedce4aafa40ebf32", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667466065/description", + "content": { + "type": 5, + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", + "revision": "f2b523e21f16409a80c3a39c", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667479611/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685667479611, + "acquirer_reference": "", + "verification_code": 1685667479611, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "f393629c263c47caa8c92a7a", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667479611", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1685667479611, + "date_created": { + "type": 6, + "value": 1685667479611 + }, + "date_last_updated": { + "type": 6, + "value": 1685667479611 + }, + "date_of_expiration": { + "type": 6, + "value": 1688259479611 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685667479611 + }, + "revision": "3108f5d57dce493da6ccc0ec", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667479611/description", + "content": { + "type": 5, + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", + "revision": "a447cf260a454d989f9bfdc3", + "revision_nr": 1, + "created": 1702563036393, + "modified": 1702563036393 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687307213896/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687307213896, + "acquirer_reference": "", + "verification_code": 1687307213896, + "net_received_amount": 0, + "total_paid_amount": 22711633, + "overpaid_amount": 0, + "installment_amount": 22711633, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "522c84fac36c4d2bbe1d705a", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687307213896", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 22711633, + "total_amount": 22711633, + "id": 1687307213896, + "date_created": { + "type": 6, + "value": 1687307213896 + }, + "date_last_updated": { + "type": 6, + "value": 1687307213896 + }, + "date_of_expiration": { + "type": 6, + "value": 1718929613896 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687307213896 + }, + "revision": "66a1da489a5646f3939a1954", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687307213896/description", + "content": { + "type": 5, + "value": "Investimento de 22.711.633,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024", + "revision": "3d826aecb1e441068c306e75", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687313762388/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687313762388, + "acquirer_reference": "", + "verification_code": 1687313762388, + "net_received_amount": 0, + "total_paid_amount": 24000000, + "overpaid_amount": 0, + "installment_amount": 24000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "ba62986356c6444b8ef75380", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687313762388", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 24000000, + "total_amount": 24000000, + "id": 1687313762388, + "date_created": { + "type": 6, + "value": 1687313762388 + }, + "date_last_updated": { + "type": 6, + "value": 1687313762388 + }, + "date_of_expiration": { + "type": 6, + "value": 1750472162388 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687313762388 + }, + "revision": "63e3e0ce459d4ce785fb3dd3", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687313762388/description", + "content": { + "type": 5, + "value": "Investimento de 24.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2025", + "revision": "7e55a462b4a444a8b2d5b79b", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688400402521/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688400402521, + "acquirer_reference": "", + "verification_code": 1688400402521, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "1d0b3781e0404bd7bf85baf8", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688400402521", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": 1688400402521, + "date_created": { + "type": 6, + "value": 1688400402521 + }, + "date_last_updated": { + "type": 6, + "value": 1688400402521 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400402521 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688400402521, + "wasDebited": true + }, + "revision": "157853fa8b7b4502b23494d6", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688400402521/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", + "revision": "65b9e315a22c4c2b8cb05524", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688403044242/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688403044242, + "acquirer_reference": "", + "verification_code": 1688403044242, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "8b7b1e6bb78e46e9bb607b1b", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688403044242", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1688403044242, + "date_created": { + "type": 6, + "value": 1688403044242 + }, + "date_last_updated": { + "type": 6, + "value": 1688403044242 + }, + "date_of_expiration": { + "type": 6, + "value": 1691081444242 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688403044242 + }, + "revision": "d073fbc38ae845ca90c29c74", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688403044242/description", + "content": { + "type": 5, + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", + "revision": "7df0e2b465b34dcc98b59b28", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689132091915/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "c467859add334695976137b1", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689132091915", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "history_id": 1689132091915, + "id": 1689132091915, + "date_created": { + "type": 6, + "value": 1689132091915 + }, + "date_last_updated": { + "type": 6, + "value": 1689210471960 + }, + "date_of_expiration": { + "type": 6, + "value": 1691724091915 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689210471960 + }, + "money_release_date": { + "type": 6, + "value": 1689210471960 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "72e4a945e6704ea886823b7a", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689132091915/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0983.0244.9130.1420-80", + "revision": "ef67ba3124874a479baad85e", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234387/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 3, + "installments_payable": 7, + "payment_method_reference_id": 1689211234387, + "acquirer_reference": "", + "verification_code": 1689211234387, + "net_received_amount": 0, + "total_paid_amount": 1200, + "overpaid_amount": 0, + "installment_amount": 1200, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "a684af26e5914e7298d274d8", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234387", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 1200, + "total_amount": 1200, + "id": 1689211234387, + "contract_id": "1680571158806", + "date_created": { + "type": 6, + "value": 1689211234387 + }, + "date_last_updated": { + "type": 6, + "value": 1689211234387 + }, + "date_of_expiration": { + "type": 6, + "value": 1689211234387 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1689211234387 + }, + "revision": "c29bee27235c4149a9710dee", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234387/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 3 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", + "revision": "7465a6541f484d52ac09e97d", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234773/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 6, + "payment_method_reference_id": 1689211234773, + "acquirer_reference": "", + "verification_code": 1689211234773, + "net_received_amount": 0, + "total_paid_amount": 290, + "overpaid_amount": 0, + "installment_amount": 290, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "b28fb42139b84a87bddb581a", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234773", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 290, + "total_amount": 290, + "id": 1689211234773, + "contract_id": "1684367721554", + "date_created": { + "type": 6, + "value": 1689211234773 + }, + "date_last_updated": { + "type": 6, + "value": 1689211234773 + }, + "date_of_expiration": { + "type": 6, + "value": 1689211234773 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1689211234773 + }, + "revision": "8276f3c3572c45459d098d5f", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234773/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 2 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", + "revision": "88e3f4c9b71649d698b6beff", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691081485992/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1691081485992, + "acquirer_reference": "", + "verification_code": 1691081485992, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "d278ba28286446e581fea9ed", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691081485992", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": 1691081485992, + "date_created": { + "type": 6, + "value": 1691081485992 + }, + "date_last_updated": { + "type": 6, + "value": 1691081485992 + }, + "date_of_expiration": { + "type": 6, + "value": 1691081485992 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1691081485992, + "wasDebited": true + }, + "revision": "bddfa519d21c4b6a97292b2b", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691081485992/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", + "revision": "19de94d284d14af9ac38e707", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691082200859/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691082200859, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "2254b2a749924a209e47187b", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691082200859/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1691082200859", + "revision": "5d12e21ce3cc4d518c435075", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691082200859", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1691082200859, + "history_id": 1691082200859, + "date_created": { + "type": 6, + "value": 1691082200859 + }, + "date_last_updated": { + "type": 6, + "value": 1691082200859 + }, + "date_of_expiration": { + "type": 6, + "value": 1693760600858 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "03c99c913dd945f6b5482911", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691082200859/description", + "content": { + "type": 5, + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", + "revision": "b5431bde2c614ce7aa7824e3", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694387537743 + } + }, + "revision": "9599b0cc66914b35be5bf8c9", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691795537743, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1490, + "installment_amount": 1490, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "4a0089f76c9545c083361443", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1691795537743", + "revision": "bf802d7832944b858a54e4f6", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1490, + "total_amount": 1490, + "id": 1691795537743, + "history_id": 1691795537743, + "date_created": { + "type": 6, + "value": 1691795537743 + }, + "date_last_updated": { + "type": 6, + "value": 1691805156867 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1691805156867 + }, + "money_release_date": { + "type": 6, + "value": 1691805156867 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "5991b273c13b440dbf6053bd", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743/description", + "content": { + "type": 5, + "value": "Deposito de um valor 1.490,00 para a carteira iVip 0983.0244.9130.1420-80", + "revision": "68d3b45507ee43cdb074d210", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838943906/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 4, + "installments_payable": 6, + "payment_method_reference_id": 1691838943906, + "acquirer_reference": "", + "verification_code": 1691838943906, + "net_received_amount": 0, + "total_paid_amount": 1200, + "overpaid_amount": 0, + "installment_amount": 1200, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "4374b0c6632a4183a9eb98c4", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838943906", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 1200, + "total_amount": 1200, + "id": 1691838943906, + "contract_id": "1680571158806", + "date_created": { + "type": 6, + "value": 1691838943906 + }, + "date_last_updated": { + "type": 6, + "value": 1691838943906 + }, + "date_of_expiration": { + "type": 6, + "value": 1691838943906 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1691838943906 + }, + "revision": "fc3c8dd533474ea48b9ff343", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838943906/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 4 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", + "revision": "8325e92473b84f529408ba54", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838944125/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 3, + "installments_payable": 5, + "payment_method_reference_id": 1691838944125, + "acquirer_reference": "", + "verification_code": 1691838944125, + "net_received_amount": 0, + "total_paid_amount": 290, + "overpaid_amount": 0, + "installment_amount": 290, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "89634b3ffb7b438d89040108", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838944125", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 290, + "total_amount": 290, + "id": 1691838944125, + "contract_id": "1684367721554", + "date_created": { + "type": 6, + "value": 1691838944125 + }, + "date_last_updated": { + "type": 6, + "value": 1691838944125 + }, + "date_of_expiration": { + "type": 6, + "value": 1691838944125 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1691838944125 + }, + "revision": "b849c3ae076b431285902471", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838944125/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 3 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", + "revision": "79f8498d54454b64824737bd", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693760654707/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693760654707, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "3e750dcebb60490ebe545d5e", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693760654707/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1693760654707", + "revision": "7407ebe945ef44d1a3be7722", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693760654707", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": "1693760654707", + "history_id": "1693760654707", + "date_created": { + "type": 6, + "value": 1693760654707 + }, + "date_last_updated": { + "type": 6, + "value": 1693760654707 + }, + "date_of_expiration": { + "type": 6, + "value": 1693760654707 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "a57293a794e34e9cba599d84", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693760654707/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "a3aaf40b2e314e189acdf1c3", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693869394011/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693869394011, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5000000, + "installment_amount": 5000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "462593a112de419694741d20", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693869394011/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1693869394011", + "revision": "82de1b9b411e4c9a969f0bc5", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693869394011", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 5000000, + "total_amount": 5000000, + "id": "1693869394011", + "history_id": "1693869394011", + "date_created": { + "type": 6, + "value": 1693869394011 + }, + "date_last_updated": { + "type": 6, + "value": 1696424640740 + }, + "date_of_expiration": { + "type": 6, + "value": 1696461394011 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_staked_amount", + "money_release_date": { + "type": 6, + "value": 1696424640740 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "5e5f1554b71f411f818e6bd7", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693869394011/description", + "content": { + "type": 5, + "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/10/2023 - Y12XDT27", + "revision": "c856fbae53bd4fbf853e8dae", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697073911857 + } + }, + "revision": "9bd98bd794f243afab261e3c", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694481911857, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1490, + "installment_amount": 1490, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "2ba93add533549719b2f0845", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694481911857", + "revision": "cf034afe07914404b3dba423", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1490, + "total_amount": 1490, + "id": "1694481911857", + "history_id": "1694481911857", + "date_created": { + "type": 6, + "value": 1694481911857 + }, + "date_last_updated": { + "type": 6, + "value": 1694626658166 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1694626658166 + }, + "money_release_date": { + "type": 6, + "value": 1694626658166 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "9aa6fa575ae244f1b15f1509", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857/description", + "content": { + "type": 5, + "value": "Deposito de um valor 1.490,00 BRL para a carteira iVip 0983.0244.9130.1420-80", + "revision": "2b6d308e18c54d6c87b3af8f", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290479/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694627290479, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1200, + "installment_amount": 1200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 5, + "installments_payable": 5 + }, + "revision": "d9425f3279364a99a16dac56", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290479/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694627290479", + "revision": "c9fb3640121a43dfb2adf493", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290479", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 1200, + "total_amount": 1200, + "id": "1694627290479", + "history_id": "1694627290479", + "date_created": { + "type": 6, + "value": 1694627290479 + }, + "date_last_updated": { + "type": 6, + "value": 1694627290479 + }, + "date_of_expiration": { + "type": 6, + "value": 1694627290479 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "5283627924ef4559bb18f62f", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290479/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 5 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", + "revision": "cb46d17a85bc4684b8f1512f", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290565/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694627290565, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 290, + "installment_amount": 290, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 4, + "installments_payable": 4 + }, + "revision": "efc6f09616f9429b946b5760", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290565/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694627290565", + "revision": "2db09134f4cb474fbd521425", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290565", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 290, + "total_amount": 290, + "id": "1694627290565", + "history_id": "1694627290565", + "date_created": { + "type": 6, + "value": 1694627290565 + }, + "date_last_updated": { + "type": 6, + "value": 1694627290565 + }, + "date_of_expiration": { + "type": 6, + "value": 1694627290565 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "772266eecab14992ad171e2c", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290565/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 4 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", + "revision": "f1553d13703d47be850d162b", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696555808953/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696555808953, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "1f10a258c45142faa2e000c8", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696555808953/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696555808953", + "revision": "24867956dca840179bba570f", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696555808953", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "098302449130142080", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": "1696555808953", + "history_id": "1696555808953", + "date_created": { + "type": 6, + "value": 1696555808953 + }, + "date_last_updated": { + "type": 6, + "value": 1696555808953 + }, + "date_of_expiration": { + "type": 6, + "value": 1699234208931 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "9d638a7704e744ce946a8982", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696555808953/description", + "content": { + "type": 5, + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27", + "revision": "43fcad4a37c0439eabe1de9c", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699411744331 + } + }, + "revision": "7a73fb255cb148a191dee619", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696819744331", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1490, + "installment_amount": 1490, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "1f95148a32dd4b178cbd271e", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696819744331", + "revision": "3a9700d629574c05a83d082f", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "098302449130142080", + "payment_method": "whatsapp", + "original_amount": 1490, + "total_amount": 1490, + "id": "1696819744331", + "history_id": "1696819744331", + "date_created": { + "type": 6, + "value": 1696819744331 + }, + "date_last_updated": { + "type": 6, + "value": 1696855141326 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1696855141326 + }, + "money_release_date": { + "type": 6, + "value": 1696855141326 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "6cd1dd19623e4342bc8e743f", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331/description", + "content": { + "type": 5, + "value": "Deposito de um valor 1.490,00 BRL para a carteira iVip 0983.0244.9130.1420-80", + "revision": "7def84701c6a4466ba9c9520", + "revision_nr": 1, + "created": 1702563036394, + "modified": 1702563036394 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861214347/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696861214347", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1200, + "installment_amount": 1200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 6, + "installments_payable": 4 + }, + "revision": "9b76568eb8c945c097a03dd9", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861214347/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696861214347", + "revision": "2dc67a13d4fa4976bb5a539e", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861214347", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "098302449130142080", + "payment_method": "credit", + "original_amount": 1200, + "total_amount": 1200, + "id": "1696861214347", + "history_id": "1696861214347", + "date_created": { + "type": 6, + "value": 1696861214347 + }, + "date_last_updated": { + "type": 6, + "value": 1696861214347 + }, + "date_of_expiration": { + "type": 6, + "value": 1696861214347 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "be769df4cf674556b204de14", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861214347/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 6 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", + "revision": "9d0ce59059c34f43a31c987c", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861218511/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696861218511", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 290, + "installment_amount": 290, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 5, + "installments_payable": 3 + }, + "revision": "0c2e67f6692246e3a5b348b4", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861218511/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696861218511", + "revision": "f7a4b58022f54ab5a2dc34ba", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861218511", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "098302449130142080", + "payment_method": "credit", + "original_amount": 290, + "total_amount": 290, + "id": "1696861218511", + "history_id": "1696861218511", + "date_created": { + "type": 6, + "value": 1696861218511 + }, + "date_last_updated": { + "type": 6, + "value": 1696861218511 + }, + "date_of_expiration": { + "type": 6, + "value": 1696861218511 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "0711b07ae15c41e2a0c68153", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861218511/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 5 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", + "revision": "51abac1425c04edd941c88d6", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history", + "content": { + "type": 1, + "value": {}, + "revision": "157d9b0e193f44bd92605f50", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, + "revision": "a9df60f1661e41f78eccf134", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806", + "content": { + "type": 1, + "value": { + "id": 1680571158806, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12000, + "installments": 10, + "installment_amount": 1200, + "date_created": { + "type": 6, + "value": 1680571158806 + }, + "history_id": 1680571158806, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "91e70352d8d84d96bdd32c94", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", + "revision": "c77d81819ed343848d4c8ef1", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806/costs", + "content": { + "type": 2, + "value": {}, + "revision": "33b159954a3f49858bddf302", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305", + "content": { + "type": 1, + "value": {}, + "revision": "745673ecfec6474092830834", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, + "revision": "49dc259c2542422ea789515e", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806", + "content": { + "type": 1, + "value": { + "id": 1680571158806, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12000, + "installments": 10, + "installment_amount": 1200, + "date_created": { + "type": 6, + "value": 1680571158806 + }, + "history_id": 1680571158806, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "d641749217384350b3770a72", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", + "revision": "2e265a4058304675bbf73728", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806/costs", + "content": { + "type": 2, + "value": {}, + "revision": "193c93a49ef74588bab54e08", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, + "revision": "bd3102c2127f4f1fb2e15d7a", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554", + "content": { + "type": 1, + "value": { + "id": 1684367721554, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2320, + "installments": 8, + "installment_amount": 290, + "date_created": { + "type": 6, + "value": 1684367721554 + }, + "history_id": 1684367721554, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "6abe4ed5204448779cf57d41", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", + "revision": "a342aa32b975439e9dd6bd79", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554/costs", + "content": { + "type": 2, + "value": {}, + "revision": "dc3e10e9860d4a61b790af53", + "revision_nr": 1, + "created": 1702563036395, + "modified": 1702563036395 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 5 + }, + "revision": "c983b40263eb4e70b365bcd3", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049", + "content": { + "type": 1, + "value": { + "id": 1684661775049, + "type": "emprestimo", + "original_amount": 250, + "total_amount": 255, + "installments": 1, + "installment_amount": 255, + "date_created": { + "type": 6, + "value": 1684661775049 + }, + "history_id": 1684661775049, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "123538be74e24d51b47456b1", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 255,00", + "revision": "bcc90e4bc7d14aad8e194d4d", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049/costs", + "content": { + "type": 2, + "value": {}, + "revision": "06b7baf409844c95b5ce21cb", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "baf6c2c7f7d54317b45424ff", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, + "revision": "e6d4666300b24b618c8730e3", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806", + "content": { + "type": 1, + "value": { + "id": 1680571158806, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12000, + "installments": 10, + "installment_amount": 1200, + "date_created": { + "type": 6, + "value": 1680571158806 + }, + "history_id": 1680571158806, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "72ce56e756004ff1a7dae14f", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", + "revision": "2dd4ee79c00240d38446468a", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806/costs", + "content": { + "type": 2, + "value": {}, + "revision": "61a2b11ad5c94e22ba817665", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, + "revision": "936786ac514647f59b7c33fb", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554", + "content": { + "type": 1, + "value": { + "id": 1684367721554, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2320, + "installments": 8, + "installment_amount": 290, + "date_created": { + "type": 6, + "value": 1684367721554 + }, + "history_id": 1684367721554, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "721dd4248e8744338a4acf12", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", + "revision": "9b25ab812beb4a939592a94d", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554/costs", + "content": { + "type": 2, + "value": {}, + "revision": "ad1e5a981bfe4889bad67659", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "6f91bc796d55410c8354c3a3", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, + "revision": "cd318f8ff88c49e689314cf7", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806", + "content": { + "type": 1, + "value": { + "id": 1680571158806, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12000, + "installments": 10, + "installment_amount": 1200, + "date_created": { + "type": 6, + "value": 1680571158806 + }, + "history_id": 1680571158806, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "0b2e528f79314a8cabe196f0", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", + "revision": "99bc3d800ab24773908b2990", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806/costs", + "content": { + "type": 2, + "value": {}, + "revision": "ce091d2f86f041448f2aae88", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, + "revision": "c0376094f88d4b4783e52bd7", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554", + "content": { + "type": 1, + "value": { + "id": 1684367721554, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2320, + "installments": 8, + "installment_amount": 290, + "date_created": { + "type": 6, + "value": 1684367721554 + }, + "history_id": 1684367721554, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "3c7603ad9f15408faab66de2", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", + "revision": "121d787d5d614c15a008e33b", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554/costs", + "content": { + "type": 2, + "value": {}, + "revision": "d1df02e8b590485ab10d27bb", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308", + "content": { + "type": 1, + "value": {}, + "revision": "f6d93874b902475d8a433994", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, + "revision": "11f11980eaa44b719dde87b5", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806", + "content": { + "type": 1, + "value": { + "id": 1680571158806, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12000, + "installments": 10, + "installment_amount": 1200, + "date_created": { + "type": 6, + "value": 1680571158806 + }, + "history_id": 1680571158806, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1694627290497 + } + }, + "revision": "eb4018175b4d4796ade75774", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", + "revision": "b495b63fddc849d9af016f71", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806/costs", + "content": { + "type": 2, + "value": {}, + "revision": "f6aef6c7879343299b3d5209", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, + "revision": "0c1d2449124046319cfb5397", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554", + "content": { + "type": 1, + "value": { + "id": 1684367721554, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2320, + "installments": 8, + "installment_amount": 290, + "date_created": { + "type": 6, + "value": 1684367721554 + }, + "history_id": 1684367721554, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1694627290583 + } + }, + "revision": "0610095b47a34ff998604884", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", + "revision": "8a6019384f9841f68e433d33", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554/costs", + "content": { + "type": 2, + "value": {}, + "revision": "6f28e1cc0d384e329bd3090d", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309", + "content": { + "type": 1, + "value": {}, + "revision": "2957dcf16f344f5a9241489f", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, + "revision": "3c79273e806247d992fb84b2", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806", + "content": { + "type": 1, + "value": { + "id": 1680571158806, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12000, + "installments": 10, + "installment_amount": 1200, + "date_created": { + "type": 6, + "value": 1680571158806 + }, + "history_id": 1680571158806, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1696861218119 + } + }, + "revision": "0d6491d139be41a59c70f2ae", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", + "revision": "865a860c9cb94ea190187337", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806/costs", + "content": { + "type": 2, + "value": {}, + "revision": "4606063acf23463983f0c58e", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, + "revision": "86ef658038a24f2e95380e97", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554", + "content": { + "type": 1, + "value": { + "id": 1684367721554, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2320, + "installments": 8, + "installment_amount": 290, + "date_created": { + "type": 6, + "value": 1684367721554 + }, + "history_id": 1684367721554, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1696861218540 + } + }, + "revision": "60be8e6af2d14547a3f2348f", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", + "revision": "b5f2f4f989444363bd035252", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554/costs", + "content": { + "type": 2, + "value": {}, + "revision": "99570a0822b14d9db17e9915", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310", + "content": { + "type": 1, + "value": {}, + "revision": "27c7ae6ce4c4496abef188e8", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, + "revision": "c1cd863224254ec3a271567a", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806", + "content": { + "type": 1, + "value": { + "id": 1680571158806, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12000, + "installments": 10, + "installment_amount": 1200, + "date_created": { + "type": 6, + "value": 1680571158806 + }, + "history_id": 1680571158806, + "currency_id": "BRL" + }, + "revision": "5ce41c75d29a446e9bc72911", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", + "revision": "7b098f6fadbd4ee5aabcf33d", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806/costs", + "content": { + "type": 2, + "value": {}, + "revision": "128ab75137c7480982d9670a", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, + "revision": "f24039f8dfe443bfb72abb08", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554", + "content": { + "type": 1, + "value": { + "id": 1684367721554, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2320, + "installments": 8, + "installment_amount": 290, + "date_created": { + "type": 6, + "value": 1684367721554 + }, + "history_id": 1684367721554, + "currency_id": "BRL" + }, + "revision": "75a5a18e67504a17adea1d9f", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", + "revision": "459f38a859bf453884376e5e", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554/costs", + "content": { + "type": 2, + "value": {}, + "revision": "311d13102a8b44bfbf6e760d", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311", + "content": { + "type": 1, + "value": {}, + "revision": "d69da03575934fc683d518d2", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, + "revision": "39c6f7f2323b44328fefa57a", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806", + "content": { + "type": 1, + "value": { + "id": 1680571158806, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12000, + "installments": 10, + "installment_amount": 1200, + "date_created": { + "type": 6, + "value": 1680571158806 + }, + "history_id": 1680571158806, + "currency_id": "BRL" + }, + "revision": "d998da0a5ca145f298f57b2d", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", + "revision": "bb79c6ecce6243418f234b52", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806/costs", + "content": { + "type": 2, + "value": {}, + "revision": "612bc0ba8fb7472f8ef40064", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, + "revision": "98693156d4914193826d71dd", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554", + "content": { + "type": 1, + "value": { + "id": 1684367721554, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2320, + "installments": 8, + "installment_amount": 290, + "date_created": { + "type": 6, + "value": 1684367721554 + }, + "history_id": 1684367721554, + "currency_id": "BRL" + }, + "revision": "c90019dd005146e09a36a507", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", + "revision": "97ce72dc71914aa78aebe23d", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554/costs", + "content": { + "type": 2, + "value": {}, + "revision": "8c0c0f29db3744caba2ac36a", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312", + "content": { + "type": 1, + "value": {}, + "revision": "4a40d09451f64f88afcdb5a6", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, + "revision": "f3516d25d6964c49944effa2", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806", + "content": { + "type": 1, + "value": { + "id": 1680571158806, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12000, + "installments": 10, + "installment_amount": 1200, + "date_created": { + "type": 6, + "value": 1680571158806 + }, + "history_id": 1680571158806, + "currency_id": "BRL" + }, + "revision": "fb11d43878864c2ea07cdcdf", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", + "revision": "3f5481a29cea4ebb93f59a2d", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806/costs", + "content": { + "type": 2, + "value": {}, + "revision": "789da947eae6493c96bae089", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, + "revision": "c4dfb28230d540a983621d02", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554", + "content": { + "type": 1, + "value": { + "id": 1684367721554, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2320, + "installments": 8, + "installment_amount": 290, + "date_created": { + "type": 6, + "value": 1684367721554 + }, + "history_id": 1684367721554, + "currency_id": "BRL" + }, + "revision": "8f451c8f00db440386b6ab64", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", + "revision": "40dfbcdf826e4694942fdff4", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554/costs", + "content": { + "type": 2, + "value": {}, + "revision": "56a582fef79b4219b4e7e505", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401", + "content": { + "type": 1, + "value": {}, + "revision": "20cfe5cefad04d72b57b0d6a", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, + "revision": "32c3a8cf0a074cb1b5f2c196", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806", + "content": { + "type": 1, + "value": { + "id": 1680571158806, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12000, + "installments": 10, + "installment_amount": 1200, + "date_created": { + "type": 6, + "value": 1680571158806 + }, + "history_id": 1680571158806, + "currency_id": "BRL" + }, + "revision": "c9b0666b8e2d4515adc4ea51", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", + "revision": "408bb7efb13f446db025bcdb", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806/costs", + "content": { + "type": 2, + "value": {}, + "revision": "fc5a88d31e174112b1878d57", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402", + "content": { + "type": 1, + "value": {}, + "revision": "c4455171861b44498f3c34d1", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "803704a0fe0b419eb5f9b6ae", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 10000, + "limitUsed": 7250, + "analysisRequested": { + "type": 6, + "value": 1680570808027 + }, + "lastReview": { + "type": 6, + "value": 1680978393740 + } + }, + "revision": "8076b805041e4699ac786ec5", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080", + "content": { + "type": 1, + "value": { + "dataModificacao": 1680465637248, + "dateValidity": 1680465637248, + "totalValue": 7716.736, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } + }, + "revision": "ae74e5f6f7804142b606545b", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/099867702110120200/balances", + "content": { + "type": 1, + "value": {}, + "revision": "c2f5b1fe258b4370b721bf8a", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/099867702110120200/history", + "content": { + "type": 1, + "value": {}, + "revision": "5ea8f38154e840ccbb2e15e5", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/099867702110120200/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "7b4777c22b9149fc8199040d", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/099867702110120200/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "24d4159033b74ee68d5aef27", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/099867702110120200", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684118396230, + "dateValidity": 1684118396230, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "07e540080a354021aa2016fc", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/100571192646522480/balances", + "content": { + "type": 1, + "value": {}, + "revision": "77c994137e7c45d99a71764e", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/100571192646522480/history", + "content": { + "type": 1, + "value": {}, + "revision": "890a12219d494967ad91304a", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/100571192646522480", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677468345456, + "dateValidity": 1677468345456, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "825628554c5e444b84a9c012", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101099073948007100/balances", + "content": { + "type": 1, + "value": {}, + "revision": "7d62408981994763b0cf70fb", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101099073948007100/history", + "content": { + "type": 1, + "value": {}, + "revision": "84954773488e4a69a8d5c091", + "revision_nr": 1, + "created": 1702563036396, + "modified": 1702563036396 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101099073948007100/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "fe92422b9561457baff517cc", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101099073948007100/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "69744e1ca18e499b8971ecc5", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101099073948007100", + "content": { + "type": 1, + "value": { + "dataModificacao": 1685622109779, + "dateValidity": 1685622109779, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "2f5a76b349f341749c3c1e57", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/balances", + "content": { + "type": 1, + "value": {}, + "revision": "28306e830b0b45378735cd1d", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683387433855/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "24681c45165340418df287d2", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683387433855", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1700, + "total_amount": 1700, + "history_id": 1683387433855, + "id": 1683387433855, + "date_created": { + "type": 6, + "value": 1683387433855 + }, + "date_last_updated": { + "type": 6, + "value": 1683393632539 + }, + "date_of_expiration": { + "type": 6, + "value": 1685979433855 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683393632539 + }, + "money_release_date": { + "type": 6, + "value": 1683393632539 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "6a3d322a629042e0b0ba9f34", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683387433855/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.700,00 para a carteira iVip 1017.8820.3938.8364-80", + "revision": "875c010f7c4848b38510d8d6", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683729448058/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "8749399937314be3aa6476ae", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683729448058", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1683729448058, + "id": 1683729448058, + "date_created": { + "type": 6, + "value": 1683729448058 + }, + "date_last_updated": { + "type": 6, + "value": 1683730132161 + }, + "date_of_expiration": { + "type": 6, + "value": 1686321448058 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683730132161 + }, + "money_release_date": { + "type": 6, + "value": 1683730132161 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "f6b6681f3b694df4a31a6d81", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683729448058/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1017.8820.3938.8364-80", + "revision": "f66c4cae0fbf4cf6a935f7b5", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1684018976722/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684018976722, + "acquirer_reference": "", + "verification_code": 1684018976722, + "net_received_amount": 0, + "total_paid_amount": 2700, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "0e28b124ceb8437a84abccf3", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1684018976722", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 14591858, + "total_amount": 14591858, + "id": 1684018976722, + "date_created": { + "type": 6, + "value": 1684018976722 + }, + "date_last_updated": { + "type": 6, + "value": 1684018976722 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018976722 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684018976722, + "description": "Compra de 14.591.858,00 IVIP por 2.700,00 BRL" + }, + "revision": "8f7863a2f15641bba3256aba", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686488141706/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "5c12ef0b575942789ed24b84", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686488141706", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 14591858, + "total_amount": 14591858, + "history_id": 1686488141706, + "id": 1686488141706, + "date_created": { + "type": 6, + "value": 1686488141706 + }, + "date_last_updated": { + "type": 6, + "value": 1686488141706 + }, + "date_of_expiration": { + "type": 6, + "value": 1686488141706 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "1759eb428f33467b91ac69d9", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686488141706/description", + "content": { + "type": 5, + "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", + "revision": "8caf1bbfed96469086485870", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686581079256/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "c30a7a197b7a404c8cc10efc", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686581079256", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 14591858, + "total_amount": 14591858, + "history_id": 1686581079256, + "id": 1686581079256, + "date_created": { + "type": 6, + "value": 1686581079256 + }, + "date_last_updated": { + "type": 6, + "value": 1686581079256 + }, + "date_of_expiration": { + "type": 6, + "value": 1686581079256 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "49021a6383c043cdad3738c5", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686581079256/description", + "content": { + "type": 5, + "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", + "revision": "a250b30621be4c169ad085f1", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686647052098/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "baf17a5a085e4a8fa1365182", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686647052098", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 14591858, + "total_amount": 14591858, + "history_id": 1686647052098, + "id": 1686647052098, + "date_created": { + "type": 6, + "value": 1686647052098 + }, + "date_last_updated": { + "type": 6, + "value": 1686647052098 + }, + "date_of_expiration": { + "type": 6, + "value": 1686647052098 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "599f103afc7c4f858ae215fe", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686647052098/description", + "content": { + "type": 5, + "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", + "revision": "3c86bedac83b4dc1a929e100", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686750536224/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "41dc9f3b192b4f82b2bd4954", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686750536224", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 14591858, + "total_amount": 14591858, + "history_id": 1686750536224, + "id": 1686750536224, + "date_created": { + "type": 6, + "value": 1686750536224 + }, + "date_last_updated": { + "type": 6, + "value": 1686865334419 + }, + "date_of_expiration": { + "type": 6, + "value": 1686750536224 + }, + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1686865334419 + }, + "money_release_date": { + "type": 6, + "value": 1686865334419 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "c9151cc340d94a4694eeed82", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686750536224/description", + "content": { + "type": 5, + "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", + "revision": "976239e599254c6e8d7c2a1a", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686865268655/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "fa4368891a9e4bef9fc452d1", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686865268655", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 14591858, + "total_amount": 14591858, + "history_id": 1686865268655, + "id": 1686865268655, + "date_created": { + "type": 6, + "value": 1686865268655 + }, + "date_last_updated": { + "type": 6, + "value": 1686865268655 + }, + "date_of_expiration": { + "type": 6, + "value": 1686865268655 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "a0caaa611ea444be88ed1233", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686865268655/description", + "content": { + "type": 5, + "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", + "revision": "c7beadb96bee41c3a2e62fb8", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history", + "content": { + "type": 1, + "value": {}, + "revision": "b40d0d34b1064ff4bdd3e93e", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "7775bd15b00e4e17a2c04b86", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "analysisRequested": { + "type": 6, + "value": 1694712457445 + } + }, + "revision": "c6c399cba32849d98e9db2a6", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480", + "content": { + "type": 1, + "value": { + "dataModificacao": 1683247685722, + "dateValidity": 1683247685722, + "totalValue": 0, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1695610800000 + } + }, + "revision": "f48ef389957d4e628ae5f673", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101924508374940270/balances", + "content": { + "type": 1, + "value": {}, + "revision": "bedf7cb1d00f43bdbe79c0a0", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101924508374940270/history", + "content": { + "type": 1, + "value": {}, + "revision": "534715d8db5d4fd28bfdde9b", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101924508374940270", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679287665883, + "dateValidity": 1679287665883, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "0b72b24ab424420fbbfa4188", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/102162769887914180/balances", + "content": { + "type": 1, + "value": {}, + "revision": "e02401af84964f889c291a61", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/102162769887914180/history", + "content": { + "type": 1, + "value": {}, + "revision": "cb53da6ff1524213b39dc930", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/102162769887914180", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689113009824, + "dateValidity": 1689113009824, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "8e8e7618b181445fa1ca7f77", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/102585657323784220/balances", + "content": { + "type": 1, + "value": {}, + "revision": "f2f936af40284e449beeb33f", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/102585657323784220/history", + "content": { + "type": 1, + "value": {}, + "revision": "c710626b587f4051b1d24d50", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/102585657323784220", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679436379945, + "dateValidity": 1679436379945, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "f73643ffdede4b688ead93d2", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/102986238363877330/balances", + "content": { + "type": 1, + "value": {}, + "revision": "c381e36e70c5407e953df829", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/102986238363877330/history", + "content": { + "type": 1, + "value": {}, + "revision": "f6ed2ebde6b0410f98879b4e", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/102986238363877330", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696096915384, + "dateValidity": 1696096916164, + "currencyType": "USD" + }, + "revision": "c880f8c5c68849e0ad3e086c", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/103931688787322940/balances", + "content": { + "type": 1, + "value": {}, + "revision": "d90b834bbeae45e8938fcf82", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/103931688787322940/history", + "content": { + "type": 1, + "value": {}, + "revision": "a249f2bc23554997b229920c", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/103931688787322940", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679165777705, + "dateValidity": 1679165777705, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "615d693f0a83469ab7af515f", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/balances/BRL", + "content": { + "type": 1, + "value": { + "symbol": "BRL", + "available": "0.00000000", + "value": 0 + }, + "revision": "7b11d114ad9e41a3ba0b0aba", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/balances/IVIP", + "content": { + "type": 1, + "value": { + "symbol": "IVIP", + "available": "0.00000000", + "value": 0 + }, + "revision": "96e9161ea8f64ab2b1af2c66", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/balances", + "content": { + "type": 1, + "value": {}, + "revision": "93540398772742f3847fb57d", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684170542717/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "26c93b8afe054f6d9d59e769", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684170542717", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1684170542717, + "id": 1684170542717, + "date_created": { + "type": 6, + "value": 1684170542717 + }, + "date_last_updated": { + "type": 6, + "value": 1684186221404 + }, + "date_of_expiration": { + "type": 6, + "value": 1686762542717 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684186221404 + }, + "money_release_date": { + "type": 6, + "value": 1684186221404 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "2156d6f3426c4a75ae08af91", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684170542717/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 1069.0089.6878.2698-70", + "revision": "26bf683e05ca4ab3a4f8368e", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684624294208/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624294208, + "acquirer_reference": "", + "verification_code": 1684624294208, + "net_received_amount": 0, + "total_paid_amount": 50, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "9af51bb81378402abc283f95", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684624294208", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 243536, + "total_amount": 243536, + "id": 1684624294208, + "date_created": { + "type": 6, + "value": 1684624294208 + }, + "date_last_updated": { + "type": 6, + "value": 1684624294208 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624294208 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624294208, + "description": "Compra de 243.536,00 IVIP por 50,00 BRL" + }, + "revision": "efd98e94d63c475c90dd5cd9", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1688846842830/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "000497b4e64f400cb15d2f7f", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1688846842830", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 243536, + "total_amount": 243536, + "history_id": 1688846842830, + "id": 1688846842830, + "date_created": { + "type": 6, + "value": 1688846842830 + }, + "date_last_updated": { + "type": 6, + "value": 1688846892432 + }, + "date_of_expiration": { + "type": 6, + "value": 1688846842830 + }, + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1688846892432 + }, + "money_release_date": { + "type": 6, + "value": 1688846892432 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "ee3c2fed3ede40519ee921a7", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1688846842830/description", + "content": { + "type": 5, + "value": "Saque de 243.536,00 IVIP para a carteira 0x58120E330A738FD12B195740b06B7792A5C7DD7D", + "revision": "a39a94959d0f4aa9bb2b3600", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history", + "content": { + "type": 1, + "value": {}, + "revision": "405b622b2700499f8278b5ac", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "3b5f446475d44e299cb31383", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "680e4a421eec43cbb99428b9", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684170470840, + "dateValidity": 1684170470840, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "e02e4f8179044d4da094773d", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/108390022183703310/balances", + "content": { + "type": 1, + "value": {}, + "revision": "7afb7c9eaa5c43e4833e9487", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/108390022183703310/history", + "content": { + "type": 1, + "value": {}, + "revision": "2e7352dd94b04d58b1577018", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/108390022183703310", + "content": { + "type": 1, + "value": { + "dataModificacao": 1680695438579, + "dateValidity": 1680695438579, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "e50214d95e9744b49a95f0fb", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/108783781111851280/balances", + "content": { + "type": 1, + "value": {}, + "revision": "e37c80004e144255a1cb429f", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/108783781111851280/history", + "content": { + "type": 1, + "value": {}, + "revision": "0f420b3760564bdea227ef6d", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/108783781111851280", + "content": { + "type": 1, + "value": { + "dataModificacao": 1681661884795, + "dateValidity": 1681661884795, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "67d226ab1aad4fa2a933d09c", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1684095990042/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "ec4ab89aacbb4019aee3c10d", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1684095990042", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "history_id": 1684095990042, + "id": 1684095990042, + "date_created": { + "type": 6, + "value": 1684095990042 + }, + "date_last_updated": { + "type": 6, + "value": 1684120166798 + }, + "date_of_expiration": { + "type": 6, + "value": 1686687990042 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684120166798 + }, + "money_release_date": { + "type": 6, + "value": 1684120166798 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "ce3cfc38b89544bd8eb37612", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1684095990042/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1100.9860.6095.8997-30", + "revision": "6c67804d2d1843758493c183", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1686325443110/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686325443110, + "acquirer_reference": "", + "verification_code": 1686325443110, + "net_received_amount": 0, + "total_paid_amount": 500, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "b0e9def2eb2849caa1a54c48", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1686325443110", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1792114, + "total_amount": 1792114, + "id": 1686325443110, + "date_created": { + "type": 6, + "value": 1686325443110 + }, + "date_last_updated": { + "type": 6, + "value": 1686325443110 + }, + "date_of_expiration": { + "type": 6, + "value": 1686325443110 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686325443110, + "description": "Compra de 1.792.114,00 IVIP por 500,00 BRL" + }, + "revision": "188f9198ca28495992a8e608", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1690019958173/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690019958173, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1792114, + "installment_amount": 1792114, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "318782abbe6b4d7fb7cc82eb", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1690019958173/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/110098606095899730/history/1690019958173", + "revision": "a347c06dd4594fdb94a90a0f", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1690019958173", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1792114, + "total_amount": 1792114, + "id": 1690019958173, + "history_id": 1690019958173, + "date_created": { + "type": 6, + "value": 1690019958173 + }, + "date_last_updated": { + "type": 6, + "value": 1690019958173 + }, + "date_of_expiration": { + "type": 6, + "value": 1690019958173 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment" + }, + "revision": "1e105956eb6c4fdd90800c7a", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1690019958173/description", + "content": { + "type": 5, + "value": "Saque de 1.792.114,00 IVIP para a carteira 0x007E69086fF7981e3fA99368fACD516952625148", + "revision": "9e06c2c7a94a4b1a8a284678", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 53763.42 + }, + "revision": "177576a580d5476b9f55bace", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694046051457, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1792114, + "installment_amount": 1792114, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "256404a53c5c4fd6b8f685c8", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/110098606095899730/history/1694046051457", + "revision": "bb3ab5361bb44e7db9443cae", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "ceb96445bcc94448af1e9f98", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1792114, + "total_amount": 1738350.58, + "id": "1694046051457", + "history_id": "1694046051457", + "date_created": { + "type": 6, + "value": 1694046051457 + }, + "date_last_updated": { + "type": 6, + "value": 1694470685227 + }, + "date_of_expiration": { + "type": 6, + "value": 1694046051457 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": { + "type": 6, + "value": 1694470685227 + }, + "money_release_date": { + "type": 6, + "value": 1694470685227 + }, + "money_release_status": "drawee", + "wasDebited": true + }, + "revision": "56bdb37b7f5f41c0b52ae78c", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/description", + "content": { + "type": 5, + "value": "Saque de 1.738.350,58 IVIP para a carteira 0x007E69086fF7981e3fA99368fACD516952625148", + "revision": "8ef42c3ac86142ecbb7b800e", + "revision_nr": 1, + "created": 1702563036397, + "modified": 1702563036397 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history", + "content": { + "type": 1, + "value": {}, + "revision": "770aec06dbd243f6b9743028", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "58d67a20eeab49e2863f63a0", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "67c1a19aa6fc4c6a93ecc3b4", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, + "revision": "20b85b96e4104023a9dfc816", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "1792114.00000000", + "symbol": "IVIP", + "value": 199.51 + }, + "revision": "58e350c3883342c9b2261c71", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/balances", + "content": { + "type": 1, + "value": {}, + "revision": "d8b8b39d1d7a4d02a4a1c411", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684095886828, + "dateValidity": 1684095886828, + "totalValue": 82.74, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1694401200000 + } + }, + "revision": "b742366e3dd34f3791885d34", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110121616136666500/balances", + "content": { + "type": 1, + "value": {}, + "revision": "7a2e0f00cb4d405abe3625de", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110121616136666500/history/1684539878275/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "95baf5cc53e74e0b8a13efc5", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110121616136666500/history/1684539878275", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1684539878275, + "id": 1684539878275, + "date_created": { + "type": 6, + "value": 1684539878275 + }, + "date_last_updated": { + "type": 6, + "value": 1684539878275 + }, + "date_of_expiration": { + "type": 6, + "value": 1687131878275 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "9bc632fa2290425d820072a3", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110121616136666500/history/1684539878275/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1101.2161.6136.6665-00", + "revision": "872b36e919b449b1a372d31e", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110121616136666500/history", + "content": { + "type": 1, + "value": {}, + "revision": "8075d5a9cd4540079b1366e6", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110121616136666500/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "3949fe5f6f144168bbcbdf8b", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110121616136666500/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "a5aa9b170e0a42ed870ae6f8", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110121616136666500", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684536217510, + "dateValidity": 1684536217510, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "2e3b1512b9254d64b6c0ce82", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110261910786918940/balances", + "content": { + "type": 1, + "value": {}, + "revision": "c513800541d04a2b84353a5e", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110261910786918940/history", + "content": { + "type": 1, + "value": {}, + "revision": "5ea5d7da00ae486a955d5f2f", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110261910786918940", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679301294113, + "dateValidity": 1679301294113, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "63f30514010f40449130ac33", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/balances/BRL", + "content": { + "type": 1, + "value": { + "symbol": "BRL", + "value": 0.132, + "available": "0.66666666" + }, + "revision": "aebe122f389c4e5b99d4c674", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/balances/IVIP", + "content": { + "type": 1, + "value": { + "symbol": "IVIP", + "value": 0, + "available": "0.00000000" + }, + "revision": "3c68213736784c90bc3a1398", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/balances", + "content": { + "type": 1, + "value": {}, + "revision": "535b5d573054414e956f3687", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1678154662168/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678154662168, + "acquirer_reference": "", + "verification_code": 1678154662168, + "net_received_amount": 0, + "total_paid_amount": 223, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "1d5d89e9b4e24ee79e296ab0", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1678154662168", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1594392, + "total_amount": 1594392, + "id": 1678154662168, + "date_created": { + "type": 6, + "value": 1678154662168 + }, + "date_last_updated": { + "type": 6, + "value": 1678154662168 + }, + "date_of_expiration": { + "type": 6, + "value": 1678154662168 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678154662168, + "description": "Compra de 1594392 IVIP por 223 BRL" + }, + "revision": "a6f6f9a8be1d48aa823abf3f", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1677860043639/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "3e145034bdb4432dba97972e", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1677860043639", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 223, + "total_amount": 223, + "history_id": 1677860043639, + "id": 1677860043639, + "date_created": { + "type": 6, + "value": 1677860043639 + }, + "date_last_updated": { + "type": 6, + "value": 1677860915639 + }, + "date_of_expiration": { + "type": 6, + "value": 1680452043639 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677860915639 + }, + "money_release_date": { + "type": 6, + "value": 1677860915639 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "5e8fb7fa57ab4bbf9dcce5b7", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1677860043639/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 223,00 para a carteira iVip 1105.2091.7322.8272-00", + "revision": "08305411b6fb4ff18533f609", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547247302/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1680547247302, + "acquirer_reference": "", + "verification_code": 1680547247302, + "net_received_amount": 0, + "total_paid_amount": 500, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "491212c3e8c7413f910be77c", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547247302", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 2760078, + "total_amount": 2760078, + "id": 1680547247302, + "date_created": { + "type": 6, + "value": 1680547247302 + }, + "date_last_updated": { + "type": 6, + "value": 1680547247302 + }, + "date_of_expiration": { + "type": 6, + "value": 1680547247302 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1680547247302, + "description": "Compra de 2.760.078,00 IVIP por 500,00 BRL" + }, + "revision": "b487cb4bea8a4c31b265c4a0", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007108709/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "2b640baf92b7413d90090d8b", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007108709", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 52, + "total_amount": 52, + "history_id": 1684007108709, + "id": 1684007108709, + "date_created": { + "type": 6, + "value": 1684007108709 + }, + "date_last_updated": { + "type": 6, + "value": 1684007729125 + }, + "date_of_expiration": { + "type": 6, + "value": 1686599108709 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684007729125 + }, + "money_release_date": { + "type": 6, + "value": 1684007729125 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "7df6dbcf92d84ab583f53973", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007108709/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 52,00 para a carteira iVip 1105.2091.7322.8272-00", + "revision": "6053b2c322dc481b97d08efb", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007784160/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 10, + "payment_method_reference_id": 1684007784160, + "acquirer_reference": "", + "verification_code": 1684007784160, + "net_received_amount": 0, + "total_paid_amount": 51.667, + "overpaid_amount": 0, + "installment_amount": 51.667, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "1a4086f92f00453e938d935b", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007784160", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 51.667, + "total_amount": 51.667, + "id": 1684007784160, + "contract_id": "1680547112243", + "date_created": { + "type": 6, + "value": 1684007784160 + }, + "date_last_updated": { + "type": 6, + "value": 1684007784160 + }, + "date_of_expiration": { + "type": 6, + "value": 1684007784160 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1684007784160 + }, + "revision": "c4408b865ff845808b38b025", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007784160/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 2 de 12 no valor de 51,67 BRL referente ao contrato 1680547112243", + "revision": "e0a5ce3b19204915a50f6268", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685634389886/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "3af48c826df54ebea6a04517", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685634389886", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 52, + "total_amount": 52, + "history_id": 1685634389886, + "id": 1685634389886, + "date_created": { + "type": 6, + "value": 1685634389886 + }, + "date_last_updated": { + "type": 6, + "value": 1685645771760 + }, + "date_of_expiration": { + "type": 6, + "value": 1688226389886 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685645771760 + }, + "money_release_date": { + "type": 6, + "value": 1685645771760 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "fc37b5d7ae3849d7b23e4f6f", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685634389886/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 52,00 para a carteira iVip 1105.2091.7322.8272-00", + "revision": "49eda0876439441fa62aeb1d", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685657159164/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 11, + "payment_method_reference_id": 1685657159164, + "acquirer_reference": "", + "verification_code": 1685657159164, + "net_received_amount": 0, + "total_paid_amount": 51.667, + "overpaid_amount": 0, + "installment_amount": 51.667, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "54560212a47f4f47a0ae7cb6", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685657159164", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 51.667, + "total_amount": 51.667, + "id": 1685657159164, + "contract_id": "1680547112243", + "date_created": { + "type": 6, + "value": 1685657159164 + }, + "date_last_updated": { + "type": 6, + "value": 1685657159164 + }, + "date_of_expiration": { + "type": 6, + "value": 1685657159164 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1685657159164 + }, + "revision": "ebefce3fd2d84c2a8cd2e48a", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685657159164/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 1 de 12 no valor de 51,67 BRL referente ao contrato 1680547112243", + "revision": "8928a50b48bc4119b9348311", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686939269544/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 11, + "payment_method_reference_id": 1686939269544, + "acquirer_reference": "", + "verification_code": 1686939269544, + "net_received_amount": 0, + "total_paid_amount": 2300063, + "overpaid_amount": 0, + "installment_amount": 2300063, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "f5822b39e3404d5fb57bba45", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686939269544", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 2300063, + "total_amount": 2300063, + "id": 1686939269544, + "contract_id": "1680547112243", + "date_created": { + "type": 6, + "value": 1686939269544 + }, + "date_last_updated": { + "type": 6, + "value": 1686939269544 + }, + "date_of_expiration": { + "type": 6, + "value": 1686939269544 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "history_id": 1686939269544 + }, + "revision": "7583faff401d428289315b94", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686939269544/description", + "content": { + "type": 5, + "value": "Pagamento de faturas no valor de 2.300.063,00 IVIP referente ao contrato 1680547112243", + "revision": "8b199132780240f2940aebc8", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "620e935f92db45a7bea74724", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243/details", + "content": { + "type": 1, + "value": {}, + "revision": "6a57c6d441f94219882f06c2", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "7498ae1a4f0e4c40a999e4ea", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "history_id": 1680547112243, + "id": 1680547112243, + "date_created": { + "type": 6, + "value": 1680547112243 + }, + "date_last_updated": { + "type": 6, + "value": 1680547112243 + }, + "date_of_expiration": { + "type": 6, + "value": 1683139112243 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "d3daca00c1f64dc5890ac9b9", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "1eba22e60bb14aa8a28dc9e0", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686940226040/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "a129e096eb6b4e52ba1cf3bd", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686940226040", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 2054407, + "total_amount": 2054407, + "history_id": 1686940226040, + "id": 1686940226040, + "date_created": { + "type": 6, + "value": 1686940226040 + }, + "date_last_updated": { + "type": 6, + "value": 1687368323358 + }, + "date_of_expiration": { + "type": 6, + "value": 1686940226040 + }, + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1687368323358 + }, + "money_release_date": { + "type": 6, + "value": 1687368323358 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "7d2c6c26447942eaa6460120", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686940226040/description", + "content": { + "type": 5, + "value": "Saque de 2.054.407,00 IVIP para a carteira 0x660cf406B5942C1cfAb19D31EAe648D68fAb56bF", + "revision": "292df700f0304487ab7e4ffc", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history", + "content": { + "type": 1, + "value": {}, + "revision": "d1abf17df38a49639e7f5bd3", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "bd84a6462fab4999a93834b1", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": { + "type": 6, + "value": 1680547112243 + }, + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "853bccba1e574f7a87e6c0ed", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "f8b8d1ac10e44480b29aa8bb", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243/costs", + "content": { + "type": 2, + "value": {}, + "revision": "d725cf050baf4fc9881697cb", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305", + "content": { + "type": 1, + "value": {}, + "revision": "0f39f2a6369947f1a29289b8", + "revision_nr": 1, + "created": 1702563036398, + "modified": 1702563036398 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "606002db71a44dd19cccfe53", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": { + "type": 6, + "value": 1680547112243 + }, + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "9362b4065955481e906aaa69", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "43b005880fb9483eb7414927", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243/costs", + "content": { + "type": 2, + "value": {}, + "revision": "f0bfb0f8324544c3a139ed85", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "b4b80a9669b0414e907205c4", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "190455259d584511b90ba6af", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": { + "type": 6, + "value": 1680547112243 + }, + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "6f96a9d3dc3e44ee89e180ce", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "6a5d9f8cdfac45b7895a701b", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243/costs", + "content": { + "type": 2, + "value": {}, + "revision": "5c804df0e2644569acda128a", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "1e16e2da541542c0ab64efaa", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "6d50354c0c5b408a96dbd960", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": { + "type": 6, + "value": 1680547112243 + }, + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "4082016585374e459eadd776", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "33adc48ebd884a8db6bcba5e", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243/costs", + "content": { + "type": 2, + "value": {}, + "revision": "aee7ebc51835423981c551c6", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308", + "content": { + "type": 1, + "value": {}, + "revision": "30135f4c06f344618dc7ac5e", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "36f513eeda91481a87457879", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": { + "type": 6, + "value": 1680547112243 + }, + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "ed7da9c4595842c1a82503c4", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "ebc3aa6ba68b4365b4e827cf", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243/costs", + "content": { + "type": 2, + "value": {}, + "revision": "00460171d1ec4462b3c69423", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309", + "content": { + "type": 1, + "value": {}, + "revision": "52b334fd0cdb45949b6b2a52", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "5261971b4c6643cbb2c875bb", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": { + "type": 6, + "value": 1680547112243 + }, + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "c88b50f7bd274535afd1a452", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "c07d2fa16bd746659827c136", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243/costs", + "content": { + "type": 2, + "value": {}, + "revision": "c71551643648405a8a971a60", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310", + "content": { + "type": 1, + "value": {}, + "revision": "77574d09013045e992422802", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "0e9c859318644b64a944401f", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": { + "type": 6, + "value": 1680547112243 + }, + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "aa6faffa142847f48f2b0c87", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "2271058f942047ff8e9bef1e", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243/costs", + "content": { + "type": 2, + "value": {}, + "revision": "e013305cd2d9481dad261b57", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311", + "content": { + "type": 1, + "value": {}, + "revision": "3d473b629dcb4334be58ffda", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "60ac613380dc4a1eae8dbeb0", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": { + "type": 6, + "value": 1680547112243 + }, + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "c15fe89e899c48ecbf2996e7", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "c9f84c0d53ef4cecbe741c8c", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243/costs", + "content": { + "type": 2, + "value": {}, + "revision": "58b0fa782006413ab5a17704", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312", + "content": { + "type": 1, + "value": {}, + "revision": "344c2415209b4663b9bf4430", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "b82f7ce38e874bddb5644c79", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": { + "type": 6, + "value": 1680547112243 + }, + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "38322f290e7c4228a4f75b1e", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "a95af3234aae44cd8dcf231b", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243/costs", + "content": { + "type": 2, + "value": {}, + "revision": "5330005bb48949a6b87707e3", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401", + "content": { + "type": 1, + "value": {}, + "revision": "d736160c1ccc416188766c6d", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "c373519a0c1345f588525ff2", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": { + "type": 6, + "value": 1680547112243 + }, + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "4d5e0ab8126544b48a1f01be", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "c9cec1ecea83465e9fbe93c2", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243/costs", + "content": { + "type": 2, + "value": {}, + "revision": "f49765dd4ad6469a90d0f119", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402", + "content": { + "type": 1, + "value": {}, + "revision": "64ad9dce9a5645ae8e1e4340", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "49b6a18d3c3a424c9818b7fb", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": { + "type": 6, + "value": 1680547112243 + }, + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "28b8d3897f18483c82770ac7", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "54e6fd28109c43a3b49e1834", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243/costs", + "content": { + "type": 2, + "value": {}, + "revision": "0c1f5685a3a84f4499ef6600", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403", + "content": { + "type": 1, + "value": {}, + "revision": "8449b1b3aed9408899b6d8e4", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "867e274d3cb94873a258580b", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": { + "type": 6, + "value": 1680547112243 + }, + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "858b4e67d4ae436584ad1fb7", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "0a502524f3e44cafa33d806c", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243/costs", + "content": { + "type": 2, + "value": {}, + "revision": "61d756406b444e52a93233fb", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404", + "content": { + "type": 1, + "value": {}, + "revision": "fbf9d7cdd3f6431ab1e38def", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "fce3154dc1014a20b8038bcb", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 1000, + "limitUsed": 0, + "analysisRequested": { + "type": 6, + "value": 1679181714669 + }, + "lastReview": { + "type": 6, + "value": 1679261067910 + } + }, + "revision": "e55afbb1a70a4b1796fd256f", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677859170230, + "dateValidity": 1678919633238, + "totalValue": 0.13, + "currencyType": "USD" + }, + "revision": "e9832704bd154e9e8c49414d", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, + "revision": "97ac6652101f405fa632a084", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "IVIP", + "value": 0 + }, + "revision": "69ff169a476d4e67aaecdd50", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/balances", + "content": { + "type": 1, + "value": {}, + "revision": "f168bcfb7ead4f34ad65f55d", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156066045/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "fe3cf3c22dee40068205c25e", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156066045", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1684156066045, + "id": 1684156066045, + "date_created": { + "type": 6, + "value": 1684156066045 + }, + "date_last_updated": { + "type": 6, + "value": 1684156066045 + }, + "date_of_expiration": { + "type": 6, + "value": 1686748066045 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "b2c0127ea534462fbb848d5b", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156066045/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1115.9744.4051.0128-00", + "revision": "ecf8693c997a4591aa5a55fe", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156180281/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "7890b67b8cd443409f084a05", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156180281", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1684156180281, + "id": 1684156180281, + "date_created": { + "type": 6, + "value": 1684156180281 + }, + "date_last_updated": { + "type": 6, + "value": 1684156180281 + }, + "date_of_expiration": { + "type": 6, + "value": 1686748180281 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "a653072ba90b4a6eb8455215", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156180281/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00", + "revision": "2eb5f981e62f4d68b634ecca", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684157124109/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "cef53a428db94100afe0b2d8", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684157124109", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1684157124109, + "id": 1684157124109, + "date_created": { + "type": 6, + "value": 1684157124109 + }, + "date_last_updated": { + "type": 6, + "value": 1684162160711 + }, + "date_of_expiration": { + "type": 6, + "value": 1686749124109 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684162160711 + }, + "money_release_date": { + "type": 6, + "value": 1684162160711 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "600bb9cd63e6494a8d8fb6dd", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684157124109/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00", + "revision": "6f37a01184eb4c9d82a84bfa", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684667280508/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684667280508, + "acquirer_reference": "", + "verification_code": 1684667280508, + "net_received_amount": 0, + "total_paid_amount": 100, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "82217fc5a9da498b8c149428", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684667280508", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 487073, + "total_amount": 487073, + "id": 1684667280508, + "date_created": { + "type": 6, + "value": 1684667280508 + }, + "date_last_updated": { + "type": 6, + "value": 1684667280508 + }, + "date_of_expiration": { + "type": 6, + "value": 1684667280508 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684667280508, + "description": "Compra de 487.073,00 IVIP por 100,00 BRL" + }, + "revision": "a5c7bad9aae248c699ecfc1e", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685125796189/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "cf8a485522464ff4b48ad915", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685125796189", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 120, + "total_amount": 120, + "history_id": 1685125796189, + "id": 1685125796189, + "date_created": { + "type": 6, + "value": 1685125796189 + }, + "date_last_updated": { + "type": 6, + "value": 1685184457369 + }, + "date_of_expiration": { + "type": 6, + "value": 1687717796189 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685184457369 + }, + "money_release_date": { + "type": 6, + "value": 1685184457369 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "fb427fa5a72242288538e52a", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685125796189/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 120,00 para a carteira iVip 1115.9744.4051.0128-00", + "revision": "51e64f18582e4c75a763c5ab", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685203490781/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "18bf53366f1e4071abec006f", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685203490781", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1410, + "total_amount": 1410, + "history_id": 1685203490781, + "id": 1685203490781, + "date_created": { + "type": 6, + "value": 1685203490781 + }, + "date_last_updated": { + "type": 6, + "value": 1685211156964 + }, + "date_of_expiration": { + "type": 6, + "value": 1687795490781 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685211156964 + }, + "money_release_date": { + "type": 6, + "value": 1685211156964 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "f84655eac6384b00825524f0", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685203490781/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.410,00 para a carteira iVip 1115.9744.4051.0128-00", + "revision": "22dd3e4572d44a3f8c3de3cc", + "revision_nr": 1, + "created": 1702563036401, + "modified": 1702563036401 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685730135668/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685730135668, + "acquirer_reference": "", + "verification_code": 1685730135668, + "net_received_amount": 0, + "total_paid_amount": 1530, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "c088836869c1467c9c4a5438", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685730135668", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 5206344, + "total_amount": 5206344, + "id": 1685730135668, + "date_created": { + "type": 6, + "value": 1685730135668 + }, + "date_last_updated": { + "type": 6, + "value": 1685730135668 + }, + "date_of_expiration": { + "type": 6, + "value": 1685730135668 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685730135668, + "description": "Compra de 5.206.344,00 IVIP por 1.530,00 BRL" + }, + "revision": "29d3eaf3893b487baaaaa351", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686621899168/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "24a5019432cf40a9a1eeb432", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686621899168", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1686621899168, + "id": 1686621899168, + "date_created": { + "type": 6, + "value": 1686621899168 + }, + "date_last_updated": { + "type": 6, + "value": 1686658529648 + }, + "date_of_expiration": { + "type": 6, + "value": 1689213899168 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686658529648 + }, + "money_release_date": { + "type": 6, + "value": 1686658529648 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "f36332dc76784b2d9e78496b", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686621899168/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00", + "revision": "43e7f15f619a4dc6b049f4e3", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686792689847/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686792689847, + "acquirer_reference": "", + "verification_code": 1686792689847, + "net_received_amount": 0, + "total_paid_amount": 100, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "dd90cbabaf26461fac8b8e86", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686792689847", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 637246, + "total_amount": 637246, + "id": 1686792689847, + "date_created": { + "type": 6, + "value": 1686792689847 + }, + "date_last_updated": { + "type": 6, + "value": 1686792689847 + }, + "date_of_expiration": { + "type": 6, + "value": 1686792689847 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686792689847, + "description": "Compra de 637.246,00 IVIP por 100,00 BRL" + }, + "revision": "e128606e694341b0a4723110", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1688230681708/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688230681708, + "acquirer_reference": "", + "verification_code": 1688230681708, + "net_received_amount": 0, + "total_paid_amount": 5832008, + "overpaid_amount": 0, + "installment_amount": 5832008, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "986b79fc9e7b42eea53fc97e", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1688230681708", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 5832008, + "total_amount": 5832008, + "id": 1688230681708, + "date_created": { + "type": 6, + "value": 1688230681708 + }, + "date_last_updated": { + "type": 6, + "value": 1688230681708 + }, + "date_of_expiration": { + "type": 6, + "value": 1751389081708 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688230681708 + }, + "revision": "835cefc9d496404985f9767b", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1688230681708/description", + "content": { + "type": 5, + "value": "Investimento de 5.832.008,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/1/2025", + "revision": "fe5697a022264b2dba7ecf9e", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1690233382656/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690233382656, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 498655, + "installment_amount": 498655, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "2310d58c7ecb4a35a550dd81", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1690233382656/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/111597444051012800/history/1690233382656", + "revision": "5a499a67361a4783a99910d6", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1690233382656", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 498655, + "total_amount": 498655, + "id": 1690233382656, + "history_id": 1690233382656, + "date_created": { + "type": 6, + "value": 1690233382656 + }, + "date_last_updated": { + "type": 6, + "value": 1690398784450 + }, + "date_of_expiration": { + "type": 6, + "value": 1690233382656 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": { + "type": 6, + "value": 1690398784450 + }, + "money_release_date": { + "type": 6, + "value": 1690398784450 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "204e15d4c4bb4f84970c76ee", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1690233382656/description", + "content": { + "type": 5, + "value": "Saque de 498.655,00 IVIP para a carteira 0x31608012D8205A2BE2AaDBE2c528d75de71a36E8", + "revision": "64156948b0734872be81b245", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history", + "content": { + "type": 1, + "value": {}, + "revision": "aa3a4ebe92f1487f87bd6d64", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "716ed93fe1d140da8fa9f1e5", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "6d65a3cac14441cd8dd466c6", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684155865709, + "dateValidity": 1684155865709, + "totalValue": 22.552945262588203, + "currencyType": "USD", + "balancesModificacao": 1691060735628 + }, + "revision": "00eeb87fb04447c5a6f09d52", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112180841461099860/balances", + "content": { + "type": 1, + "value": {}, + "revision": "8f529e7dc0334ad2b363b9a7", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112180841461099860/history", + "content": { + "type": 1, + "value": {}, + "revision": "60552d1c13914e378b4b3c65", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112180841461099860", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689619740886, + "dateValidity": 1689619740886, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "0456f10ed0b64f629d5c6bfd", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112268931101963340/balances", + "content": { + "type": 1, + "value": {}, + "revision": "a31304b989e8496083d084db", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112268931101963340/history", + "content": { + "type": 1, + "value": {}, + "revision": "37c67d1bd8044f2dae0aec5c", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112268931101963340", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677432431553, + "dateValidity": 1677432431553, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "270e3010eb5e4212b81518d2", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "5721757.00000000", + "symbol": "IVIP", + "value": 612.41 + }, + "revision": "189698b4ebc445d78c136713", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/balances", + "content": { + "type": 1, + "value": {}, + "revision": "de63c2abe8774e9f9bbd3ffc", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1677943939458/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "1d0bcb9a9dd840a08adb85e3", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1677943939458", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1600, + "total_amount": 1600, + "history_id": 1677943939458, + "id": 1677943939458, + "date_created": { + "type": 6, + "value": 1677943939458 + }, + "date_last_updated": { + "type": 6, + "value": 1677962646599 + }, + "date_of_expiration": { + "type": 6, + "value": 1680535939458 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677962646599 + }, + "money_release_date": { + "type": 6, + "value": 1677962646599 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "3b8dcf26d22f47728b9c9fd7", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1677943939458/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 1127.2038.0478.0658-70", + "revision": "e8462c18bd8c4c458c979a96", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1678154526038/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678154526038, + "acquirer_reference": "", + "verification_code": 1678154526038, + "net_received_amount": 0, + "total_paid_amount": 1600, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "199eda642c4243b88adb545f", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1678154526038", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 11445515, + "total_amount": 11445515, + "id": 1678154526038, + "date_created": { + "type": 6, + "value": 1678154526038 + }, + "date_last_updated": { + "type": 6, + "value": 1678154526038 + }, + "date_of_expiration": { + "type": 6, + "value": 1678154526038 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678154526038, + "description": "Compra de 11445515 IVIP por 1600 BRL" + }, + "revision": "189f6fe5fd1342ae93caa78e", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1689270623353/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "42007937c3354df0bdd91aa1", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1689270623353", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1766725, + "total_amount": 1766725, + "history_id": 1689270623353, + "id": 1689270623353, + "date_created": { + "type": 6, + "value": 1689270623353 + }, + "date_last_updated": { + "type": 6, + "value": 1689270623353 + }, + "date_of_expiration": { + "type": 6, + "value": 1689270623353 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "c3bb4b3744a7422abff018e8", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1689270623353/description", + "content": { + "type": 5, + "value": "Saque de 1.766.725,00 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", + "revision": "33a46c85de7942ffb052afb3", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1690310464254/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690310464254, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "27c87c042ffb479f9982c3a9", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1690310464254/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1690310464254", + "revision": "5e30e4d9a2be4806bf66da44", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1690310464254", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1000, + "total_amount": 1000, + "id": 1690310464254, + "history_id": 1690310464254, + "date_created": { + "type": 6, + "value": 1690310464254 + }, + "date_last_updated": { + "type": 6, + "value": 1690393130972 + }, + "date_of_expiration": { + "type": 6, + "value": 1690310464254 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": { + "type": 6, + "value": 1690393130972 + }, + "money_release_date": { + "type": 6, + "value": 1690393130972 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "cfc0f06887d04baab567a775", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1690310464254/description", + "content": { + "type": 5, + "value": "Saque de 1.000,00 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", + "revision": "024fe0711aab4b1aa0a39095", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 171682.74 + }, + "revision": "670208a0f70342d7911bb8b0", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695843073185, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5722758, + "installment_amount": 5722758, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "a7141991ef504b258b2f7670", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1695843073185", + "revision": "3b3c8faefba94d39a3a6c9df", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "31f6c84d215e490fa749fcae", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "112720380478065870", + "payment_method": "transfer", + "original_amount": 5722758, + "total_amount": 5551075.26, + "id": "1695843073185", + "history_id": "1695843073185", + "date_created": { + "type": 6, + "value": 1695843073185 + }, + "date_last_updated": { + "type": 6, + "value": 1696513738903 + }, + "date_of_expiration": { + "type": 6, + "value": 1695843073185 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_other_reason", + "money_release_date": { + "type": 6, + "value": 1696513738903 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "130d7bc13721496db84bfc9a", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/description", + "content": { + "type": 5, + "value": "Saque de 5.551.075,26 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", + "revision": "c97dc5e88c344b788b4d5150", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 171682.74 + }, + "revision": "ad2b753c8e934e079db48a08", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695843125867, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5722758, + "installment_amount": 5722758, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "94f0216d3f50419f831497a0", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1695843125867", + "revision": "021fb06b87d14388aba02478", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "db6b68747c024b7d9e4e2a9a", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "112720380478065870", + "payment_method": "transfer", + "original_amount": 5722758, + "total_amount": 5551075.26, + "id": "1695843125867", + "history_id": "1695843125867", + "date_created": { + "type": 6, + "value": 1695843125867 + }, + "date_last_updated": { + "type": 6, + "value": 1696288649131 + }, + "date_of_expiration": { + "type": 6, + "value": 1695843125867 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": { + "type": 6, + "value": 1696288649131 + }, + "money_release_date": { + "type": 6, + "value": 1696288649131 + }, + "money_release_status": "drawee", + "wasDebited": true + }, + "revision": "395f5347e78049ee9cea4808", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/description", + "content": { + "type": 5, + "value": "Saque de 5.551.075,26 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", + "revision": "6643ba128c2341889f15bbde", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history", + "content": { + "type": 1, + "value": {}, + "revision": "076653d0227047c7a23ddca8", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "059291f0024d4bd3b2bae3ed", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "a0a91c2f0c634a5694d8fe9e", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677943677925, + "dateValidity": 1678919503018, + "totalValue": 308.8, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } + }, + "revision": "d2b6c347573741189abb5899", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113397082035573860/balances", + "content": { + "type": 1, + "value": {}, + "revision": "e573ec2f8d6f4b4682b11961", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113397082035573860/history", + "content": { + "type": 1, + "value": {}, + "revision": "2a9c3de1bf97472b9f1783e6", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113397082035573860/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "a5060c5d94934437a59578d2", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113397082035573860/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "122571d14fdc421f9db2aba2", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113397082035573860", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684093885315, + "dateValidity": 1684093885315, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "618c90419bb0467a81485c44", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113456931219695800/history", + "content": { + "type": 1, + "value": {}, + "revision": "140767def9484f8a960486ff", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/BNB", + "content": { + "type": 1, + "value": { + "symbol": "BNB", + "value": 329390, + "available": "1000.00000000" + }, + "revision": "d90cfa6228484fcd93680fcc", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/BTC", + "content": { + "type": 1, + "value": { + "symbol": "BTC", + "value": 24969.54, + "available": "1.00000000" + }, + "revision": "737d59ffcd5f4a4981bf6a26", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/BUSD", + "content": { + "type": 1, + "value": { + "symbol": "BUSD", + "value": 10000, + "available": "10000.00000000" + }, + "revision": "904a4e5bbe924a93a2291825", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/ETH", + "content": { + "type": 1, + "value": { + "symbol": "ETH", + "value": 168116, + "available": "100.00000000" + }, + "revision": "8373a0e6dbd348a998605ecb", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/LTC", + "content": { + "type": 1, + "value": { + "symbol": "LTC", + "value": 39525, + "available": "500.00000000" + }, + "revision": "acc41de20e90465ca3c91667", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/TRX", + "content": { + "type": 1, + "value": { + "symbol": "TRX", + "value": 32965, + "available": "500000.00000000" + }, + "revision": "e12d201b27d84b92bca2feea", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/USDT", + "content": { + "type": 1, + "value": { + "symbol": "USDT", + "value": 10020, + "available": "10000.00000000" + }, + "revision": "176fb095cafa429ea95970b4", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/XRP", + "content": { + "type": 1, + "value": { + "symbol": "XRP", + "value": 18315, + "available": "50000.00000000" + }, + "revision": "a8d2eddf1bad4926bda5a5e2", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances", + "content": { + "type": 1, + "value": {}, + "revision": "7d553098cc7447e89005c185", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113456931219695800", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678997585705, + "dateValidity": 1679015574916, + "totalValue": 633300.54, + "currencyType": "USD" + }, + "revision": "873d5fab771640afb63d6ff1", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113679410552544270/balances", + "content": { + "type": 1, + "value": {}, + "revision": "9003ba6a4d5e47289f8600c6", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113679410552544270/history", + "content": { + "type": 1, + "value": {}, + "revision": "e2042705464149d0906a2503", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113679410552544270", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677932902892, + "dateValidity": 1678217961007, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "4128e75c73b84b549fcb1bea", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113719047968885220/balances", + "content": { + "type": 1, + "value": {}, + "revision": "3c9b208ddd664118956fe183", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113719047968885220/history", + "content": { + "type": 1, + "value": {}, + "revision": "20cd6a1afaff49f38ef1920d", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113719047968885220", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678200529926, + "dateValidity": 1678214929961, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "5c6ff8b214f740a4997f8f1b", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/114964316693074270/balances", + "content": { + "type": 1, + "value": {}, + "revision": "5a9da48c980f48de97741037", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/114964316693074270/history", + "content": { + "type": 1, + "value": {}, + "revision": "a111e97bbef641aaa4c08b7e", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/114964316693074270", + "content": { + "type": 1, + "value": { + "dataModificacao": 1680104445044, + "dateValidity": 1680104445044, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "9f928f90673a47658b2c02a3", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "1000000.88000000", + "symbol": "IVIP", + "value": 106.42 + }, + "revision": "35b8c5bb954242feb8e9eaf5", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/balances", + "content": { + "type": 1, + "value": {}, + "revision": "18b8b7646688404286f55830", + "revision_nr": 1, + "created": 1702563036402, + "modified": 1702563036402 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689207673127/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "28497cda1e5145888c85f07c", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689207673127", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "history_id": 1689207673127, + "id": 1689207673127, + "date_created": { + "type": 6, + "value": 1689207673127 + }, + "date_last_updated": { + "type": 6, + "value": 1689250350894 + }, + "date_of_expiration": { + "type": 6, + "value": 1691799673127 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689250350894 + }, + "money_release_date": { + "type": 6, + "value": 1689250350894 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "28a5748c6b154bd5a800b9eb", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689207673127/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1154.3638.5305.7469-60", + "revision": "989f2271a22142549a40c5a6", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689260591470/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689260591470, + "acquirer_reference": "", + "verification_code": 1689260591470, + "net_received_amount": 0, + "total_paid_amount": 1500, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "91c7f9950f3a412496e2695c", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689260591470", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 593666, + "total_amount": 593666, + "id": 1689260591470, + "date_created": { + "type": 6, + "value": 1689260591470 + }, + "date_last_updated": { + "type": 6, + "value": 1689260591470 + }, + "date_of_expiration": { + "type": 6, + "value": 1689260591470 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689260591470, + "description": "Compra de 593.666,00 IVIP por 1.500,00 BRL" + }, + "revision": "6dc1e2d0e37a40348ac75b81", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692464251151 + } + }, + "revision": "f74a26cffcf5443ba34d2f7e", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1689872251156, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 650, + "installment_amount": 650, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "cde90d90176e40a09e9a6435", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/extract/115436385305746960/order/1689872251151", + "revision": "dda311f6116d4d4e96fdee3f", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "", + "original_amount": 650, + "total_amount": 650, + "id": 1689872251156, + "history_id": 1689872251156, + "date_created": { + "type": 6, + "value": 1689872251156 + }, + "date_last_updated": { + "type": 6, + "value": 1689872251156 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "56396a8146ec42349b13342a", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 650,00 para a carteira iVip 1154.3638.5305.7469-60", + "revision": "3d82de9307e14e73b537e4c5", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692903106238 + } + }, + "revision": "2338fd54837f4a9eaec9c792", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690311106238, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 650, + "installment_amount": 650, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "cffe15b2f8d14ab8948a9bb5", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1690311106238", + "revision": "2b94bb02bdf7414a8c3756ea", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 650, + "total_amount": 650, + "id": 1690311106238, + "history_id": 1690311106238, + "date_created": { + "type": 6, + "value": 1690311106238 + }, + "date_last_updated": { + "type": 6, + "value": 1690311305225 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1690311305225 + }, + "money_release_date": { + "type": 6, + "value": 1690311305225 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "f3f7df03527b4531a007bb31", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 650,00 para a carteira iVip 1154.3638.5305.7469-60", + "revision": "39cf63cb0f144ec2adae3050", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311787862/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1690311787862, + "acquirer_reference": "", + "verification_code": 1690311787862, + "net_received_amount": 0, + "total_paid_amount": 650, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "8fba9022a9f2457a9486c4de", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311787862", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 526109, + "total_amount": 526109, + "id": 1690311787862, + "date_created": { + "type": 6, + "value": 1690311787862 + }, + "date_last_updated": { + "type": 6, + "value": 1690311787862 + }, + "date_of_expiration": { + "type": 6, + "value": 1690311787862 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1690311787862, + "description": "Compra de 526.109,00 IVIP por 650,00 BRL" + }, + "revision": "a9bcdf62253a4af0bca7baa1", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691353182696/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691353182696, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1119775, + "installment_amount": 1119775, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "aa4987a05ed944958db89a91", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691353182696/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691353182696", + "revision": "2947cb7df3284f61b5c8da95", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691353182696", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 1119775, + "total_amount": 1119775, + "id": 1691353182696, + "history_id": 1691353182696, + "date_created": { + "type": 6, + "value": 1691353182696 + }, + "date_last_updated": { + "type": 6, + "value": 1691353182696 + }, + "date_of_expiration": { + "type": 6, + "value": 1694031582695 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "ee4c0b72b0064505958c280f", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691353182696/description", + "content": { + "type": 5, + "value": "Investimento de 1.119.775,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/6/2023", + "revision": "7c084c491ef64fe39fc94261", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694348197423 + } + }, + "revision": "14e724e265854492abba100a", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691756197423, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 500, + "installment_amount": 500, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "9ccd2b246edd492dbc85a9fc", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691756197423", + "revision": "bbb1a82ed7594702a5745deb", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "id": 1691756197423, + "history_id": 1691756197423, + "date_created": { + "type": 6, + "value": 1691756197423 + }, + "date_last_updated": { + "type": 6, + "value": 1691760960390 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1691760960390 + }, + "money_release_date": { + "type": 6, + "value": 1691760960390 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "bb8bd44af89d414fad2aea5f", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423/description", + "content": { + "type": 5, + "value": "Deposito de um valor 500,00 para a carteira iVip 1154.3638.5305.7469-60", + "revision": "c218e9124236421ca0245a89", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691761354889/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691761354889, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 500, + "installment_amount": 500, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "712860bdf23a45bbafae13ec", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691761354889/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691761354889", + "revision": "3efbbecc26cc4d56a0798413", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691761354889", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 917399, + "total_amount": 917399, + "id": 1691761354889, + "history_id": 1691761354889, + "date_created": { + "type": 6, + "value": 1691761354889 + }, + "date_last_updated": { + "type": 6, + "value": 1691761354889 + }, + "date_of_expiration": { + "type": 6, + "value": 1691761354889 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 917.399,00 IVIP por 500,00 BRL", + "status_detail": "accredited" + }, + "revision": "ec11a6513cf64831bd7efb0f", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694032195852/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694032195852, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1119775, + "installment_amount": 1119775, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "ccbf710ed66e4955bb884c19", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694032195852/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1694032195852", + "revision": "9c013345f2374b9083cbab81", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694032195852", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 1142170.5, + "total_amount": 1142170.5, + "id": "1694032195852", + "history_id": "1694032195852", + "date_created": { + "type": 6, + "value": 1694032195852 + }, + "date_last_updated": { + "type": 6, + "value": 1694032195852 + }, + "date_of_expiration": { + "type": 6, + "value": 1694032195852 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "a4307e2f32714ab6b4729e21", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694032195852/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 1.119.775,00 IVIP com um rendimento de +22.395,5 IVIP (2,00%) - Y12XDT27", + "revision": "5b67dc5a28374ff09981eedd", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694041733454/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694041733454, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2059569, + "installment_amount": 2059569, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "0ce82f143eff42b0b5df3fa1", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694041733454/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1694041733454", + "revision": "e99225ad85884e7fbd095a5d", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694041733454", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 2059569, + "total_amount": 2059569, + "id": "1694041733454", + "history_id": "1694041733454", + "date_created": { + "type": 6, + "value": 1694041733454 + }, + "date_last_updated": { + "type": 6, + "value": 1694041733454 + }, + "date_of_expiration": { + "type": 6, + "value": 1696633733454 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "30c927e27acc4ddd907fac69", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694041733454/description", + "content": { + "type": 5, + "value": "Investimento de 2.059.569,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/10/2023 - Y12XDT27", + "revision": "0bb1d4d4fc5d4cad87757ef7", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696633733454/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696633733454", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2059569, + "installment_amount": 2059569, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "0fc69a15a17c4973b82b20a5", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696633733454/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1696633733454", + "revision": "83a193b3b3ff4ac9bd83912c", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696633733454", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "115436385305746960", + "payment_method": "staking", + "original_amount": 2100760.38, + "total_amount": 2100760.38, + "id": "1696633733454", + "history_id": "1696633733454", + "date_created": { + "type": 6, + "value": 1696655091607 + }, + "date_last_updated": { + "type": 6, + "value": 1696655091607 + }, + "date_of_expiration": { + "type": 6, + "value": 1696655091607 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "d8b624e8f9c14a5e841805de", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696633733454/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 2.059.569,00 IVIP com um rendimento de +41.191,38 IVIP (2,00%) - Y12XDT27", + "revision": "0c84c982f59e45e18054563c", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696668184975/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696668184975", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1100760, + "installment_amount": 1100760, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "0c9b82b0458842c8a5e6ec93", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696668184975/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1696668184975", + "revision": "6e095ace90fa4d4cba256d68", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696668184975", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "115436385305746960", + "payment_method": "staking", + "original_amount": 1100760, + "total_amount": 1100760, + "id": "1696668184975", + "history_id": "1696668184975", + "date_created": { + "type": 6, + "value": 1696668184975 + }, + "date_last_updated": { + "type": 6, + "value": 1696668184975 + }, + "date_of_expiration": { + "type": 6, + "value": 1699346584935 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "6d5e6692297042df901c1dd3", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696668184975/description", + "content": { + "type": 5, + "value": "Investimento de 1.100.760,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 07/11/2023 - Y12XDT27", + "revision": "0ee6c89e555f4d1f98598e83", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699795525577 + } + }, + "revision": "87240d32774d4fff98989e68", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1697203525578", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1600, + "installment_amount": 1600, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "6c17fbbdbb344fa59ea0b77e", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1697203525578", + "revision": "2bd2d2997cac4879bc98820b", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "115436385305746960", + "payment_method": "whatsapp", + "original_amount": 1600, + "total_amount": 1600, + "id": "1697203525578", + "history_id": "1697203525578", + "date_created": { + "type": 6, + "value": 1697203525578 + }, + "date_last_updated": { + "type": 6, + "value": 1697203941571 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1697203941571 + }, + "money_release_date": { + "type": 6, + "value": 1697203941571 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "d330636104ec4d63aa573cab", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578/description", + "content": { + "type": 5, + "value": "Deposito de um valor 1.600,00 BRL para a carteira iVip 1154.3638.5305.7469-60", + "revision": "b2faa285176344efaf2129b1", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697204057820/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1697204057820", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1600, + "installment_amount": 1600, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "0f1714e299534428a5bf425d", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697204057820/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1697204057820", + "revision": "49fa07a0bdf44b75b2e07787", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697204057820", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "wallet_id": "115436385305746960", + "payment_method": "swap", + "original_amount": 2947170, + "total_amount": 2947170, + "id": "1697204057820", + "history_id": "1697204057820", + "date_created": { + "type": 6, + "value": 1697204057820 + }, + "date_last_updated": { + "type": 6, + "value": 1697204057820 + }, + "date_of_expiration": { + "type": 6, + "value": 1697204057820 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 2.947.170,00 IVIP por 1.600,00 BRL", + "status_detail": "accredited" + }, + "revision": "cd3f0d25ba114808ad6c82a4", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history", + "content": { + "type": 1, + "value": {}, + "revision": "42d0b89583764ba8b75d67cd", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "b81fb0c748d74932b6e80769", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "analysisRequested": { + "type": 6, + "value": 1695990240020 + } + }, + "revision": "6aeeecde74a945469ce02956", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689197249139, + "dateValidity": 1689197249139, + "totalValue": 309.3, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697166000000 + } + }, + "revision": "5f6367dc2df44ecdae132014", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115766338093199020/balances", + "content": { + "type": 1, + "value": {}, + "revision": "e1174c5ea3fd4b2ea665ab97", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115766338093199020/history", + "content": { + "type": 1, + "value": {}, + "revision": "e3d773863fbf425db7b2e2ab", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115766338093199020", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679078083825, + "dateValidity": 1679078083825, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "00401ec7f1d24878925c359c", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116261495252090180/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "fb1e3fd980984afa96ace478", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116261495252090180/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "e20932d321674d9dacd01b8a", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116261495252090180/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "36743092.00000000", + "symbol": "IVIP", + "value": 7620.42 + }, + "revision": "cc9a19baf0fb41dfa955309f", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116261495252090180/balances", + "content": { + "type": 1, + "value": {}, + "revision": "73d9a355eea14f40bda08873", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1685463962891/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "f5d7cbc19fd04b4a849a8daf", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1685463962891", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 10000, + "total_amount": 10000, + "history_id": 1685463962891, + "id": 1685463962891, + "date_created": { + "type": 6, + "value": 1685463962891 + }, + "date_last_updated": { + "type": 6, + "value": 1685468486567 + }, + "date_of_expiration": { + "type": 6, + "value": 1688055962891 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685468486567 + }, + "money_release_date": { + "type": 6, + "value": 1685468486567 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "4f99fab5e07148adbfc09bdc", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1685463962891/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1162.6149.5252.0901-80", + "revision": "0870f309502d4c3b84d0e654", + "revision_nr": 1, + "created": 1702563036403, + "modified": 1702563036403 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1688996128425/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688996128425, + "acquirer_reference": "", + "verification_code": 1688996128425, + "net_received_amount": 0, + "total_paid_amount": 10000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "26f1e180392c434a8347c315", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1688996128425", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 36743092, + "total_amount": 36743092, + "id": 1688996128425, + "date_created": { + "type": 6, + "value": 1688996128425 + }, + "date_last_updated": { + "type": 6, + "value": 1688996128425 + }, + "date_of_expiration": { + "type": 6, + "value": 1688996128425 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688996128425, + "description": "Compra de 36.743.092,00 IVIP por 10.000,70 BRL" + }, + "revision": "afec3356936740439d220caf", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history", + "content": { + "type": 1, + "value": {}, + "revision": "f02c4efa5e444c9a870181b5", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116261495252090180", + "content": { + "type": 1, + "value": { + "dataModificacao": 1685463582486, + "dateValidity": 1685463582486, + "totalValue": 5105.87, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696215600000 + } + }, + "revision": "0d9d1789760a4d0b9307d5c6", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116696192475580050/balances", + "content": { + "type": 1, + "value": {}, + "revision": "fb6a685535e3415daefb55f4", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116696192475580050/history", + "content": { + "type": 1, + "value": {}, + "revision": "46e5de4eadf841508e221bf5", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116696192475580050/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "2b6b6dea7d75495baa594d59", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116696192475580050/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "95a22deb1c924bdbb1818fab", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116696192475580050", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678753662620, + "dateValidity": 1678768062657, + "totalValue": 0 + }, + "revision": "5f9c0f88148a4691bd37372f", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117188412170673220/balances", + "content": { + "type": 1, + "value": {}, + "revision": "9f3d7375d1074224a31a97c2", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117188412170673220/history", + "content": { + "type": 1, + "value": {}, + "revision": "5e11784bd52b45ee809d24ab", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117188412170673220", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678532146149, + "dateValidity": 1678546546189, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "d3cca6a77d074bb5a99d3d31", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "0.70000000", + "symbol": "IVIP", + "value": 0.00037 + }, + "revision": "db9dd9b3dd14409baff87b05", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/balances", + "content": { + "type": 1, + "value": {}, + "revision": "22489272a8fc4563a7657f61", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1677877705308/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "7330e26307d74aedb19c2c48", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1677877705308", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1677877705308, + "id": 1677877705308, + "date_created": { + "type": 6, + "value": 1677877705308 + }, + "date_last_updated": { + "type": 6, + "value": 1677878165656 + }, + "date_of_expiration": { + "type": 6, + "value": 1680469705308 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677878165656 + }, + "money_release_date": { + "type": 6, + "value": 1677878165656 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "46e37bcc48384302804041eb", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1677877705308/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1177.1880.3693.7100-20", + "revision": "50bf1ee92799445abc5f9682", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1678145189537/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678145189537, + "acquirer_reference": "", + "verification_code": 1678145189537, + "net_received_amount": 0, + "total_paid_amount": 200, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "2473e42551904be49171fb2a", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1678145189537", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1428465, + "total_amount": 1428465, + "id": 1678145189537, + "date_created": { + "type": 6, + "value": 1678145189537 + }, + "date_last_updated": { + "type": 6, + "value": 1678145189537 + }, + "date_of_expiration": { + "type": 6, + "value": 1678145189537 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678145189537, + "description": "Compra de 1428465 IVIP por 200 BRL" + }, + "revision": "48941af9ed464863aeb9bfcd", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1683395429062/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "87c645ef651641708a6a535e", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1683395429062", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "history_id": 1683395429062, + "id": 1683395429062, + "date_created": { + "type": 6, + "value": 1683395429062 + }, + "date_last_updated": { + "type": 6, + "value": 1683395429062 + }, + "date_of_expiration": { + "type": 6, + "value": 1685987429062 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "3d59e2d5f82e4669b0f658f0", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1683395429062/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1177.1880.3693.7100-20", + "revision": "0d07602e033243b08fada3e1", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684179573429/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "68f564370b924d618d7b9d02", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684179573429", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 350, + "total_amount": 350, + "history_id": 1684179573429, + "id": 1684179573429, + "date_created": { + "type": 6, + "value": 1684179573429 + }, + "date_last_updated": { + "type": 6, + "value": 1684181611494 + }, + "date_of_expiration": { + "type": 6, + "value": 1686771573429 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684181611494 + }, + "money_release_date": { + "type": 6, + "value": 1684181611494 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "56aafffecb894603a1fdbca3", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684179573429/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 350,00 para a carteira iVip 1177.1880.3693.7100-20", + "revision": "6fa3308359c8482daf4d4e53", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 6.00%", + "amount": 60 + }, + "revision": "425284ff8877469fb5024b1a", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706/details", + "content": { + "type": 1, + "value": {}, + "revision": "a9597e72f1874e9d90e8a8dc", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "ca453c97902b44a6a872dd60", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 1000, + "total_amount": 1060, + "history_id": 1684182120706, + "id": 1684182120706, + "date_created": { + "type": 6, + "value": 1684182120706 + }, + "date_last_updated": { + "type": 6, + "value": 1684182120706 + }, + "date_of_expiration": { + "type": 6, + "value": 1686774120706 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "c753e481d81340ecad182bd4", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00", + "revision": "f120279c41c544a5bf849187", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684624218931/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624218931, + "acquirer_reference": "", + "verification_code": 1684624218931, + "net_received_amount": 0, + "total_paid_amount": 1350, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "b9f06d2d160443e59686c6f8", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684624218931", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 6575487, + "total_amount": 6575487, + "id": 1684624218931, + "date_created": { + "type": 6, + "value": 1684624218931 + }, + "date_last_updated": { + "type": 6, + "value": 1684624218931 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624218931 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624218931, + "description": "Compra de 6.575.487,00 IVIP por 1.350,00 BRL" + }, + "revision": "8d511b88dc544980b299fd5f", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685388624157/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "289222e3d5e849d8bbbd571e", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685388624157", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 2982650, + "total_amount": 2982650, + "history_id": 1685388624157, + "id": 1685388624157, + "date_created": { + "type": 6, + "value": 1685388624157 + }, + "date_last_updated": { + "type": 6, + "value": 1685388624157 + }, + "date_of_expiration": { + "type": 6, + "value": 1685388624157 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "ead941e3fdb24a008265796a", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685388624157/description", + "content": { + "type": 5, + "value": "Saque de 2.982.650,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", + "revision": "e033c02c156347a2af143ffa", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685389940740/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "ce1660f6b8ad4c619e631fed", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685389940740", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 8003952, + "total_amount": 8003952, + "history_id": 1685389940740, + "id": 1685389940740, + "date_created": { + "type": 6, + "value": 1685389940740 + }, + "date_last_updated": { + "type": 6, + "value": 1685389940740 + }, + "date_of_expiration": { + "type": 6, + "value": 1685389940740 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "db6aaca9068e484bbb8de7cc", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685389940740/description", + "content": { + "type": 5, + "value": "Saque de 8.003.952,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", + "revision": "6b9b8f3599334287bac90beb", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685665639073/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685665639073, + "acquirer_reference": "", + "verification_code": 1685665639073, + "net_received_amount": 0, + "total_paid_amount": 3568754, + "overpaid_amount": 0, + "installment_amount": 3568754, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "875459c70b284caea592801c", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685665639073", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 3568754, + "total_amount": 3568754, + "id": 1685665639073, + "date_created": { + "type": 6, + "value": 1685665639073 + }, + "date_last_updated": { + "type": 6, + "value": 1685665639073 + }, + "date_of_expiration": { + "type": 6, + "value": 1688257639073 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685665639073, + "wasDebited": true + }, + "revision": "517ad097019a43b798967428", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685665639073/description", + "content": { + "type": 5, + "value": "Investimento de 3.568.754,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", + "revision": "e7995c787aae48c0a3361f87", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685668997292/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685668997292, + "acquirer_reference": "", + "verification_code": 1685668997292, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "8094e58eb77549d487e90890", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685668997292", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1685668997292, + "date_created": { + "type": 6, + "value": 1685668997292 + }, + "date_last_updated": { + "type": 6, + "value": 1685668997292 + }, + "date_of_expiration": { + "type": 6, + "value": 1701480197292 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685668997292 + }, + "revision": "6b1e7fdf3eef4b3f9bbef59f", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685668997292/description", + "content": { + "type": 5, + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", + "revision": "580f3677a6e04e8ab946eacc", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669010794/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685669010794, + "acquirer_reference": "", + "verification_code": 1685669010794, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "3ac5f34dced8434fa6d0e33c", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669010794", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1685669010794, + "date_created": { + "type": 6, + "value": 1685669010794 + }, + "date_last_updated": { + "type": 6, + "value": 1685669010794 + }, + "date_of_expiration": { + "type": 6, + "value": 1717291410794 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685669010794 + }, + "revision": "e013253d6c15468eb12f583d", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669010794/description", + "content": { + "type": 5, + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", + "revision": "0a89efb8a43e4a48aa67a413", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669017906/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685669017906, + "acquirer_reference": "", + "verification_code": 1685669017906, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "9ae899b8d1174fedb0f27ef9", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669017906", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1685669017906, + "date_created": { + "type": 6, + "value": 1685669017906 + }, + "date_last_updated": { + "type": 6, + "value": 1685669017906 + }, + "date_of_expiration": { + "type": 6, + "value": 1748827417906 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685669017906 + }, + "revision": "c71fcaa53d4f4410beca5c28", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669017906/description", + "content": { + "type": 5, + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", + "revision": "c1408b81ac8044c382f31635", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686742076839/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "78bee3a9d1a84148a904bc16", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686742076839", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 470112, + "total_amount": 470112, + "history_id": 1686742076839, + "id": 1686742076839, + "date_created": { + "type": 6, + "value": 1686742076839 + }, + "date_last_updated": { + "type": 6, + "value": 1686742076839 + }, + "date_of_expiration": { + "type": 6, + "value": 1686742076839 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "a0a6a52291d4455bbd6a7d99", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686742076839/description", + "content": { + "type": 5, + "value": "Saque de 470.112,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", + "revision": "9c0f1d1184d04912b9773d7a", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831828859/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "2f0a941b934c452d874e575a", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831828859", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 530, + "total_amount": 530, + "history_id": 1686831828859, + "id": 1686831828859, + "date_created": { + "type": 6, + "value": 1686831828859 + }, + "date_last_updated": { + "type": 6, + "value": 1686831828859 + }, + "date_of_expiration": { + "type": 6, + "value": 1689423828859 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "5c0f3d08e3f041a6a32040f5", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831828859/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", + "revision": "dd2923d06d6d4f828567aa41", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831937569/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "3c0614d68f834301bfad4abb", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831937569", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 530, + "total_amount": 530, + "history_id": 1686831937569, + "id": 1686831937569, + "date_created": { + "type": 6, + "value": 1686831937569 + }, + "date_last_updated": { + "type": 6, + "value": 1686838238027 + }, + "date_of_expiration": { + "type": 6, + "value": 1689423937569 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686838238027 + }, + "money_release_date": { + "type": 6, + "value": 1686838238027 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "1ba5f2b1babe494aa1c225e8", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831937569/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", + "revision": "ed4b4c63a70949b08bd4782f", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838699070/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 1, + "payment_method_reference_id": 1686838699070, + "acquirer_reference": "", + "verification_code": 1686838699070, + "net_received_amount": 0, + "total_paid_amount": 530, + "overpaid_amount": 0, + "installment_amount": 530, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "8038b4971c084996a43cacf5", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838699070", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 530, + "total_amount": 530, + "id": 1686838699070, + "contract_id": "1684182120706", + "date_created": { + "type": 6, + "value": 1686838699070 + }, + "date_last_updated": { + "type": 6, + "value": 1686838699070 + }, + "date_of_expiration": { + "type": 6, + "value": 1686838699070 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1686838699070 + }, + "revision": "fad7b3a550334bbd89c34a21", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838699070/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 1 de 2 no valor de 530,00 BRL referente ao contrato 1684182120706", + "revision": "f085f6b55f0340fcbcb70a79", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838872989/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "c511c4a196fc45fdb6899651", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838872989", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 3897629, + "total_amount": 3897629, + "history_id": 1686838872989, + "id": 1686838872989, + "date_created": { + "type": 6, + "value": 1686838872989 + }, + "date_last_updated": { + "type": 6, + "value": 1686838872989 + }, + "date_of_expiration": { + "type": 6, + "value": 1686838872989 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "f7411ef4a6b2413099a228db", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838872989/description", + "content": { + "type": 5, + "value": "Saque de 3.897.629,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", + "revision": "310a795654bc489f9ba8f242", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688400243137/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688400243137, + "acquirer_reference": "", + "verification_code": 1688400243137, + "net_received_amount": 0, + "total_paid_amount": 3568754, + "overpaid_amount": 0, + "installment_amount": 3568754, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "6cf2fcb629bc4b219b93dbe3", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688400243137", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 3640129.08, + "total_amount": 3640129.08, + "id": 1688400243137, + "date_created": { + "type": 6, + "value": 1688400243137 + }, + "date_last_updated": { + "type": 6, + "value": 1688400243137 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400243137 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688400243137, + "wasDebited": true + }, + "revision": "7dbd1975cc3443d9879c5b20", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688400243137/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 3.568.754,00 IVIP com um rendimento de +71.375,08 IVIP (2,00%)", + "revision": "650671b92ca943f3a94e7050", + "revision_nr": 1, + "created": 1702563036404, + "modified": 1702563036404 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688424411822/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "cb60d5c71adf40d8b725912b", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688424411822", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 4926607, + "total_amount": 4926607, + "history_id": 1688424411822, + "id": 1688424411822, + "date_created": { + "type": 6, + "value": 1688424411822 + }, + "date_last_updated": { + "type": 6, + "value": 1688424411822 + }, + "date_of_expiration": { + "type": 6, + "value": 1688424411822 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "2097ad7593d543c1958520b5", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688424411822/description", + "content": { + "type": 5, + "value": "Saque de 4.926.607,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", + "revision": "89a55dcdece74f49b933f921", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689020922030/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "a54f99d557844f019f94cbbe", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689020922030", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1082278, + "total_amount": 1082278, + "history_id": 1689020922030, + "id": 1689020922030, + "date_created": { + "type": 6, + "value": 1689020922030 + }, + "date_last_updated": { + "type": 6, + "value": 1689021819362 + }, + "date_of_expiration": { + "type": 6, + "value": 1689020922030 + }, + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1689021819362 + }, + "money_release_date": { + "type": 6, + "value": 1689021819362 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "5a8d789581dd494ca60713c4", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689020922030/description", + "content": { + "type": 5, + "value": "Saque de 1.082.278,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", + "revision": "03b6d6acaafc43cb92c9cb59", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689102393644/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "77c4698be777408a9236be56", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689102393644", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 5031032, + "total_amount": 5031032, + "history_id": 1689102393644, + "id": 1689102393644, + "date_created": { + "type": 6, + "value": 1689102393644 + }, + "date_last_updated": { + "type": 6, + "value": 1689102393644 + }, + "date_of_expiration": { + "type": 6, + "value": 1689102393644 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "5e98c318a047475ba07f8ced", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689102393644/description", + "content": { + "type": 5, + "value": "Saque de 5.031.032,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce", + "revision": "f074edac0cdd412fa5cfa9c8", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689189282410/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "640836ee6cf94ed2b93a437e", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689189282410", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 5995148, + "total_amount": 5995148, + "history_id": 1689189282410, + "id": 1689189282410, + "date_created": { + "type": 6, + "value": 1689189282410 + }, + "date_last_updated": { + "type": 6, + "value": 1689189282410 + }, + "date_of_expiration": { + "type": 6, + "value": 1689189282410 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "d00e37869ab8450699a3282e", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689189282410/description", + "content": { + "type": 5, + "value": "Saque de 5.995.148,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", + "revision": "bb3f33b5880745188c30862a", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689258056089/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "7a2001d7f8884faba2811d2d", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689258056089", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1000000, + "total_amount": 1000000, + "history_id": 1689258056089, + "id": 1689258056089, + "date_created": { + "type": 6, + "value": 1689258056089 + }, + "date_last_updated": { + "type": 6, + "value": 1689258056089 + }, + "date_of_expiration": { + "type": 6, + "value": 1689258056089 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "3e36399183904eb5bcf28c22", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689258056089/description", + "content": { + "type": 5, + "value": "Saque de 1.000.000,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", + "revision": "68a6e0a70e5f4582b2dc0dd2", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689390236969/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "68cadc4599ea4998af934d99", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689390236969", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 530, + "total_amount": 530, + "history_id": 1689390236969, + "id": 1689390236969, + "date_created": { + "type": 6, + "value": 1689390236969 + }, + "date_last_updated": { + "type": 6, + "value": 1689390236969 + }, + "date_of_expiration": { + "type": 6, + "value": 1691982236969 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "277bacc7281342b3aa906b91", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689390236969/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", + "revision": "a1d3e8d6043442ebb1697240", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689424277440/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "6fae0d8c5b2b4c4fa7ecf15c", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689424277440", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 530, + "total_amount": 530, + "history_id": 1689424277440, + "id": 1689424277440, + "date_created": { + "type": 6, + "value": 1689424277440 + }, + "date_last_updated": { + "type": 6, + "value": 1689424277440 + }, + "date_of_expiration": { + "type": 6, + "value": 1692016277440 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "6a141c6db9b44e66b71f8b34", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689424277440/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", + "revision": "0f54c846d0ec434284cbb71a", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612021512/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "3d3e4f2671774f23b9634f1c", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612021512", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 530, + "total_amount": 530, + "history_id": 1689612021512, + "id": 1689612021512, + "date_created": { + "type": 6, + "value": 1689612021512 + }, + "date_last_updated": { + "type": 6, + "value": 1690308352467 + }, + "date_of_expiration": { + "type": 6, + "value": 1692204021512 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1690308352467 + }, + "money_release_date": { + "type": 6, + "value": 1690308352467 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "cf8c72c9965041ed886b9e32", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612021512/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", + "revision": "424454bb5f3a4fbca11f934f", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612840534/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "01a0051ba1f54d1fa8187943", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612840534", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 2000000, + "total_amount": 2000000, + "history_id": 1689612840534, + "id": 1689612840534, + "date_created": { + "type": 6, + "value": 1689612840534 + }, + "date_last_updated": { + "type": 6, + "value": 1689612840534 + }, + "date_of_expiration": { + "type": 6, + "value": 1689612840534 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "05d5e2908a7047c286d8e161", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612840534/description", + "content": { + "type": 5, + "value": "Saque de 2.000.000,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", + "revision": "6e60317526304cbea6415037", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690326796884/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 0, + "payment_method_reference_id": 1690326796884, + "acquirer_reference": "", + "verification_code": 1690326796884, + "net_received_amount": 0, + "total_paid_amount": 530, + "overpaid_amount": 0, + "installment_amount": 530, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "78e564b49e3a4324a903ccd1", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690326796884", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 530, + "total_amount": 530, + "id": 1690326796884, + "contract_id": "1684182120706", + "date_created": { + "type": 6, + "value": 1690326796884 + }, + "date_last_updated": { + "type": 6, + "value": 1690326796884 + }, + "date_of_expiration": { + "type": 6, + "value": 1690326796884 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1690326796884 + }, + "revision": "fb373f35f6a54a5abb3d984e", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690326796884/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 2 de 2 no valor de 530,00 BRL referente ao contrato 1684182120706", + "revision": "33f124bda90a4864a4c526c3", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690327152842/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690327152842, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 6990049, + "installment_amount": 6990049, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "a1554708dba64a36be8669e4", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690327152842/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1690327152842", + "revision": "d387818f33664b88ba1e77c3", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690327152842", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 6990049, + "total_amount": 6990049, + "id": 1690327152842, + "history_id": 1690327152842, + "date_created": { + "type": 6, + "value": 1690327152842 + }, + "date_last_updated": { + "type": 6, + "value": 1690392853723 + }, + "date_of_expiration": { + "type": 6, + "value": 1690327152842 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_amount", + "money_release_date": { + "type": 6, + "value": 1690392853723 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "d52843b0c65e474eadafde00", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690327152842/description", + "content": { + "type": 5, + "value": "Saque de 6.990.049,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce", + "revision": "c144dbf9d2114c3d8cbadbb4", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690371637044/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690371637044, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 3280090, + "installment_amount": 3280090, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "fe9033d3341d4aafbd3113bc", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690371637044/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1690371637044", + "revision": "fdd7b1f31e3340879f04f716", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690371637044", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 3280090, + "total_amount": 3280090, + "id": 1690371637044, + "history_id": 1690371637044, + "date_created": { + "type": 6, + "value": 1690371637044 + }, + "date_last_updated": { + "type": 6, + "value": 1690392785648 + }, + "date_of_expiration": { + "type": 6, + "value": 1690371637044 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": { + "type": 6, + "value": 1690392785648 + }, + "money_release_date": { + "type": 6, + "value": 1690392785648 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "a242ff3d1e0c43d1b8057f38", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690371637044/description", + "content": { + "type": 5, + "value": "Saque de 3.280.090,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce", + "revision": "1d784427f5344fae884f870c", + "revision_nr": 1, + "created": 1702563036405, + "modified": 1702563036405 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1694007742356/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694007742356, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 3678031, + "installment_amount": 3678031, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "c47359f486ae459287e98f09", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1694007742356/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1694007742356", + "revision": "e615a47b78e74aed860230f3", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1694007742356", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 3678031, + "total_amount": 3678031, + "id": "1694007742356", + "history_id": "1694007742356", + "date_created": { + "type": 6, + "value": 1694007742356 + }, + "date_last_updated": { + "type": 6, + "value": 1694007742356 + }, + "date_of_expiration": { + "type": 6, + "value": 1696599742356 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "98f88525ac94450cb7889f49", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1694007742356/description", + "content": { + "type": 5, + "value": "Investimento de 3.678.031,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/10/2023 - Y12XDT27", + "revision": "fed543e8303a4fcbb73a006d", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599770690/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696599770690, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 3678031, + "installment_amount": 3678031, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "32623aaa71d645a689e909e9", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599770690/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1696599770690", + "revision": "c15954dd0a2b4bf8a9827ce5", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599770690", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "117718803693710020", + "payment_method": "staking", + "original_amount": 3751591.62, + "total_amount": 3751591.62, + "id": "1696599770690", + "history_id": "1696599770690", + "date_created": { + "type": 6, + "value": 1696599770690 + }, + "date_last_updated": { + "type": 6, + "value": 1696599770690 + }, + "date_of_expiration": { + "type": 6, + "value": 1696599770690 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "1e546ceb26384a2e9e65bb68", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599770690/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 3.678.031,00 IVIP com um rendimento de +73.560,62 IVIP (2,00%) - Y12XDT27", + "revision": "35a6cf04a41541d3a33aafb8", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599812843/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696599812843, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 3783519, + "installment_amount": 3783519, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "33ed7e0453ef46e7ae93819e", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599812843/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1696599812843", + "revision": "572d1299d28f454abee1acca", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599812843", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "117718803693710020", + "payment_method": "staking", + "original_amount": 3783519, + "total_amount": 3783519, + "id": "1696599812843", + "history_id": "1696599812843", + "date_created": { + "type": 6, + "value": 1696599812843 + }, + "date_last_updated": { + "type": 6, + "value": 1696599812843 + }, + "date_of_expiration": { + "type": 6, + "value": 1699278212817 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "21a375f74ed44f59b84d07d8", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599812843/description", + "content": { + "type": 5, + "value": "Investimento de 3.783.519,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", + "revision": "000d2ec075dd4e0f89fcf65f", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history", + "content": { + "type": 1, + "value": {}, + "revision": "80ad9986fe91458790a9390f", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 6.00%", + "amount": 60 + }, + "revision": "f777a73d93bf4c03a71f2ccd", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706", + "content": { + "type": 1, + "value": { + "id": 1684182120706, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1060, + "installments": 2, + "installment_amount": 530, + "date_created": { + "type": 6, + "value": 1684182120706 + }, + "history_id": 1684182120706, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "60c59bcc221e408886591d19", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00", + "revision": "0ce490e52c7a4a00b287fdb8", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706/costs", + "content": { + "type": 2, + "value": {}, + "revision": "56514120160142e29563f84a", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "0c3cbf7f3a9b478580589ff6", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 6.00%", + "amount": 60 + }, + "revision": "45ea6ef0b1f24597898e2a8e", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706", + "content": { + "type": 1, + "value": { + "id": 1684182120706, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1060, + "installments": 2, + "installment_amount": 530, + "date_created": { + "type": 6, + "value": 1684182120706 + }, + "history_id": 1684182120706, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "d67bcac41fdd44de991a0474", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00", + "revision": "1613a5ebbf5a4dbe8f63d3a3", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706/costs", + "content": { + "type": 2, + "value": {}, + "revision": "8716f88fb3ff4fff824e08fe", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "6aada2ac7ead4780b5278571", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "aeeb5700b77f4674ab4bf1e7", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 1000, + "limitUsed": 0, + "analysisRequested": { + "type": 6, + "value": 1683344368087 + }, + "lastReview": { + "type": 6, + "value": 1683344393183 + } + }, + "revision": "774a450a5047470a9d51fbfa", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677877676290, + "dateValidity": 1678707203279, + "totalValue": 2242.137, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } + }, + "revision": "962a6cef57e746ad8d6ca251", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "5.00000000", + "symbol": "BRL", + "value": 0.98 + }, + "revision": "045c09f99e3649c489db45f5", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "0.20000000", + "symbol": "IVIP", + "value": 0.000021 + }, + "revision": "fe5bc964a5614dddad6b104a", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/balances", + "content": { + "type": 1, + "value": {}, + "revision": "60e916c17610400bb729271c", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684492352568/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "fd6b010880da4019bbfbb06e", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684492352568", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1684492352568, + "id": 1684492352568, + "date_created": { + "type": 6, + "value": 1684492352568 + }, + "date_last_updated": { + "type": 6, + "value": 1684492507764 + }, + "date_of_expiration": { + "type": 6, + "value": 1687084352568 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684492507764 + }, + "money_release_date": { + "type": 6, + "value": 1684492507764 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "c207f701d46f40018c4f0520", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684492352568/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1181.6054.9969.9842-60", + "revision": "9f006eb5c7004daf818f1243", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684624220546/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624220546, + "acquirer_reference": "", + "verification_code": 1684624220546, + "net_received_amount": 0, + "total_paid_amount": 200, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "67e6770db17348f3abc33b2a", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684624220546", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 974146, + "total_amount": 974146, + "id": 1684624220546, + "date_created": { + "type": 6, + "value": 1684624220546 + }, + "date_last_updated": { + "type": 6, + "value": 1684624220546 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624220546 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624220546, + "description": "Compra de 974.146,00 IVIP por 200,00 BRL" + }, + "revision": "135b92d275654dc69a296ddb", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "f823a00bb0cb4997b5081d91", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623/details", + "content": { + "type": 1, + "value": {}, + "revision": "eccdd0bd7c764107a7af08eb", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "63764f65db3c40d9ad9c7f0b", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "history_id": 1684625319623, + "id": 1684625319623, + "date_created": { + "type": 6, + "value": 1684625319623 + }, + "date_last_updated": { + "type": 6, + "value": 1684625319623 + }, + "date_of_expiration": { + "type": 6, + "value": 1687217319623 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "a8c88b224f5a410eabe11f03", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "86775a7367af4ff3af7017d4", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625351966/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684625351966, + "acquirer_reference": "", + "verification_code": 1684625351966, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "9213073d01134a75aa863aa0", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625351966", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 4870731, + "total_amount": 4870731, + "id": 1684625351966, + "date_created": { + "type": 6, + "value": 1684625351966 + }, + "date_last_updated": { + "type": 6, + "value": 1684625351966 + }, + "date_of_expiration": { + "type": 6, + "value": 1684625351966 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684625351966, + "description": "Compra de 4.870.731,00 IVIP por 1.000,00 BRL" + }, + "revision": "5a9a11fd02bc495b9f154c53", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685027205516/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "66ee0dfa331a46519903a485", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685027205516", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 400, + "total_amount": 400, + "history_id": 1685027205516, + "id": 1685027205516, + "date_created": { + "type": 6, + "value": 1685027205516 + }, + "date_last_updated": { + "type": 6, + "value": 1685312683393 + }, + "date_of_expiration": { + "type": 6, + "value": 1687619205516 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685312683393 + }, + "money_release_date": { + "type": 6, + "value": 1685312683393 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "1d798352f8584f78b5d07d67", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685027205516/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 400,00 para a carteira iVip 1181.6054.9969.9842-60", + "revision": "8dd5b16168c547e6b1d962cd", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685234226998/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685234226998, + "acquirer_reference": "", + "verification_code": 1685234226998, + "net_received_amount": 0, + "total_paid_amount": 41, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "184df918b2884f69ac15fb07", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685234226998", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 10000000, + "total_amount": 10000000, + "id": 1685234226998, + "date_created": { + "type": 6, + "value": 1685234226998 + }, + "date_last_updated": { + "type": 6, + "value": 1685234226998 + }, + "date_of_expiration": { + "type": 6, + "value": 1685234226998 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIPAY", + "history_id": 1685234226998 + }, + "revision": "7be15ad1786c45da98c24ea0", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685234226998/description", + "content": { + "type": 5, + "value": "Compra de 10.000.000,00 IVIPAY por 1.000.000,00 IVIP estabilizando US$ 41,00", + "revision": "fb7159c66dcf427d8c395853", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685456788341/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685456788341, + "acquirer_reference": "", + "verification_code": 1685456788341, + "net_received_amount": 0, + "total_paid_amount": 10000000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "f28966db8b374723b35e3b34", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685456788341", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1000000, + "total_amount": 1000000, + "id": 1685456788341, + "date_created": { + "type": 6, + "value": 1685456788341 + }, + "date_last_updated": { + "type": 6, + "value": 1685456788341 + }, + "date_of_expiration": { + "type": 6, + "value": 1685456788341 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIP", + "history_id": 1685456788341 + }, + "revision": "4449a41412ca43389351190b", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685456788341/description", + "content": { + "type": 5, + "value": "Compra de 1.000.000,00 IVIP por 10.000.000,00 IVIPAY", + "revision": "86105eab79c24ce08d112dc6", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665895143/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685665895143, + "acquirer_reference": "", + "verification_code": 1685665895143, + "net_received_amount": 0, + "total_paid_amount": 1000000, + "overpaid_amount": 0, + "installment_amount": 1000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "00da2fe82d7d40e9a11c58fc", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665895143", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000000, + "total_amount": 1000000, + "id": 1685665895143, + "date_created": { + "type": 6, + "value": 1685665895143 + }, + "date_last_updated": { + "type": 6, + "value": 1685665895143 + }, + "date_of_expiration": { + "type": 6, + "value": 1748824295143 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685665895143 + }, + "revision": "0aa6bd528148400290d58282", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665895143/description", + "content": { + "type": 5, + "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", + "revision": "a4eecb1fdef649088ed73a4b", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665913616/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685665913616, + "acquirer_reference": "", + "verification_code": 1685665913616, + "net_received_amount": 0, + "total_paid_amount": 1000000, + "overpaid_amount": 0, + "installment_amount": 1000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "1f36d71c841b41d4a26d8005", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665913616", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000000, + "total_amount": 1000000, + "id": 1685665913616, + "date_created": { + "type": 6, + "value": 1685665913616 + }, + "date_last_updated": { + "type": 6, + "value": 1685665913616 + }, + "date_of_expiration": { + "type": 6, + "value": 1717288313616 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685665913616 + }, + "revision": "99ee3561a06a444f8ba51815", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665913616/description", + "content": { + "type": 5, + "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", + "revision": "b72049b2da234f4b9cf03a97", + "revision_nr": 1, + "created": 1702563036406, + "modified": 1702563036406 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665938582/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685665938582, + "acquirer_reference": "", + "verification_code": 1685665938582, + "net_received_amount": 0, + "total_paid_amount": 1844877, + "overpaid_amount": 0, + "installment_amount": 1844877, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "d8551ba21ba84ec7a69485e3", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665938582", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1844877, + "total_amount": 1844877, + "id": 1685665938582, + "date_created": { + "type": 6, + "value": 1685665938582 + }, + "date_last_updated": { + "type": 6, + "value": 1685665938582 + }, + "date_of_expiration": { + "type": 6, + "value": 1701477138582 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685665938582, + "wasDebited": true + }, + "revision": "69414ebccd124ec6baa588f1", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665938582/description", + "content": { + "type": 5, + "value": "Investimento de 1.844.877,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", + "revision": "cae5136f84094e068cc626f9", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665980650/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685665980650, + "acquirer_reference": "", + "verification_code": 1685665980650, + "net_received_amount": 0, + "total_paid_amount": 1000000, + "overpaid_amount": 0, + "installment_amount": 1000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "f572516e2f514b79957fdd5f", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665980650", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000000, + "total_amount": 1000000, + "id": 1685665980650, + "date_created": { + "type": 6, + "value": 1685665980650 + }, + "date_last_updated": { + "type": 6, + "value": 1685665980650 + }, + "date_of_expiration": { + "type": 6, + "value": 1688257980650 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685665980650 + }, + "revision": "7958ecfe72cb4428bdde6cf7", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665980650/description", + "content": { + "type": 5, + "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", + "revision": "d6a17b40636d4eef83bf97ba", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685743358755/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685743358755, + "acquirer_reference": "", + "verification_code": 1685743358755, + "net_received_amount": 0, + "total_paid_amount": 400, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "5dd293e31c574f0b879078cc", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685743358755", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1403508, + "total_amount": 1403508, + "id": 1685743358755, + "date_created": { + "type": 6, + "value": 1685743358755 + }, + "date_last_updated": { + "type": 6, + "value": 1685743358755 + }, + "date_of_expiration": { + "type": 6, + "value": 1685743358755 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685743358755, + "description": "Compra de 1.403.508,00 IVIP por 400,00 BRL" + }, + "revision": "8e35e9d0150348189b0b65f6", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686581106502/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "99583ca38b7d4a70af3436d6", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686581106502", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 250, + "total_amount": 250, + "history_id": 1686581106502, + "id": 1686581106502, + "date_created": { + "type": 6, + "value": 1686581106502 + }, + "date_last_updated": { + "type": 6, + "value": 1686583207910 + }, + "date_of_expiration": { + "type": 6, + "value": 1689173106502 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686583207910 + }, + "money_release_date": { + "type": 6, + "value": 1686583207910 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "1dfa6614ff284f35bfe32f81", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686581106502/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 250,00 para a carteira iVip 1181.6054.9969.9842-60", + "revision": "b2fdb618f71f48259eaf3265", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686597954870/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 3, + "payment_method_reference_id": 1686597954870, + "acquirer_reference": "", + "verification_code": 1686597954870, + "net_received_amount": 0, + "total_paid_amount": 220, + "overpaid_amount": 0, + "installment_amount": 220, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "37572a5daf4a4f7b9f3425b3", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686597954870", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": 1686597954870, + "contract_id": "1684625319623", + "date_created": { + "type": 6, + "value": 1686597954870 + }, + "date_last_updated": { + "type": 6, + "value": 1686597954870 + }, + "date_of_expiration": { + "type": 6, + "value": 1686597954870 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1686597954870 + }, + "revision": "8300b5a2eede4936a6685503", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686597954870/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", + "revision": "3966dbaf86e14a35a8175288", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1687313544975/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687313544975, + "acquirer_reference": "", + "verification_code": 1687313544975, + "net_received_amount": 0, + "total_paid_amount": 2000000, + "overpaid_amount": 0, + "installment_amount": 2000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "1d49403774a14d49a552ece6", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1687313544975", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 2000000, + "total_amount": 2000000, + "id": 1687313544975, + "date_created": { + "type": 6, + "value": 1687313544975 + }, + "date_last_updated": { + "type": 6, + "value": 1687313544975 + }, + "date_of_expiration": { + "type": 6, + "value": 1718935944975 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687313544975 + }, + "revision": "ac40cacc730144c199069956", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1687313544975/description", + "content": { + "type": 5, + "value": "Investimento de 2.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024", + "revision": "93b2bcfb1aa14a618e74f660", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400283150/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688400283150, + "acquirer_reference": "", + "verification_code": 1688400283150, + "net_received_amount": 0, + "total_paid_amount": 1000000, + "overpaid_amount": 0, + "installment_amount": 1000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "481f211a1d654a2781033a04", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400283150", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1020000, + "total_amount": 1020000, + "id": 1688400283150, + "date_created": { + "type": 6, + "value": 1688400283150 + }, + "date_last_updated": { + "type": 6, + "value": 1688400283150 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400283150 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688400283150, + "wasDebited": true + }, + "revision": "cdcb6f460248427cbd0bbd72", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400283150/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 1.000.000,00 IVIP com um rendimento de +20.000,00 IVIP (2,00%)", + "revision": "5f336bdad07c47d7bbfab851", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400827775/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688400827775, + "acquirer_reference": "", + "verification_code": 1688400827775, + "net_received_amount": 0, + "total_paid_amount": 3268385, + "overpaid_amount": 0, + "installment_amount": 3268385, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "8cb88f6078144b08a04948b7", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400827775", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 3268385, + "total_amount": 3268385, + "id": 1688400827775, + "date_created": { + "type": 6, + "value": 1688400827775 + }, + "date_last_updated": { + "type": 6, + "value": 1688400827775 + }, + "date_of_expiration": { + "type": 6, + "value": 1691079227775 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688400827775 + }, + "revision": "68f052123bd94886bfb1b1d1", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400827775/description", + "content": { + "type": 5, + "value": "Investimento de 3.268.385,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", + "revision": "6df0e1456aef4464809ba8ad", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689085555442/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "5ba08b980d484076ad5d9825", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689085555442", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1689085555442, + "id": 1689085555442, + "date_created": { + "type": 6, + "value": 1689085555442 + }, + "date_last_updated": { + "type": 6, + "value": 1689168403996 + }, + "date_of_expiration": { + "type": 6, + "value": 1691677555442 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689168403996 + }, + "money_release_date": { + "type": 6, + "value": 1689168403996 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "2a3c25ac8ed14d70958390cd", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689085555442/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1181.6054.9969.9842-60", + "revision": "ae30f3e0bf9f4603b335d8f3", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689168458989/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 3, + "payment_method_reference_id": 1689168458989, + "acquirer_reference": "", + "verification_code": 1689168458989, + "net_received_amount": 0, + "total_paid_amount": 220, + "overpaid_amount": 0, + "installment_amount": 220, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "48e4c5d7c2fd436ca3521539", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689168458989", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": 1689168458989, + "contract_id": "1684625319623", + "date_created": { + "type": 6, + "value": 1689168458989 + }, + "date_last_updated": { + "type": 6, + "value": 1689168458989 + }, + "date_of_expiration": { + "type": 6, + "value": 1689168458989 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1689168458989 + }, + "revision": "578d2a2088a24eb9ab3e138c", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689168458989/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", + "revision": "ec05b7145e104067a1c22b69", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691079300942/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1691079300942, + "acquirer_reference": "", + "verification_code": 1691079300942, + "net_received_amount": 0, + "total_paid_amount": 3268385, + "overpaid_amount": 0, + "installment_amount": 3268385, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "439d3bf87da34f91a78cb91b", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691079300942", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 3333752.7, + "total_amount": 3333752.7, + "id": 1691079300942, + "date_created": { + "type": 6, + "value": 1691079300942 + }, + "date_last_updated": { + "type": 6, + "value": 1691079300942 + }, + "date_of_expiration": { + "type": 6, + "value": 1691079300942 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1691079300942, + "wasDebited": true + }, + "revision": "81a0763972ae48a898fb0639", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691079300942/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 3.268.385,00 IVIP com um rendimento de +65.367,7 IVIP (2,00%)", + "revision": "9ab9e811ac3d41cea9800641", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691084485881/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691084485881, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1488875, + "installment_amount": 1488875, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "38661afbf31f4f33889309cd", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691084485881/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1691084485881", + "revision": "a1c6562f94a94c0ab5838e27", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691084485881", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 1488875, + "total_amount": 1488875, + "id": 1691084485881, + "history_id": 1691084485881, + "date_created": { + "type": 6, + "value": 1691084485881 + }, + "date_last_updated": { + "type": 6, + "value": 1691084485881 + }, + "date_of_expiration": { + "type": 6, + "value": 1693762885881 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "dd97b178751a4102a34a9d7d", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691084485881/description", + "content": { + "type": 5, + "value": "Investimento de 1.488.875,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", + "revision": "6203f3f336234900ab538f07", + "revision_nr": 1, + "created": 1702563036407, + "modified": 1702563036407 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694610080318 + } + }, + "revision": "19187c99f92b435281646b40", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692018080319, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 250, + "installment_amount": 250, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "c8d66403b7f54dea8d577e2a", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1692018080319", + "revision": "f33430d5436f44cd9fd17e7c", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 250, + "total_amount": 250, + "id": 1692018080319, + "history_id": 1692018080319, + "date_created": { + "type": 6, + "value": 1692018080319 + }, + "date_last_updated": { + "type": 6, + "value": 1692020547554 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1692020547554 + }, + "money_release_date": { + "type": 6, + "value": 1692020547554 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "b1ab4f4ee8784657a7b58188", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319/description", + "content": { + "type": 5, + "value": "Deposito de um valor 250,00 para a carteira iVip 1181.6054.9969.9842-60", + "revision": "e4c41338e7e54e5caa64789a", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692288719964/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 3, + "installments_payable": 2, + "payment_method_reference_id": 1692288719964, + "acquirer_reference": "", + "verification_code": 1692288719964, + "net_received_amount": 0, + "total_paid_amount": 220, + "overpaid_amount": 0, + "installment_amount": 220, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "ff3fe24c408f4ec8ace05642", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692288719964", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": 1692288719964, + "contract_id": "1684625319623", + "date_created": { + "type": 6, + "value": 1692288719964 + }, + "date_last_updated": { + "type": 6, + "value": 1692288719964 + }, + "date_of_expiration": { + "type": 6, + "value": 1692288719964 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1692288719964 + }, + "revision": "ad4ad0e8f1214acea8f676cc", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692288719964/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", + "revision": "fdce815f5a8e479eafadd5ad", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693763097865/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693763097865, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1488875, + "installment_amount": 1488875, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "c7a65cd2728b40489207154e", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693763097865/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1693763097865", + "revision": "d256b0ca7ac941a492c6864f", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693763097865", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 1518652.5, + "total_amount": 1518652.5, + "id": "1693763097865", + "history_id": "1693763097865", + "date_created": { + "type": 6, + "value": 1693763097865 + }, + "date_last_updated": { + "type": 6, + "value": 1693763097865 + }, + "date_of_expiration": { + "type": 6, + "value": 1693763097865 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "65e7311141334437a5900f15", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693763097865/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 1.488.875,00 IVIP com um rendimento de +29.777,5 IVIP (2,00%) - Y12XDT27", + "revision": "5165e1d4e23d4345aa0a90ef", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693915531936/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693915531936, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1487490, + "installment_amount": 1487490, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "29784d1dcfcb4877b24677b8", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693915531936/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1693915531936", + "revision": "11995eefa2704ef6b1843f62", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693915531936", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 1487490, + "total_amount": 1487490, + "id": "1693915531936", + "history_id": "1693915531936", + "date_created": { + "type": 6, + "value": 1693915531936 + }, + "date_last_updated": { + "type": 6, + "value": 1696424640989 + }, + "date_of_expiration": { + "type": 6, + "value": 1696507531936 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_staked_amount", + "money_release_date": { + "type": 6, + "value": 1696424640989 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "b525ba4c61574fe48a12f720", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693915531936/description", + "content": { + "type": 5, + "value": "Investimento de 1.487.490,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", + "revision": "7214f83b7ba1441db3b2ec81", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1696598496774 + } + }, + "revision": "db5d3dffc78d439d914ba110", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694006496775, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 220, + "installment_amount": 220, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "5da84bd1d1954a27a147e142", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1694006496775", + "revision": "9d47bb432e414cd68879d126", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 220, + "total_amount": 220, + "id": "1694006496775", + "history_id": "1694006496775", + "date_created": { + "type": 6, + "value": 1694006496775 + }, + "date_last_updated": { + "type": 6, + "value": 1694007160077 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1694007160077 + }, + "money_release_date": { + "type": 6, + "value": 1694007160077 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "1831f5f00e3b45da8d64b915", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775/description", + "content": { + "type": 5, + "value": "Deposito de um valor 220,00 BRL para a carteira iVip 1181.6054.9969.9842-60", + "revision": "4a6135b5f6824a3297fba941", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694572285717/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694572285717, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 220, + "installment_amount": 220, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 4, + "installments_payable": 1 + }, + "revision": "112b0661c06541a9b28c3a9c", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694572285717/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1694572285717", + "revision": "4c618c09c5c842cd87bc836c", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694572285717", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": "1694572285717", + "history_id": "1694572285717", + "date_created": { + "type": 6, + "value": 1694572285717 + }, + "date_last_updated": { + "type": 6, + "value": 1694572285717 + }, + "date_of_expiration": { + "type": 6, + "value": 1694572285717 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "a8a16d2b0ec1448783530509", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694572285717/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", + "revision": "f093ac52d12a497c90b221df", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081581090/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696081581090, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 40, + "installment_amount": 40, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "3d02052043914c83b0dbc3f8", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081581090/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696081581090", + "revision": "91222afa5af44b0a96dbe3ab", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081581090", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "118160549969984260", + "payment_method": "staking", + "original_amount": 40, + "total_amount": 40, + "id": "1696081581090", + "history_id": "1696081581090", + "date_created": { + "type": 6, + "value": 1696081581090 + }, + "date_last_updated": { + "type": 6, + "value": 1696081581090 + }, + "date_of_expiration": { + "type": 6, + "value": 1722347181089 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited" + }, + "revision": "8e736766a32647c0809fb162", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081581090/description", + "content": { + "type": 5, + "value": "Investimento de 40,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 30/07/2024 - D03OS92M", + "revision": "833822d296d74d7fa3d61ff9", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698673702609 + } + }, + "revision": "a9f62233d890488d83cd298e", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696081702609, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 225, + "installment_amount": 225, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "af1b4a4461b047bbb9058f13", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696081702609", + "revision": "2f6e51ce4af14b2fb66a0424", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "118160549969984260", + "payment_method": "whatsapp", + "original_amount": 225, + "total_amount": 225, + "id": "1696081702609", + "history_id": "1696081702609", + "date_created": { + "type": 6, + "value": 1696081702609 + }, + "date_last_updated": { + "type": 6, + "value": 1696085552609 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1696085552609 + }, + "money_release_date": { + "type": 6, + "value": 1696085552609 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "45dd0675d4f34689817136e2", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609/description", + "content": { + "type": 5, + "value": "Deposito de um valor 225,00 BRL para a carteira iVip 1181.6054.9969.9842-60", + "revision": "356bdc82a6e84576a7b1185d", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696085699487/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696085699487, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 220, + "installment_amount": 220, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 5, + "installments_payable": 0 + }, + "revision": "752e5f863ee843b1b240df68", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696085699487/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696085699487", + "revision": "3a21c79692f444adb3faac59", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696085699487", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "118160549969984260", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": "1696085699487", + "history_id": "1696085699487", + "date_created": { + "type": 6, + "value": 1696085699487 + }, + "date_last_updated": { + "type": 6, + "value": 1696085699487 + }, + "date_of_expiration": { + "type": 6, + "value": 1696085699487 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "b5e493cdb0224a36b231f580", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696085699487/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", + "revision": "74e4777a849845dc8fad13e9", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696349167615/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696349167615, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 31163, + "installment_amount": 31163, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "2f89e17526cb434f952cac94", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696349167615/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696349167615", + "revision": "199963f4ef2a4030bc076e06", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696349167615", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "118160549969984260", + "payment_method": "staking", + "original_amount": 31163, + "total_amount": 31163, + "id": "1696349167615", + "history_id": "1696349167615", + "date_created": { + "type": 6, + "value": 1696349167615 + }, + "date_last_updated": { + "type": 6, + "value": 1696349167615 + }, + "date_of_expiration": { + "type": 6, + "value": 1759507567614 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "2d786996b81a416ba3e0b814", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696349167615/description", + "content": { + "type": 5, + "value": "Investimento de 31.163,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 03/10/2025 - P9A02KSL", + "revision": "c9c88bbaaefa4636a680a791", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696462181596/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696462181596, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1487490, + "installment_amount": 1487490, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "ba66527e42e7486ab9919855", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696462181596/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696462181596", + "revision": "abddb055bf544c23a8362c68", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696462181596", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "118160549969984260", + "payment_method": "staking", + "original_amount": 1487490, + "total_amount": 1487490, + "id": "1696462181596", + "history_id": "1696462181596", + "date_created": { + "type": 6, + "value": 1696462181596 + }, + "date_last_updated": { + "type": 6, + "value": 1696462181596 + }, + "date_of_expiration": { + "type": 6, + "value": 1699140581513 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "0a125049e95942f3b79b0a2b", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696462181596/description", + "content": { + "type": 5, + "value": "Investimento de 1.487.490,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", + "revision": "31aa06a7071f47e8a75405a0", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history", + "content": { + "type": 1, + "value": {}, + "revision": "daa76cf6fe0b4b64a95a474c", + "revision_nr": 1, + "created": 1702563036408, + "modified": 1702563036408 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "2df09c6fd2fc465db52cafbf", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623", + "content": { + "type": 1, + "value": { + "id": 1684625319623, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": { + "type": 6, + "value": 1684625319623 + }, + "history_id": 1684625319623, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "71703115e71748559e67268b", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "a16ab3af3bab4082ab6b6524", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623/costs", + "content": { + "type": 2, + "value": {}, + "revision": "5673581d3b6b4b3aa6fa48e2", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "4807a93b430047158390032b", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "ec81ada32b934988838a78dc", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623", + "content": { + "type": 1, + "value": { + "id": 1684625319623, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": { + "type": 6, + "value": 1684625319623 + }, + "history_id": 1684625319623, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "743be4ad10c24364b56c41fd", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "5f6d1250fdb349d0b285eeac", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623/costs", + "content": { + "type": 2, + "value": {}, + "revision": "db722f4a3d7149a6bbef07dd", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "51ceb02ad0624e10bedcfd77", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "f8025eee32374d758394d84f", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623", + "content": { + "type": 1, + "value": { + "id": 1684625319623, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": { + "type": 6, + "value": 1684625319623 + }, + "history_id": 1684625319623, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "1b600cc9c06e43d1bf95152e", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "a2c335949e744ef6a9093c3e", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623/costs", + "content": { + "type": 2, + "value": {}, + "revision": "20b1c2e08a2f45ae8a99dec9", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308", + "content": { + "type": 1, + "value": {}, + "revision": "6f2f8eb6982f43a0af0473a2", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "f159b31fc55c4fbb8bdc7f66", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623", + "content": { + "type": 1, + "value": { + "id": 1684625319623, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": { + "type": 6, + "value": 1684625319623 + }, + "history_id": 1684625319623, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1694572285736 + } + }, + "revision": "b1f98bc248a242e691953a03", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "81831a8bace446aebf68e814", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623/costs", + "content": { + "type": 2, + "value": {}, + "revision": "3063c27ee10d4d98b38cb892", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309", + "content": { + "type": 1, + "value": {}, + "revision": "238bacd848704c42ba860308", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "dde70b49af2641bab1c7736b", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623", + "content": { + "type": 1, + "value": { + "id": 1684625319623, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": { + "type": 6, + "value": 1684625319623 + }, + "history_id": 1684625319623, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1696085699499 + } + }, + "revision": "58c7ce06f6a0481b85a39670", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "5e93c37b338f492591026819", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623/costs", + "content": { + "type": 2, + "value": {}, + "revision": "9b4829079ff74e0d90d6c5f1", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310", + "content": { + "type": 1, + "value": {}, + "revision": "53473650933e45a6bcda0110", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "45c586ade1a9424badb8dbf2", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 1000, + "limitUsed": 400, + "analysisRequested": { + "type": 6, + "value": 1684618378558 + }, + "lastReview": { + "type": 6, + "value": 1684618429410 + } + }, + "revision": "79f44c193939494f8a18a3d0", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684492261254, + "dateValidity": 1684492261254, + "totalValue": 1371.271, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } + }, + "revision": "1951e2ef966343fdb8e3e391", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/120996359783253070/balances", + "content": { + "type": 1, + "value": {}, + "revision": "98c744d3e5e2462ba727136a", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/120996359783253070/history", + "content": { + "type": 1, + "value": {}, + "revision": "cc027b20cc79456dab55c482", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/120996359783253070", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678148092390, + "dateValidity": 1678198916837, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "191ac6c2ec2a458996cb41b1", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "9.00000000", + "symbol": "BRL", + "value": 1.74 + }, + "revision": "9d94d00aaf5449b0931f23d8", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "443235.00000000", + "symbol": "IVIP", + "value": 70.34 + }, + "revision": "49d3e0e8faac4fa48ea895e8", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/balances", + "content": { + "type": 1, + "value": {}, + "revision": "b38fd67ebac74eaf9c3c7481", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684273040978/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "d8edff55282b4b6c92a26c8a", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684273040978", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1684273040978, + "id": 1684273040978, + "date_created": { + "type": 6, + "value": 1684273040978 + }, + "date_last_updated": { + "type": 6, + "value": 1684331134751 + }, + "date_of_expiration": { + "type": 6, + "value": 1686865040978 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684331134751 + }, + "money_release_date": { + "type": 6, + "value": 1684331134751 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "13a829d0940d4f1eb5218a11", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684273040978/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1218.4763.4268.5788-20", + "revision": "97958fabbf1a48b49bbafcdb", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624212629/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624212629, + "acquirer_reference": "", + "verification_code": 1684624212629, + "net_received_amount": 0, + "total_paid_amount": 20.09, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "ac1b7e71a5e948cd8f984aff", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624212629", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 97852, + "total_amount": 97852, + "id": 1684624212629, + "date_created": { + "type": 6, + "value": 1684624212629 + }, + "date_last_updated": { + "type": 6, + "value": 1684624212629 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624212629 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624212629, + "description": "Compra de 97.852,00 IVIP por 20,09 BRL" + }, + "revision": "ec35f9dab60c41ac9a7eb79b", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624265601/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624265601, + "acquirer_reference": "", + "verification_code": 1684624265601, + "net_received_amount": 0, + "total_paid_amount": 70.91, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "e7a8d17dbd404ddbb1bb1406", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624265601", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 345383, + "total_amount": 345383, + "id": 1684624265601, + "date_created": { + "type": 6, + "value": 1684624265601 + }, + "date_last_updated": { + "type": 6, + "value": 1684624265601 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624265601 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624265601, + "description": "Compra de 345.383,00 IVIP por 70,91 BRL" + }, + "revision": "9a22e67451524c30bb69f387", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1696563980031/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696563980031, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "21282c5cb9f64364980b5573", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1696563980031/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/121847634268578820/history/1696563980031", + "revision": "60eb625b08fb4f4f90120eb6", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1696563980031", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "121847634268578820", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": "1696563980031", + "history_id": "1696563980031", + "date_created": { + "type": 6, + "value": 1696563980031 + }, + "date_last_updated": { + "type": 6, + "value": 1696563980031 + }, + "date_of_expiration": { + "type": 6, + "value": 1699242379931 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "4b525baa87b84d39a63494b7", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1696563980031/description", + "content": { + "type": 5, + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", + "revision": "9c7ad489b46b488fb8af6e7d", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history", + "content": { + "type": 1, + "value": {}, + "revision": "cac2457202744c259e40fa39", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "1d55477933fd452ca95c8b85", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "dc530e65d199494da14f8090", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684189916126, + "dateValidity": 1684189916126, + "totalValue": 20.09, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } + }, + "revision": "5803372df8ec4a1f938af8b9", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/balances", + "content": { + "type": 1, + "value": {}, + "revision": "4d306969795548c3843d5046", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693581922792 + } + }, + "revision": "a55f0758570044ad966c3b94", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690989922793, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "e605759a0e4b46f9a290aeff", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1690989922793", + "revision": "587d26092a96466faaeb28f4", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "id": 1690989922793, + "history_id": 1690989922793, + "date_created": { + "type": 6, + "value": 1690989922793 + }, + "date_last_updated": { + "type": 6, + "value": 1691006114626 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1691006114626 + }, + "money_release_date": { + "type": 6, + "value": 1691006114626 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "02410dae46c04cd6af288da6", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793/description", + "content": { + "type": 5, + "value": "Deposito de um valor 100,00 para a carteira iVip 1227.6483.0599.8103-50", + "revision": "7b8a56b3a3434a61b4f80929", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006310448/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691006310448, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "9fd27754902e455e9feab018", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006310448/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691006310448", + "revision": "e733164aff8945fa87f681b7", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006310448", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 108815, + "total_amount": 108815, + "id": 1691006310448, + "history_id": 1691006310448, + "date_created": { + "type": 6, + "value": 1691006310448 + }, + "date_last_updated": { + "type": 6, + "value": 1691006310448 + }, + "date_of_expiration": { + "type": 6, + "value": 1691006310448 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 108.815,00 IVIP por 100,00 BRL", + "status_detail": "accredited" + }, + "revision": "cea8a88e9d45480fa5dbe563", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006485984/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691006485984, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 108815, + "installment_amount": 108815, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "7ad964ab16264c328bf3f46d", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006485984/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691006485984", + "revision": "45896f57946b4e3d956ee056", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006485984", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 108815, + "total_amount": 108815, + "id": 1691006485984, + "history_id": 1691006485984, + "date_created": { + "type": 6, + "value": 1691006485984 + }, + "date_last_updated": { + "type": 6, + "value": 1691006485984 + }, + "date_of_expiration": { + "type": 6, + "value": 1754164885917 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "467f4f0a00d74e269343c0e5", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006485984/description", + "content": { + "type": 5, + "value": "Investimento de 108.815,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 8/2/2025", + "revision": "ae634e2e5a5e4166971fa359", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694177260996 + } + }, + "revision": "b0d29ef5ec0544e1a3071e36", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691585260996, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50, + "installment_amount": 50, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "174c13edc85f4f6588eae84b", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691585260996", + "revision": "08b6a887e8ae4bf09453773f", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "id": 1691585260996, + "history_id": 1691585260996, + "date_created": { + "type": 6, + "value": 1691585260996 + }, + "date_last_updated": { + "type": 6, + "value": 1691589440313 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1691589440313 + }, + "money_release_date": { + "type": 6, + "value": 1691589440313 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "bea5f1770a8e419fae7f8cb3", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996/description", + "content": { + "type": 5, + "value": "Deposito de um valor 50,00 para a carteira iVip 1227.6483.0599.8103-50", + "revision": "959270058f564e5aa5734a2f", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589566120/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691589566120, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50, + "installment_amount": 50, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "b2d6b1c3c63549b0874ab4f5", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589566120/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691589566120", + "revision": "6f17ebf394ce483899701055", + "revision_nr": 1, + "created": 1702563036409, + "modified": 1702563036409 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589566120", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 76363, + "total_amount": 76363, + "id": 1691589566120, + "history_id": 1691589566120, + "date_created": { + "type": 6, + "value": 1691589566120 + }, + "date_last_updated": { + "type": 6, + "value": 1691589566120 + }, + "date_of_expiration": { + "type": 6, + "value": 1691589566120 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 76.363,00 IVIP por 50,00 BRL", + "status_detail": "accredited" + }, + "revision": "fb85c62224f44dcebf2cd27e", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589908652/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691589908652, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20000, + "installment_amount": 20000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "c85480e6e2454bb4ae778dd7", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589908652/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691589908652", + "revision": "9ecac1971e6444108630f6e0", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589908652", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 20000, + "total_amount": 20000, + "id": 1691589908652, + "history_id": 1691589908652, + "date_created": { + "type": 6, + "value": 1691589908652 + }, + "date_last_updated": { + "type": 6, + "value": 1691589908652 + }, + "date_of_expiration": { + "type": 6, + "value": 1694268308648 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "2013d1cb20d54c24bd1357fd", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589908652/description", + "content": { + "type": 5, + "value": "Investimento de 20.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/9/2023", + "revision": "62b32a07bce8476199fd8c0e", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694268632615/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694268632615, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20000, + "installment_amount": 20000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "a479d4b4bb394060bc4bf693", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694268632615/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694268632615", + "revision": "45edcfe28615400cb2ecb390", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694268632615", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 20400, + "total_amount": 20400, + "id": "1694268632615", + "history_id": "1694268632615", + "date_created": { + "type": 6, + "value": 1694268632615 + }, + "date_last_updated": { + "type": 6, + "value": 1694268632615 + }, + "date_of_expiration": { + "type": 6, + "value": 1694268632615 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "a4849728611341ea8e8c0b1f", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694268632615/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 20.000,00 IVIP com um rendimento de +400,00 IVIP (2,00%) - Y12XDT27", + "revision": "7aaa99ad16994cbc8e31ac58", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694304834658/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694304834658, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 63131, + "installment_amount": 63131, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "4ff2b21867074d39a3643aa2", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694304834658/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694304834658", + "revision": "5946a6e296024f2ba4582258", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694304834658", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 63131, + "total_amount": 63131, + "id": "1694304834658", + "history_id": "1694304834658", + "date_created": { + "type": 6, + "value": 1694304834658 + }, + "date_last_updated": { + "type": 6, + "value": 1696462319684 + }, + "date_of_expiration": { + "type": 6, + "value": 1696896834657 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_staked_amount", + "money_release_date": { + "type": 6, + "value": 1696462319684 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "68642b9074584b7db325dcb8", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694304834658/description", + "content": { + "type": 5, + "value": "Investimento de 63.131,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 09/10/2023 - Y12XDT27", + "revision": "a1bcb02755ed4b90a57fc8c5", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697308841417 + } + }, + "revision": "f30c7f90012a4ceba559008e", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694716841418, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "7c2ed88e1bb341dda0948999", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694716841418", + "revision": "5c603b2176584d3b8eff75c5", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": "1694716841418", + "history_id": "1694716841418", + "date_created": { + "type": 6, + "value": 1694716841418 + }, + "date_last_updated": { + "type": 6, + "value": 1694718639334 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1694718639334 + }, + "money_release_date": { + "type": 6, + "value": 1694718639334 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "58a649b616d44f1888eec2e9", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418/description", + "content": { + "type": 5, + "value": "Deposito de um valor 20,00 BRL para a carteira iVip 1227.6483.0599.8103-50", + "revision": "bf28e462550b4eaabd02545c", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694723873975/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694723873975, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "61be461e3fc2410a8fd66a51", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694723873975/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694723873975", + "revision": "eec7b6caa4e14a92a1f24093", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694723873975", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 22823, + "total_amount": 22823, + "id": "1694723873975", + "history_id": "1694723873975", + "date_created": { + "type": 6, + "value": 1694723873975 + }, + "date_last_updated": { + "type": 6, + "value": 1694723873975 + }, + "date_of_expiration": { + "type": 6, + "value": 1694723873975 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 22.823,00 IVIP por 20,00 BRL", + "status_detail": "accredited" + }, + "revision": "aa7fa31874e340c785c10570", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697477737888 + } + }, + "revision": "ce810cddbb5242d39d682b90", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694885737888, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 28.17, + "installment_amount": 28.17, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "9bde735309bb43969f7a6f75", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694885737888", + "revision": "9d2b670f1c7a401983123f6a", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 28.17, + "total_amount": 28.17, + "id": "1694885737888", + "history_id": "1694885737888", + "date_created": { + "type": 6, + "value": 1694885737888 + }, + "date_last_updated": { + "type": 6, + "value": 1694885737888 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "c1bb0c71968d4a14a1789ccd", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888/description", + "content": { + "type": 5, + "value": "Deposito de um valor 28,17 BRL para a carteira iVip 1227.6483.0599.8103-50", + "revision": "7539f1cfa6334ce480189b92", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697743250157 + } + }, + "revision": "1cca575fd02a470cace13c6f", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695151250157, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 29370, + "installment_amount": 29370, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "5643841b397d4d9bb5bbb07a", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695151250157", + "revision": "9516ca66432047d6aab9abb7", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 29370, + "total_amount": 29370, + "id": "1695151250157", + "history_id": "1695151250157", + "date_created": { + "type": 6, + "value": 1695151250157 + }, + "date_last_updated": { + "type": 6, + "value": 1695156966903 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1695156966903 + }, + "money_release_date": { + "type": 6, + "value": 1695156966903 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "ab5b08c45896436bb8182ff9", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157/description", + "content": { + "type": 5, + "value": "Deposito de um valor 29.370,00 IVIP para a carteira iVip 1227.6483.0599.8103-50", + "revision": "909bd7f92e714dc499bfca40", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695152833307/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695152833307, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 36455, + "installment_amount": 36455, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "05ab55a6cfe043c982447ca5", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695152833307/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695152833307", + "revision": "4a64702d4fc841c7b9915d01", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695152833307", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 36455, + "total_amount": 36455, + "id": "1695152833307", + "history_id": "1695152833307", + "date_created": { + "type": 6, + "value": 1695152833307 + }, + "date_last_updated": { + "type": 6, + "value": 1695678283636 + }, + "date_of_expiration": { + "type": 6, + "value": 1710877633306 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_staked_amount", + "money_release_date": { + "type": 6, + "value": 1695678283636 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "3870696c271a48bf93db8b64", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695152833307/description", + "content": { + "type": 5, + "value": "Investimento de 36.455,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H", + "revision": "dfd73a9e848b49598638eed1", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695158486667/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695158486667, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 29370, + "installment_amount": 29370, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "08ccd393f23f4e9cb5f04adc", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695158486667/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695158486667", + "revision": "e3e2d0f7213440118af4f767", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695158486667", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 29370, + "total_amount": 29370, + "id": "1695158486667", + "history_id": "1695158486667", + "date_created": { + "type": 6, + "value": 1695158486667 + }, + "date_last_updated": { + "type": 6, + "value": 1695678321877 + }, + "date_of_expiration": { + "type": 6, + "value": 1726780886665 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_staked_amount", + "money_release_date": { + "type": 6, + "value": 1695678321877 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "76d4f972264441808c26b81f", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695158486667/description", + "content": { + "type": 5, + "value": "Investimento de 29.370,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 19/09/2024 - CLSMJY90", + "revision": "1000d26e47f04ac898dba923", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1696466013923/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696466013923, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 128956, + "installment_amount": 128956, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "83850ffe1baf418d9be2b969", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1696466013923/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1696466013923", + "revision": "b9e641f2da97449d83783b91", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1696466013923", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "122764830599810350", + "payment_method": "staking", + "original_amount": 128956, + "total_amount": 128956, + "id": "1696466013923", + "history_id": "1696466013923", + "date_created": { + "type": 6, + "value": 1696466013923 + }, + "date_last_updated": { + "type": 6, + "value": 1696466013923 + }, + "date_of_expiration": { + "type": 6, + "value": 1699144413853 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "d9b69bd0d06a4f0a811045e1", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1696466013923/description", + "content": { + "type": 5, + "value": "Investimento de 128.956,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", + "revision": "5439c413bb0149b1ac886503", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history", + "content": { + "type": 1, + "value": {}, + "revision": "0791c94997b2453aa12a40cf", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "7bc9e9a6f8a74e50a3d88c0d", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "b13051660b9f45ba8052759a", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350", + "content": { + "type": 1, + "value": { + "dataModificacao": 1690989855646, + "dateValidity": 1690989855726, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } + }, + "revision": "fbfaa0b7fa32400c909ffb14", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "7503835.00000000", + "symbol": "IVIP", + "value": 789.35 + }, + "revision": "4fa8ce41bdb14dd7bc5c71af", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/balances", + "content": { + "type": 1, + "value": {}, + "revision": "d14be903dd8447c6b4521c86", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 1.00%", + "amount": 5 + }, + "revision": "6a64b2d3e2774e04a5270fec", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "6e1cd33f46f941d296c924ee", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "16470419e82643caaa96715b", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "5d9c07adca8e4e2b84ea9d24", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 505, + "overpaid_amount": 0, + "installment_amount": 0 + }, + "revision": "0586a2fbc2b94f18ae46298c", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/ticket_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/payments/55900907390/ticket?caller_id=1310149122&hash=b46698ba-1661-4287-87f2-802c80f36c71", + "revision": "90058643a815406ea77942db", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/qr_code", + "content": { + "type": 5, + "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406505.005802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter559009073906304E54F", + "revision": "dc1de5780f744075a6fd8430", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/qr_code_base64", + "content": { + "type": 5, + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI3UlEQVR42u3dUY7jNgwGYN3A97+lbqAC7WITi7+UdFsUXevLw2BmYkuf/UaQItv4jT690dLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tL++9o2f64f//vx7fXzkuvnHddfi7Tpt9dt79fdNvrz4h8/Rrl3YtDS0tLS0tLS0tLS0h6indasqNfq7yv19wcq5P6+83Tx68f7bQsGLS0tLS0tLS0tLS3tEdr3AHIyTtAX5bXZ9AS9xeRhWmDatzBoaWlpaWlpaWlpaWmP1Y57nPjaZ5RYb4oTp6xd/rPGk7S0tLS0tLS0tLS0tLQt3TqRX3FiobR7Ou/2uClbOF1MS0tLS0tLS0tLS0t7tjbj07ZVNq0+/ZYeY3PE7ldqRGlpaWlpaWlpaWlpaX937WLv//rHP+ipQktLS0tLS0tLS0tL+ztr958SVKbiyikcrCWam1UWR+fue9DS0tLS0tLS0tLS0j5buyia3FRi3u7dx6KlTnNqOjnClIBNdo+WlpaWlpaWlpaWlvZ52tRTfwr9Xp6prWQpuGzhi15qLV8vaDocl5v809LS0tLS0tLS0tLSPltbAC142uc/P0aW03uYNk8T2GhpaWlpaWlpaWlpaU/Ublo+jk0OrlRdXuF/y6rLOlB7W3VJS0tLS0tLS0tLS0v7KG1qzz+Fg+WLser5P8JEgF54OW9Yw1BaWlpaWlpaWlpaWtpDtK0cV0tJvLRw7k2yGIBd3kMPT5/xtLS0tLS0tLS0tLS0z9ZO46db6eeYz7ZNHUna/XGXSby+maX99dk9WlpaWlpaWlpaWlraB2lzhq7duz32kMnrIca8cjOS8kau/JZSsxRaWlpaWlpaWlpaWtpztMviyuIepelkplylHHOaIVDqPkdw09LS0tLS0tLS0tLSPl07Nq39U8f9svdVEoCpCDMXZvYw263teqrQ0tLS0tLS0tLS0tI+Tbtppz9ycFd4U9FkyyMApi2X1Zlfz4ajpaWlpaWlpaWlpaV9hnbZRuRThu4q3frTPOw8EWB6tBGSgrS0tLS0tLS0tLS0tIdpdyfVcjFkjQlLFLk4XZfzgVOyj5aWlpaWlpaWlpaW9hzt2IZ+S9kojf/zoy3yfOlIXH4jtLS0tLS0tLS0tLS0T9f27cG1EXpBVsr7dWMzKmBZsbkJV2lpaWlpaWlpaWlpaZ+uHe/JuU3BZSvdR0oEOkozkoJvYQxbDSo/xLy0tLS0tLS0tLS0tLQP0qaWj2ls2nTHMnX3aYE0261mBmlpaWlpaWlpaWlpac/RptBvGQQuY8cpFi0D1K5Qsbn8s3/I7tHS0tLS0tLS0tLS0j5KW8odF1HfVBGZYseUBdyEoa30JslzBWhpaWlpaWlpaWlpaZ+u3e94rQouez4rV+LOXf6uaOs7pKWlpaWlpaWlpaWlPUJbPtPqqaFI7eBfnm95nO5aVXvWzWlpaWlpaWlpaWlpaZ+vTZPVFmWW0+o5REy5v/0ct2V4SUtLS0tLS0tLS0tLe4r203Dq21G3gr9Kt/5y/K1vJmOnTv+0tLS0tLS0tLS0tLTHasv/Uv6urYav1YLLzfG32pFkuo2WlpaWlpaWlpaWlvYI7bL+chlFTtm9VFKZjrqlcHVfsUlLS0tLS0tLS0tLS3uEtsh6PJC2WLOFrv4jVFN+cUdqHElLS0tLS0tLS0tLS3uANt1QTsP1+z4pErzCxLRbQLoMV3PnkouWlpaWlpaWlpaWlvYY7VhVRNZL9vhkLLddIXpNv9HS0tLS0tLS0tLS0p6j7ZvyyXLy7Sr9RVL3kem3slvtXFIWHbS0tLS0tLS0tLS0tMdoxyZ2zOWT1yp2vFbavnqCvgolaWlpaWlpaWlpaWlpT9FOQdvUWiRfUhN2UxD41VC1VOOZtqSlpaWlpaWlpaWlpT1AWzqI1ALJokh1mv0eNvb7ZLXF4bgUwtLS0tLS0tLS0tLS0p6ozaOwF4WUm0Nvo+T+Unya8O/L09LS0tLS0tLS0tLSnqNt4XzaFZbrOZRMJZpf4ds27qSlpaWlpaWlpaWlpT1F+37tKAFkif96blqSk3g1UVj26KtVaGlpaWlpaWlpaWlpz9H2MgV7SrVN5MmzHHa9LNacXlAuwhy0tLS0tLS0tLS0tLSHaL844FbajaTayFE8qZ4zj8eevr2+PrtHS0tLS0tLS0tLS0v7HG25oqXQrwSGtV3k+wIJX5/5c1BJS0tLS0tLS0tLS0v7ZO0X06hTni/9SKfmVgPU5iNxpfTyoqWlpaWlpaWlpaWlPUY77ifQFq0cywC1NCyth/TgyFWXuVizjmajpaWlpaWlpaWlpaU9QpsrLFOGboon02fxaCXtt2jyv626pKWlpaWlpaWlpaWlfZ62RG59M0/tfbm88HxHSd2ladkjdKgctLS0tLS0tLS0tLS0h2iXMdw+EZdiwvLFwrh8Bekd0tLS0tLS0tLS0tLSPl1bwsGe56Sl2sgSbY77+bmeU4GpjX8JYWlpaWlpaWlpaWlpaQ/TtlV/yNZqyHndizX39Zcty/ahJC0tLS0tLS0tLS0t7Tna9Nk0f+z3SLCHBGAqx0xFnVeIVOu7oaWlpaWlpaWlpaWlfbp22WRkGfotuz2WYs22fbSem1N+GfPS0tLS0tLS0tLS0tI+R3uFAHLqNJI+PWfjUnHlp2aSfyeKpKWlpaWlpaWlpaWlfaQ21VqmwdbpgFupnGylGUl5oKtMYFvGp7S0tLS0tLS0tLS0tGdqF/m2NPa6hINpZtu1qbrMY91oaWlpaWlpaWlpaWmP15Z9anYvdfXP4eAUfH5XwElLS0tLS0tLS0tLS3uONq/USkXkVBZZqjPT7Otrcy4unbP7tdNwtLS0tLS0tLS0tLS0v7G2Fj7mQ2qLwdZ5IFvlLedcv7+CXt4SLS0tLS0tLS0tLS3t07X//w8tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t7b+m/QNO7FsdSE0lWQAAAABJRU5ErkJggg==", + "revision": "9258f20d2e9f4551a2211cb1", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "b75586fce1114ed3a9bff1d4", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 500, + "total_amount": 505, + "history_id": 1679152509855, + "id": 55900907390, + "date_created": { + "type": 6, + "value": 1679152510620 + }, + "date_last_updated": { + "type": 6, + "value": 1679153713000 + }, + "date_of_expiration": { + "type": 6, + "value": 1679238910378 + }, + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679153713000 + }, + "money_release_date": { + "type": 6, + "value": 1679153713000 + }, + "wasDebited": true + }, + "revision": "b9ddd92fe7d540aca9792555", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30", + "revision": "7a0935a9eedc40d2bd2a2c90", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679153875722/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "2cb75093db7748a794a4187e", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679153875722", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 505, + "total_amount": 505, + "history_id": 1679153875722, + "id": 1679153875722, + "date_created": { + "type": 6, + "value": 1679153875722 + }, + "date_last_updated": { + "type": 6, + "value": 1679153875722 + }, + "date_of_expiration": { + "type": 6, + "value": 1681745875722 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "6c5a0d78094f4945a6a3f3f6", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679153875722/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 505,00 para a carteira iVip 1251.9390.3817.0948-30", + "revision": "4f5e7d9049e4437381efd595", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679154208055/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "b498f236294e4432aaa2bae0", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679154208055", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 505, + "total_amount": 505, + "history_id": 1679154208055, + "id": 1679154208055, + "date_created": { + "type": 6, + "value": 1679154208055 + }, + "date_last_updated": { + "type": 6, + "value": 1679154208055 + }, + "date_of_expiration": { + "type": 6, + "value": 1681746208055 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "6559ec2b6c2646f783a27e3d", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679154208055/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 505,00 para a carteira iVip 1251.9390.3817.0948-30", + "revision": "6b3edafef05b484cbeeabb21", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "864a029bba9644f6823a475a", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490/details", + "content": { + "type": 1, + "value": {}, + "revision": "88bc99d47582427eb19f10e6", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "326ebf2619d949d9852dc1b2", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "history_id": 1679263150490, + "id": 1679263150490, + "date_created": { + "type": 6, + "value": 1679263150490 + }, + "date_last_updated": { + "type": 6, + "value": 1679263150490 + }, + "date_of_expiration": { + "type": 6, + "value": 1681855150490 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "c8d3a588a99240c3bbf1d15d", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "d130ac792e844189a1b03921", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679266956838/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679266956838, + "acquirer_reference": "", + "verification_code": 1679266956838, + "net_received_amount": 0, + "total_paid_amount": 2000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "df6cb2b10845447a80aa2c66", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679266956838", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 11643076, + "total_amount": 11643076, + "id": 1679266956838, + "date_created": { + "type": 6, + "value": 1679266956838 + }, + "date_last_updated": { + "type": 6, + "value": 1679266956838 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266956838 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679266956838, + "description": "Compra de 11643076 IVIP por 2000 BRL" + }, + "revision": "46678c0423d2491597a6058e", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 1.00%", + "amount": 15 + }, + "revision": "5df9ab6a693e4dcc9960cb71", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "34d846f31bec40ffa72cc1de", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, + "revision": "12c120bd5c4c4bebbc9e9d09", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "27e3fe82d3a94cd08ccff0d2", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 1515, + "overpaid_amount": 0, + "installment_amount": 0 + }, + "revision": "d00112cabf874379b97f2b2c", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/qr_code", + "content": { + "type": 5, + "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654071515.005802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter131358707763045A2A", + "revision": "3b19098032a14452ac2834e6", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/ticket_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/sandbox/payments/1313587077/ticket?caller_id=1310149122&hash=b6d8c471-76bc-44da-bf9f-76b5ae753314", + "revision": "ec701ccf4a26472582c060da", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/qr_code_base64", + "content": { + "type": 5, + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIxUlEQVR42u3dS24sKRAFUHbA/neZO6DVE7uSuJC29NTql5wcWLarCg41C8WHNv6i52q0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9e2+an//u//vVCD+/7/t/t1X8Xbt+/3Xe8vXB9rXJ9bVkZtLS0tLS0tLS0tLS0h2j757Kfi7SvHa+y2Oe20+rjftzWWn5h0iYGLS0tLS0tLS0tLS3tKdopgCwxZi/H+P7YFAl+LjrFmCO8ZRG40tLS0tLS0tLS0tLS0s4LT3m5DF1Gm2PzFdDS0tLS0tLS0tLS0tLGaC7FfyX3l4omezlf+jHl/mhpaWlpaWlpaWlpac/WJnwqqSyUkbvmSiPcRNk11v26RpSWlpaWlpaWlpaWlvZv105PSrr9Fz8qg5aWlpaWlpaWlpaW9ghtftKUkp6njyyjyBJ83tKD3ys/W2hpaWlpaWlpaWlpad+tTS1sYzPjMeX+Svy36JqbTj812+VkHy0tLS0tLS0tLS0t7bu1U/vbZ8/a2M54bE+DI5/qOWvtZo4saWlpaWlpaWlpaWlp362dXky3rZUDlTCv5VvUUjpvbMjP3XC0tLS0tLS0tLS0tLSv1V5hGEldczKmUSXt+ZnGT+6PRktLS0tLS0tLS0tL+35tLb0s+DTIpLW4Sknn9fCW1F3X8zdHS0tLS0tLS0tLS0v7dm2J60a4O60VfIkdpwrL1BzXSspw+qoKlJaWlpaWlpaWlpaW9gBtqrWcMm/Lt5S9p+gwJQUXZykRbaelpaWlpaWlpaWlpT1Le9t7H1TmVGCtoSxHu5VyljxfW4WStLS0tLS0tLS0tLS0b9dO4/l7TvtNKb7SCFc3S1cApHGROcakpaWlpaWlpaWlpaU9Rbu562y6CntqZltUSeaYsAVtmur/XCNKS0tLS0tLS0tLS0v7Nm1pa2sh3zZRegg+02/1Hre0wNNXQEtLS0tLS0tLS0tL+25tKrgsP1Lp5dj2saUL1GoomUovaWlpaWlpaWlpaWlpz9T2kpfLJ6jFmvtXS3Hl4n62H1dd0tLS0tLS0tLS0tLSvk37WfOYoshbTi+dJX227DjC3QATvgcoLS0tLS0tLS0tLS3tAdrp858fWGbe2r3gcrltC4FmHReZj9tpaWlpaWlpaWlpaWlP0uY03dVidWa5T20U7eazLaQCR+69o6WlpaWlpaWlpaWlPUKbP5Xm+48QY44QXvYckOaPjXLwQqalpaWlpaWlpaWlpT1AmxQ/OEsJJcc9IJ0+ews5U1Iwb05LS0tLS0tLS0tLS3uOtowHaSmKLP1uV7n7Or9lcl8h2feb29ZoaWlpaWlpaWlpaWnfor3KtqV7rd1jvZFvUfv8s+UxJ+mqgNQDt54eSUtLS0tLS0tLS0tL+zbtBCjx5OJy6rZ9cjVlz8m+tC8tLS0tLS0tLS0tLe1J2kWIuOyBKym+Vo6Rkng/iBhzxSYtLS0tLS0tLS0tLe27tVO9ZJngvwwl64656jJNPembaZTbKJKWlpaWlpaWlpaWlvaN2rHZO//Zwsj+dLv1op1uWbGZ0oi0tLS0tLS0tLS0tLTv116ryslpUH/LCy8jxpKru0qHXP5so6WlpaWlpaWlpaWlPU5bqh/rVMhcp1mPtprM3z5PsIhek4WWlpaWlpaWlpaWlvb92nGXLeLJMpl/QZ7+l05QIsbabEdLS0tLS0tLS0tLS3uiNk8pSWHefox/OlrfjPZPCUBaWlpaWlpaWlpaWtpztBMqdb6V6SP9noibetvafap/zf0l9xRZ3r9IWlpaWlpaWlpaWlra12tzTDhWN6ZNb9ll91IomWo8N4WetLS0tLS0tLS0tLS079amqsuS9mu5YW5qk5uWSqWcm5EmKVKlpaWlpaWlpaWlpaU9QnuVhrT0v1/dojYVUqagspzvhzWitLS0tLS0tLS0tLS0b9OWHFwrfXHLGLMMI9nxylI9R68lNKWlpaWlpaWlpaWlpT1AWwofa4RXeuAWRZMb/CZ/V8ec0NLS0tLS0tLS0tLSnqKddpy63KZgMe/Tw1lavqktJwp7+dK2NaK0tLS0tLS0tLS0tLSv0paF04513Eiqklz2yk03qz1FqoOWlpaWlpaWlpaWlvZUbdtUP24630YIKlsYVdJztrA8nZaWlpaWlpaWlpaW9kBtSr+lt0zXprUyy3/Ep9ZVbsf4P90NR0tLS0tLS0tLS0tL+15tuk+tFGb2VQRar00royFTsm/ky7hpaWlpaWlpaWlpaWmP0Oaax5pqKz1rt7ekS9UKL838H+F8g5aWlpaWlpaWlpaW9izteOp8K1tcgdxCsNg2U0o2i3ZaWlpaWlpaWlpaWtqztI8j9qcOuRafdHfalfvsUnPc5qGlpaWlpaWlpaWlpX27dpnOSzumESRTmm7kWwLK0JLFbJISfNLS0tLS0tLS0tLS0r5bu+xjKyP26wT/ZYqvRJZjlQpMgesmiqSlpaWlpaWlpaWlpX2ttpVpISmxl96SKDkgnQLXNNX/R7dg09LS0tLS0tLS0tLSvkqbnkyukWWpuhyfsk9Pz9e1lUXbQxRJS0tLS0tLS0tLS0v7Pm0O/RY7bmLHGjE+RZEtJwqnmJWWlpaWlpaWlpaWlvb92l6SbulHiR1/VqI5nbQUV/46iqSlpaWlpaWlpaWlpX2lNod0uy1SnLitnGz5a1mEsNsokpaWlpaWlpaWlpaW9hTtbqXcHPcZ+rXtxdZtP2qSlpaWlpaWlpaWlpaWNib7SlLwyiP7px64Mv2/hVvZan6RlpaWlpaWlpaWlpb2HG3Cfy88FUPmLRZzTaZ84PKStvxl0NLS0tLS0tLS0tLSHqGtSbwy0L/lELHk6q486yTNoJwWSNdt09LS0tLS0tLS0tLSHqH9/z+0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9M+w8PIVl9AL56yAAAAABJRU5ErkJggg==", + "revision": "d0e896b320c0429d9916c260", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "be396fe0d94745fc97c63862", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 1500, + "total_amount": 1515, + "history_id": 1679696530924, + "id": 1313587077, + "date_created": { + "type": 6, + "value": 1679696531656 + }, + "date_last_updated": { + "type": 6, + "value": 1679696531656 + }, + "date_of_expiration": { + "type": 6, + "value": 1679782931438 + }, + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "pending", + "status_detail": "pending_waiting_transfer", + "currency_id": "BRL" + }, + "revision": "eb933a40f4074936a2e5c6ce", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1251.9390.3817.0948-30", + "revision": "1436b8f4f73643d6a095ea6d", + "revision_nr": 1, + "created": 1702563036410, + "modified": 1702563036410 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696876215/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "6a4d646fff21443a8d3b7260", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696876215", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "history_id": 1679696876215, + "id": 1679696876215, + "date_created": { + "type": 6, + "value": 1679696876215 + }, + "date_last_updated": { + "type": 6, + "value": 1679697420511 + }, + "date_of_expiration": { + "type": 6, + "value": 1682288876215 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679697420511 + }, + "money_release_date": { + "type": 6, + "value": 1679697420511 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "cef3539f45c145ac9e3d81c3", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696876215/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1251.9390.3817.0948-30", + "revision": "41d8e7e119b742b78f5f0032", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679698976004/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "5efa51a592da49d98a745278", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679698976004", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "history_id": 1679698976004, + "id": 1679698976004, + "date_created": { + "type": 6, + "value": 1679698976004 + }, + "date_last_updated": { + "type": 6, + "value": 1679699560373 + }, + "date_of_expiration": { + "type": 6, + "value": 1682290976004 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679699560373 + }, + "money_release_date": { + "type": 6, + "value": 1679699560373 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "9a66051554cf45c382052a80", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679698976004/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30", + "revision": "4742caa0434a4de698a0aa3e", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679872088470/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679872088470, + "acquirer_reference": "", + "verification_code": 1679872088470, + "net_received_amount": 0, + "total_paid_amount": 2000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "3c423f5e6dab4f4e862f4786", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679872088470", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 10651254, + "total_amount": 10651254, + "id": 1679872088470, + "date_created": { + "type": 6, + "value": 1679872088470 + }, + "date_last_updated": { + "type": 6, + "value": 1679872088470 + }, + "date_of_expiration": { + "type": 6, + "value": 1679872088470 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679872088470, + "description": "Compra de 10.651.254,00 IVIP por 2.000,00 BRL" + }, + "revision": "9b702fe53be64c65aec1c357", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1680996986540/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "b254f648035d4274bac25e6a", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1680996986540", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "history_id": 1680996986540, + "id": 1680996986540, + "date_created": { + "type": 6, + "value": 1680996986540 + }, + "date_last_updated": { + "type": 6, + "value": 1681057774524 + }, + "date_of_expiration": { + "type": 6, + "value": 1683588986540 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1681057774524 + }, + "money_release_date": { + "type": 6, + "value": 1681057774524 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "e55b37f44b834f818d035635", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1680996986540/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30", + "revision": "77fe9001349943f6a2adeb5a", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1682640956216/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 4, + "payment_method_reference_id": 1682640956216, + "acquirer_reference": "", + "verification_code": 1682640956216, + "net_received_amount": 0, + "total_paid_amount": 220, + "overpaid_amount": 0, + "installment_amount": 220, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "88a09a707ca04350b8afebb9", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1682640956216", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": 1682640956216, + "contract_id": "1679263150490", + "date_created": { + "type": 6, + "value": 1682640956216 + }, + "date_last_updated": { + "type": 6, + "value": 1682640956216 + }, + "date_of_expiration": { + "type": 6, + "value": 1682640956216 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682640956216 + }, + "revision": "fbbe21e3c9eb40b08940cb22", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1682640956216/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 1 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", + "revision": "c6c995eb7f4746c590ac838c", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1683194553322/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 3, + "installments_payable": 2, + "payment_method_reference_id": 1683194553322, + "acquirer_reference": "", + "verification_code": 1683194553322, + "net_received_amount": 0, + "total_paid_amount": 220, + "overpaid_amount": 0, + "installment_amount": 220, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "d16119bd2e3a47b2a0bc6d88", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1683194553322", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": 1683194553322, + "contract_id": "1679263150490", + "date_created": { + "type": 6, + "value": 1683194553322 + }, + "date_last_updated": { + "type": 6, + "value": 1683194553322 + }, + "date_of_expiration": { + "type": 6, + "value": 1683194553322 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1683194553322 + }, + "revision": "1fda55ef8d334ef2b2be0e04", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1683194553322/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", + "revision": "99dd248789f544a9a7ca8a4b", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684019013862/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684019013862, + "acquirer_reference": "", + "verification_code": 1684019013862, + "net_received_amount": 0, + "total_paid_amount": 1510, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "3a82a5e29c0b42feb53e1203", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684019013862", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1510, + "total_amount": 1510, + "id": 1684019013862, + "date_created": { + "type": 6, + "value": 1684019013862 + }, + "date_last_updated": { + "type": 6, + "value": 1684019013862 + }, + "date_of_expiration": { + "type": 6, + "value": 1684019013862 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684019013862 + }, + "revision": "06ef040a2dfb480a97015d2e", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684019013862/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "00b85ef625fc493ab7a2cab3", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684155209634/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 3, + "payment_method_reference_id": 1684155209634, + "acquirer_reference": "", + "verification_code": 1684155209634, + "net_received_amount": 0, + "total_paid_amount": 220, + "overpaid_amount": 0, + "installment_amount": 220, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "ed5311f1a1274586aed15db0", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684155209634", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": 1684155209634, + "contract_id": "1679263150490", + "date_created": { + "type": 6, + "value": 1684155209634 + }, + "date_last_updated": { + "type": 6, + "value": 1684155209634 + }, + "date_of_expiration": { + "type": 6, + "value": 1684155209634 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1684155209634 + }, + "revision": "f96455e3acd64f1a98b3f112", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684155209634/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", + "revision": "c0abdca606354c5eb3fec3d7", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 48 + }, + "revision": "745f522d5dda4741a45fbc3d", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574/details", + "content": { + "type": 1, + "value": {}, + "revision": "1156a047ff5247e7b8f6002e", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "94d63312b65a4b6a8ebe2781", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 600, + "total_amount": 648, + "history_id": 1684158510574, + "id": 1684158510574, + "date_created": { + "type": 6, + "value": 1684158510574 + }, + "date_last_updated": { + "type": 6, + "value": 1684158510574 + }, + "date_of_expiration": { + "type": 6, + "value": 1686750510574 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "f113831313a54a788f44f207", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", + "revision": "a2395192ebf24238b10bfec6", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684348943785/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684348943785, + "acquirer_reference": "", + "verification_code": 1684348943785, + "net_received_amount": 0, + "total_paid_amount": 5, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "c9fb9c13e0e14e479e93fb89", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684348943785", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 5, + "total_amount": 5, + "id": 1684348943785, + "date_created": { + "type": 6, + "value": 1684348943785 + }, + "date_last_updated": { + "type": 6, + "value": 1684348943785 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348943785 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684348943785 + }, + "revision": "b88d2a43ae8a452796baa94c", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684348943785/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "b0559adfd14643fab60616e1", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624245338/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624245338, + "acquirer_reference": "", + "verification_code": 1684624245338, + "net_received_amount": 0, + "total_paid_amount": 416.90000000000003, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "58dc5c77d15c44a981259ca1", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624245338", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 416.90000000000003, + "total_amount": 416.90000000000003, + "id": 1684624245338, + "date_created": { + "type": 6, + "value": 1684624245338 + }, + "date_last_updated": { + "type": 6, + "value": 1684624245338 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624245338 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684624245338 + }, + "revision": "cc48b763c2134f86a941a0d6", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624245338/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "ed96b159aa9b4281b697faf9", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624330381/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624330381, + "acquirer_reference": "", + "verification_code": 1684624330381, + "net_received_amount": 0, + "total_paid_amount": 2371.9, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "523c3190a84546cea8694af6", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624330381", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 11552888, + "total_amount": 11552888, + "id": 1684624330381, + "date_created": { + "type": 6, + "value": 1684624330381 + }, + "date_last_updated": { + "type": 6, + "value": 1684624330381 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624330381 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624330381, + "description": "Compra de 11.552.888,00 IVIP por 2.371,90 BRL" + }, + "revision": "1a1c9adef6e94e809d01139c", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686781360635/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "c9434a623c8a4744b597a801", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686781360635", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1686781360635, + "id": 1686781360635, + "date_created": { + "type": 6, + "value": 1686781360635 + }, + "date_last_updated": { + "type": 6, + "value": 1686781360635 + }, + "date_of_expiration": { + "type": 6, + "value": 1689373360635 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "70161278c8fd48c482b15bc3", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686781360635/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1251.9390.3817.0948-30", + "revision": "c94f980984e04020bb406011", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686838534175/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "877559feba9a4b0c9ff1eb83", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686838534175", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 162, + "total_amount": 162, + "history_id": 1686838534175, + "id": 1686838534175, + "date_created": { + "type": 6, + "value": 1686838534175 + }, + "date_last_updated": { + "type": 6, + "value": 1686839135258 + }, + "date_of_expiration": { + "type": 6, + "value": 1689430534175 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686839135258 + }, + "money_release_date": { + "type": 6, + "value": 1686839135258 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "f2c060392cba4df0ac2f964f", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686838534175/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 162,00 para a carteira iVip 1251.9390.3817.0948-30", + "revision": "52bbb1040f6340bba40308ff", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686839367288/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 3, + "payment_method_reference_id": 1686839367288, + "acquirer_reference": "", + "verification_code": 1686839367288, + "net_received_amount": 0, + "total_paid_amount": 162, + "overpaid_amount": 0, + "installment_amount": 162, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "ed1a336bfb11450cb2b936db", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686839367288", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 162, + "total_amount": 162, + "id": 1686839367288, + "contract_id": "1684158510574", + "date_created": { + "type": 6, + "value": 1686839367288 + }, + "date_last_updated": { + "type": 6, + "value": 1686839367288 + }, + "date_of_expiration": { + "type": 6, + "value": 1686839367288 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1686839367288 + }, + "revision": "fb58ba678ae544438c8569e8", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686839367288/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 1 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", + "revision": "e8c6e051174a4edbabca5898", + "revision_nr": 1, + "created": 1702563036411, + "modified": 1702563036411 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1687526304583/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687526304583, + "acquirer_reference": "", + "verification_code": 1687526304583, + "net_received_amount": 0, + "total_paid_amount": 5132122, + "overpaid_amount": 0, + "installment_amount": 5132122, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "5cadd39bebd34b9ba805316a", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1687526304583", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 5132122, + "total_amount": 5132122, + "id": 1687526304583, + "date_created": { + "type": 6, + "value": 1687526304583 + }, + "date_last_updated": { + "type": 6, + "value": 1687526304583 + }, + "date_of_expiration": { + "type": 6, + "value": 1750684704583 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687526304583, + "wasDebited": true + }, + "revision": "8307bb6b8fbf4c17bec2f64c", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1687526304583/description", + "content": { + "type": 5, + "value": "Investimento de 5.132.122,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025", + "revision": "72ce1f518e694bdf83c3657d", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693646965462 + } + }, + "revision": "878082b1d79a4a8aae6a1cda", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691054965462, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 510, + "installment_amount": 510, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "0fc229ff75b2421ca6acffcd", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1691054965462", + "revision": "ec2fbc8a52e34d2aa9ee2e9a", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 510, + "total_amount": 510, + "id": 1691054965462, + "history_id": 1691054965462, + "date_created": { + "type": 6, + "value": 1691054965462 + }, + "date_last_updated": { + "type": 6, + "value": 1691089636675 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1691089636675 + }, + "money_release_date": { + "type": 6, + "value": 1691089636675 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "c6ab8d0173c140deabbb0c40", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462/description", + "content": { + "type": 5, + "value": "Deposito de um valor 510,00 para a carteira iVip 1251.9390.3817.0948-30", + "revision": "8dd8e1e05bb34ea9b19f68af", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694044211694 + } + }, + "revision": "171f408041f04feda61e9355", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691452211694, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 300, + "installment_amount": 300, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "180718cb8f8d4b49ad51d01c", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1691452211694", + "revision": "521f4d8225034691a51dbc33", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 300, + "total_amount": 300, + "id": 1691452211694, + "history_id": 1691452211694, + "date_created": { + "type": 6, + "value": 1691452211694 + }, + "date_last_updated": { + "type": 6, + "value": 1691455199247 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1691455199247 + }, + "money_release_date": { + "type": 6, + "value": 1691455199247 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "b260e8179a25451da10748b8", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694/description", + "content": { + "type": 5, + "value": "Deposito de um valor 300,00 para a carteira iVip 1251.9390.3817.0948-30", + "revision": "aa3d3a2aa87c4b8fb1fd9def", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 750698.52 + }, + "revision": "e6b2743f705249e7b3a8df0c", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692030522501, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 25023284, + "installment_amount": 25023284, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "16792487a8e64bf1ab668d3f", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1692030522501", + "revision": "ddba9537bee54aaa845674ab", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "b5ccccce6bbe4ca6ad6fe8db", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 25023284, + "total_amount": 24272585.48, + "id": 1692030522501, + "history_id": 1692030522501, + "date_created": { + "type": 6, + "value": 1692030522501 + }, + "date_last_updated": { + "type": 6, + "value": 1692031200472 + }, + "date_of_expiration": { + "type": 6, + "value": 1692030522501 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": { + "type": 6, + "value": 1692031200472 + }, + "money_release_date": { + "type": 6, + "value": 1692031200472 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "91a55b4c88e24f5faef35fd4", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/description", + "content": { + "type": 5, + "value": "Saque de 24.272.585,48 IVIP para a carteira 0xC241a13f35a534f3ef174c5cF50Ea8653FfE62F1", + "revision": "16f65db6346d4959850d0de9", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697750847215 + } + }, + "revision": "be008311866748fa86a71005", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695158847215, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 150, + "installment_amount": 150, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "5830925074da4f0b98773667", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695158847215", + "revision": "35cbb9ba186448afbf3fae65", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 150, + "total_amount": 150, + "id": "1695158847215", + "history_id": "1695158847215", + "date_created": { + "type": 6, + "value": 1695158847215 + }, + "date_last_updated": { + "type": 6, + "value": 1695159625727 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1695159625727 + }, + "money_release_date": { + "type": 6, + "value": 1695159625727 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "b60f6380dea040608d0fcfb6", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215/description", + "content": { + "type": 5, + "value": "Deposito de um valor 150,00 BRL para a carteira iVip 1251.9390.3817.0948-30", + "revision": "356d7c71297d482580f0efe3", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884735/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695159884735, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 220, + "installment_amount": 220, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 4, + "installments_payable": 1 + }, + "revision": "2549ca1e45474491b73aee84", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884735/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884735", + "revision": "66d69d0d05584f798e134fd9", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884735", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": "1695159884735", + "history_id": "1695159884735", + "date_created": { + "type": 6, + "value": 1695159884735 + }, + "date_last_updated": { + "type": 6, + "value": 1695159884735 + }, + "date_of_expiration": { + "type": 6, + "value": 1695159884735 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "5e2cea8633b34a4bbdd63c54", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884735/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", + "revision": "d8297700f8784250b91d882a", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884797/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695159884797, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 162, + "installment_amount": 162, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 2, + "installments_payable": 2 + }, + "revision": "8e5d68878bc24ce7a5ee3b9e", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884797/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884797", + "revision": "6d51a0da1c5442f7b0c9adaf", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884797", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 162, + "total_amount": 162, + "id": "1695159884797", + "history_id": "1695159884797", + "date_created": { + "type": 6, + "value": 1695159884797 + }, + "date_last_updated": { + "type": 6, + "value": 1695159884797 + }, + "date_of_expiration": { + "type": 6, + "value": 1695159884797 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "9c3760cd885042ceb7285ca3", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884797/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 2 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", + "revision": "6bda856bbcca415d9e14885a", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884893/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695159884893, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 220, + "installment_amount": 220, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 5, + "installments_payable": 0 + }, + "revision": "9f44734902be43a78b8d9f9e", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884893/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884893", + "revision": "d6d27c2d7494465388b6402e", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884893", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": "1695159884893", + "history_id": "1695159884893", + "date_created": { + "type": 6, + "value": 1695159884893 + }, + "date_last_updated": { + "type": 6, + "value": 1695159884893 + }, + "date_of_expiration": { + "type": 6, + "value": 1695159884893 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "a103093a2d2746a5b744e962", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884893/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", + "revision": "6664c2dd06ff400582066de1", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884951/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695159884951, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 162, + "installment_amount": 162, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 3, + "installments_payable": 1 + }, + "revision": "60a0d3e0878a4c978e74443a", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884951/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884951", + "revision": "6983bca8c5834f48b5f08992", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884951", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 162, + "total_amount": 162, + "id": "1695159884951", + "history_id": "1695159884951", + "date_created": { + "type": 6, + "value": 1695159884951 + }, + "date_last_updated": { + "type": 6, + "value": 1695159884951 + }, + "date_of_expiration": { + "type": 6, + "value": 1695159884951 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "071645d6169a447b865e7cf4", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884951/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 3 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", + "revision": "b5a4c7fc67e34fca9897d3ad", + "revision_nr": 1, + "created": 1702563036412, + "modified": 1702563036412 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159885077/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695159885077, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 162, + "installment_amount": 162, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 4, + "installments_payable": 0 + }, + "revision": "5af242acb0b2404a82c8cd0e", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159885077/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159885077", + "revision": "1b1bb84ffe3e49e7aa1349c8", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159885077", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 162, + "total_amount": 162, + "id": "1695159885077", + "history_id": "1695159885077", + "date_created": { + "type": 6, + "value": 1695159885077 + }, + "date_last_updated": { + "type": 6, + "value": 1695159885077 + }, + "date_of_expiration": { + "type": 6, + "value": 1695159885077 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "293a243abe2b48308a315544", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159885077/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 4 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", + "revision": "a4a87890988946b19445715e", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698764022012 + } + }, + "revision": "2c91fcc80a30428088ba5183", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696172022012, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100000, + "installment_amount": 100000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "1393f05bece9423bafdaedbe", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1696172022012", + "revision": "6a660b9c92a04aed98e2d70c", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "125193903817094830", + "payment_method": "whatsapp", + "original_amount": 100000, + "total_amount": 100000, + "id": "1696172022012", + "history_id": "1696172022012", + "date_created": { + "type": 6, + "value": 1696172022012 + }, + "date_last_updated": { + "type": 6, + "value": 1696172022012 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment" + }, + "revision": "58d0768c764648eebfa1171a", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012/description", + "content": { + "type": 5, + "value": "Deposito de um valor 100.000,00 IVIP para a carteira iVip 1251.9390.3817.0948-30", + "revision": "14d1d69d0af943d890d2f6ed", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699705029373 + } + }, + "revision": "9f4426f7397b4f1294dbeb3a", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1697113029373", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2500, + "installment_amount": 2500, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "0620ea9e64bb4a269f3b8a40", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1697113029373", + "revision": "0e4afe8251314fd3b339e030", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "125193903817094830", + "payment_method": "whatsapp", + "original_amount": 2500, + "total_amount": 2500, + "id": "1697113029373", + "history_id": "1697113029373", + "date_created": { + "type": 6, + "value": 1697113029373 + }, + "date_last_updated": { + "type": 6, + "value": 1697113404981 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1697113404981 + }, + "money_release_date": { + "type": 6, + "value": 1697113404981 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "f329fc6589974249aa83a344", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373/description", + "content": { + "type": 5, + "value": "Deposito de um valor 2.500,00 BRL para a carteira iVip 1251.9390.3817.0948-30", + "revision": "64fcb827e5c9434ebba01b97", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697159292046/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1697159292046", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2034, + "installment_amount": 2034, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "9fa565637d644841821ab435", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697159292046/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1697159292046", + "revision": "c759894ba1bf491db07b6e43", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697159292046", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "wallet_id": "125193903817094830", + "payment_method": "swap", + "original_amount": 3812023, + "total_amount": 3812023, + "id": "1697159292046", + "history_id": "1697159292046", + "date_created": { + "type": 6, + "value": 1697159292046 + }, + "date_last_updated": { + "type": 6, + "value": 1697159292046 + }, + "date_of_expiration": { + "type": 6, + "value": 1697159292046 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 3.812.023,00 IVIP por 2.034,00 BRL", + "status_detail": "accredited" + }, + "revision": "fc98aaa74bf84608a76a1948", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history", + "content": { + "type": 1, + "value": {}, + "revision": "1c52449ffc304d9681cf8ee8", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "c00ce5f5ea7847ddb3e7f81b", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490", + "content": { + "type": 1, + "value": { + "id": 1679263150490, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": { + "type": 6, + "value": 1679263150490 + }, + "history_id": 1679263150490, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "30c73250f6614f05a3207ef9", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "fff7e01dd7e44c5f9c28c186", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490/costs", + "content": { + "type": 2, + "value": {}, + "revision": "140345ebe4c24059a8bdce25", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304", + "content": { + "type": 1, + "value": {}, + "revision": "5dee087fd5b54a0caa6f873e", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "105052c84c8c45d08b9a7b18", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490", + "content": { + "type": 1, + "value": { + "id": 1679263150490, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": { + "type": 6, + "value": 1679263150490 + }, + "history_id": 1679263150490, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "d170d6948a76406eb4698aa4", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "74773babb9654cbc99540378", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490/costs", + "content": { + "type": 2, + "value": {}, + "revision": "fc971e4ca05548719a7557e8", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305", + "content": { + "type": 1, + "value": {}, + "revision": "6e9b5fc0df1b421f9e9e496a", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "e3ebf1bd1fc54e3b93ec9235", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490", + "content": { + "type": 1, + "value": { + "id": 1679263150490, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": { + "type": 6, + "value": 1679263150490 + }, + "history_id": 1679263150490, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "0a8b342ceb834839ad42e432", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "a7e9132a243b4a8194a7c3af", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490/costs", + "content": { + "type": 2, + "value": {}, + "revision": "5be74b0da3504b6491fe606f", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 48 + }, + "revision": "3e35e5a7691a48a29593adc6", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574", + "content": { + "type": 1, + "value": { + "id": 1684158510574, + "type": "emprestimo", + "original_amount": 600, + "total_amount": 648, + "installments": 4, + "installment_amount": 162, + "date_created": { + "type": 6, + "value": 1684158510574 + }, + "history_id": 1684158510574, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "ae6b0ac5623b4398ae7a9fae", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", + "revision": "8f6f1c5a4e07471e9003ca84", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574/costs", + "content": { + "type": 2, + "value": {}, + "revision": "0f1fef03e9f3450fba6a4e61", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "2108f508a4e647c38e4cacc6", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "fcaa6d9804a9424b930efe13", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490", + "content": { + "type": 1, + "value": { + "id": 1679263150490, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": { + "type": 6, + "value": 1679263150490 + }, + "history_id": 1679263150490, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1695159884751 + } + }, + "revision": "a4eff8f2afdb4c62b3722253", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "98936751acf54498af49f373", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490/costs", + "content": { + "type": 2, + "value": {}, + "revision": "c00f2de28632423388f6ad46", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 48 + }, + "revision": "6441026b16e849a3af30eb3e", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574", + "content": { + "type": 1, + "value": { + "id": 1684158510574, + "type": "emprestimo", + "original_amount": 600, + "total_amount": 648, + "installments": 4, + "installment_amount": 162, + "date_created": { + "type": 6, + "value": 1684158510574 + }, + "history_id": 1684158510574, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1695159884809 + } + }, + "revision": "540bcc8d254a4d34b972e01e", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", + "revision": "7078a288df2045788f736f58", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574/costs", + "content": { + "type": 2, + "value": {}, + "revision": "e8b551a95b9d4f52a56317c6", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "524261fafa81435dbb21e24b", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "87c7fe6d6c3a48aca4e45dfe", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490", + "content": { + "type": 1, + "value": { + "id": 1679263150490, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": { + "type": 6, + "value": 1679263150490 + }, + "history_id": 1679263150490, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1695159884904 + } + }, + "revision": "2aa23b6f154b49e889d4f2c8", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "92076cbf96e94b6cbbdb753c", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490/costs", + "content": { + "type": 2, + "value": {}, + "revision": "ff65721af44249e794dbb41b", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 48 + }, + "revision": "6705340d30c4423bbe84f59f", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574", + "content": { + "type": 1, + "value": { + "id": 1684158510574, + "type": "emprestimo", + "original_amount": 600, + "total_amount": 648, + "installments": 4, + "installment_amount": 162, + "date_created": { + "type": 6, + "value": 1684158510574 + }, + "history_id": 1684158510574, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1695159884962 + } + }, + "revision": "b05bcdecc7104a9ca8bb93ad", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", + "revision": "709f76582eab470699f44e02", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574/costs", + "content": { + "type": 2, + "value": {}, + "revision": "c9c7a0014078495e837eedea", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308", + "content": { + "type": 1, + "value": {}, + "revision": "b447afba23ca443191f73c95", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 48 + }, + "revision": "a5b7307602024a6790177070", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574", + "content": { + "type": 1, + "value": { + "id": 1684158510574, + "type": "emprestimo", + "original_amount": 600, + "total_amount": 648, + "installments": 4, + "installment_amount": 162, + "date_created": { + "type": 6, + "value": 1684158510574 + }, + "history_id": 1684158510574, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1695159885096 + } + }, + "revision": "420a4e2b0e3b4d9ba46e412d", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", + "revision": "bc0a899119c34c6c88edfc75", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574/costs", + "content": { + "type": 2, + "value": {}, + "revision": "b7424f0fd5a0401d921f0aed", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309", + "content": { + "type": 1, + "value": {}, + "revision": "fe2971cb0e9a4fcfbf89b1d3", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "55ab2b2240c94661891116c5", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 1000, + "limitUsed": 850, + "analysisRequested": { + "type": 6, + "value": 1679157145695 + }, + "lastReview": { + "type": 6, + "value": 1679261263210 + } + }, + "revision": "18c1b28f6e3646719a949e98", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679152336550, + "dateValidity": 1679152336550, + "totalValue": 1379.3, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697252400000 + } + }, + "revision": "d8050cf97ae74cbfb520cc27", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677727950406/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "2c8c9b8bb458463c85a2122d", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677727950406", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "history_id": 1677727950406, + "id": 1677727950406, + "date_created": { + "type": 6, + "value": 1677727950406 + }, + "date_last_updated": { + "type": 6, + "value": 1677728283262 + }, + "date_of_expiration": { + "type": 6, + "value": 1680319950406 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677728283262 + }, + "money_release_date": { + "type": 6, + "value": 1677728283262 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "6e2681e32acf46a186b1cafa", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677727950406/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "3362059cd974480cbe98cca9", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677797747321/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "1ffd1b4590df44a6a587a450", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677797747321", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1677797747321, + "id": 1677797747321, + "date_created": { + "type": 6, + "value": 1677797747321 + }, + "date_last_updated": { + "type": 6, + "value": 1677803124428 + }, + "date_of_expiration": { + "type": 6, + "value": 1680389747321 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677803124428 + }, + "money_release_date": { + "type": 6, + "value": 1677803124428 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "4a894970548f4a4f9dcb1b41", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677797747321/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "a4abad4f63ca44a194b9e8b1", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678363438960/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "772bb029ff45414c9dea8d94", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678363438960", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1678363438960, + "id": 1678363438960, + "date_created": { + "type": 6, + "value": 1678363438960 + }, + "date_last_updated": { + "type": 6, + "value": 1678711461621 + }, + "date_of_expiration": { + "type": 6, + "value": 1680955438960 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1678711461621 + }, + "money_release_status": "rejected" + }, + "revision": "f441352aa6fe465ebf570a52", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678363438960/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "e43bb45f079847119497d70a", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678155991324/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678155991324, + "acquirer_reference": "", + "verification_code": 1678155991324, + "net_received_amount": 0, + "total_paid_amount": 1600, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "7b7170d0839f495cacab8b7a", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678155991324", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 11439584, + "total_amount": 11439584, + "id": 1678155991324, + "date_created": { + "type": 6, + "value": 1678155991324 + }, + "date_last_updated": { + "type": 6, + "value": 1678155991324 + }, + "date_of_expiration": { + "type": 6, + "value": 1678155991324 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678155991324, + "description": "Compra de 11439584 IVIP por 1600 BRL" + }, + "revision": "4c96af39fb5645a48af03a04", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 1.9800000000000002 + }, + "revision": "a9bc80ca42b24939a1ab7ef8", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "4fcbaa785f554034ad851887", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, + "revision": "370b59b5dcb045a69754f316", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "375d183b59594d1e8e80a0ec", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 201.98, + "overpaid_amount": 0, + "installment_amount": 0 + }, + "revision": "40b97cfa262e4cf7a7d97202", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/ticket_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/payments/55108764779/ticket?caller_id=1310149122&hash=bd26ec14-a4ce-4255-b152-2a7df041f5dd", + "revision": "938867d906ce4034a0733a41", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/qr_code_base64", + "content": { + "type": 5, + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI5ElEQVR42u3dUa7jNgwFUO3A+9+ld+Bi0E6TkFdyBh0UrXz8Eby8xPZx/ghSV+P6Hx3noKWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaX9/dpRj+PH/46/P/j514+z/nx5Ha8L/PXBz3Nf33u/x88PXl9+P60zaGlpaWlpaWlpaWlpH6I93ku28jZd/fVBuWP7CcoZk0/fHzIxaGlpaWlpaWlpaWlpH6AtBWR+jPHpbj24sTj3o058PcGicKWlpaWlpaWlpaWlpX229vxs7K1kpe333gD8qCLLs+QXWlpaWlpaWlpaWlpa2jBm2UrJaf03Pmcoi7ZUkWUwk5aWlpaWlpaWlpaW9snaKb5971yugUsPNO3pjbt+IC0tLS0tLS0tLS0t7UO005SSf/fln2aq0NLS0tLS0tLS0tLS/k+1+eihji2WJH0wWTW3Xg13b6GlpaWlpaWlpaWlpd1be7YKbrrALXTeYsOu/JUDJkvy5DTmhJaWlpaWlpaWlpaWdnft67bnJ/S42yetJJKUL+eK8QzPXIrPUlnS0tLS0tLS0tLS0tLurj1zzn6jHOGO7cKrRXTTkrPvErCseWlpaWlpaWlpaWlpaTfT9tvmdXHTht1kHDNtEFAeN/9KdzOitLS0tLS0tLS0tLS0m2knFV7DT8rLEiH5Pp2ZAKvN13ItSktLS0tLS0tLS0tLu7f2XZa2V+t1YioMS2VZoHmxXa9j86e0tLS0tLS0tLS0tLR7a1sYSdpUbXW5El+SjGmkMq2zy2vlaGlpaWlpaWlpaWlp99Y2RW/dhfPjOrY0UpmOFodSmoeLqUtaWlpaWlpaWlpaWtr9tIuhyTQWOYn7b8vkyv+mdzvydOZNzUtLS0tLS0tLS0tLS7ubNhWBrWwcbdbyvQydrIZrW2b3ec6W5X/epvrT0tLS0tLS0tLS0tJupG0XGe3Utrbtbtfqui6ujXdOb3S3CzYtLS0tLS0tLS0tLe2O2mN2pf5BOS1tpdZKxKt18qbL39KNaGlpaWlpaWlpaWlpd9e2AjLtp3aFEnG0vlxu5022zG6jl4uQf1paWlpaWlpaWlpa2p21eUHaZIVcgeZEknTGdLFdKjSPm5qXlpaWlpaWlpaWlpZ2M+2Y3TG17qbRkJP9sAsq/UDrGU9aWlpaWlpaWlpaWtrdtS2j/2zL1RZBjyt8qhjzXOW12JqNlpaWlpaWlpaWlpb2IdqRUxxTQEl6m7IgcwTJGYY1++bZtLS0tLS0tLS0tLS0z9GmoP7yQcmCLLx222mdWLRpk+3zm0wVWlpaWlpaWlpaWlrarbQ5xTF5JvOXbf/qEarSSbbkdOkcLS0tLS0tLS0tLS3tk7TlIq2GG61rd+Twx1aQ9sj+Uq5Osyq/ybqkpaWlpaWlpaWlpaXdQ1tWr7VokduAkrYQbkKZ/jbt7IOWlpaWlpaWlpaWlvZJ2kLOb/v+1WkLgNe50ybeumLMUSW0tLS0tLS0tLS0tLSP0t4Fj0wmLKfDmnep/unc6+sqkpaWlpaWlpaWlpaWdgNt6+ldOd+/NPZSQEmrBPtKulYnTirQWRVJS0tLS0tLS0tLS0u7qfauJrwWS90W535UkdOfYH1fWlpaWlpaWlpaWlra3bWLOnHS9ksDkq2xV9JHxuf/fumgpaWlpaWlpaWlpaXdXTtt2PUeXKsOr7td2VrWyTULRhl5U2xaWlpaWlpaWlpaWtqHaNsOZxE6DepfPOn1i7mULWqSlpaWlpaWlpaWlpZ2b22p+krt2Da7Lgn+k7iRcka7wHF3PVpaWlpaWlpaWlpa2udo095p00ZcypEs+f65NP2oMVMBWW5+34ukpaWlpaWlpaWlpaXdRdvKweOrirGhWkuuL4SbXnT1Y9DS0tLS0tLS0tLS0u6uTVXfohF3hIc8QgE5QjTkt1OXjUZLS0tLS0tLS0tLS7uztlyklHStL9efr6WKXKHavPIGAbna/KrmpaWlpaWlpaWlpaWl3UX7PvPYm3NtMLN04/qRBjjTWrlcwt5nqtDS0tLS0tLS0tLS0u6nLYXcyCvapnGRrVgcn929Y1Z89u/l02hpaWlpaWlpaWlpaR+gLa221NjLk5ilDJ10/MrgZUpCKVOXtLS0tLS0tLS0tLS0T9SmjP53d1L0gJLWpuup/ouq9Ph6z25aWlpaWlpaWlpaWtp9tFeoCY9FX679NUIX8MjjmCllsm0LcD8jSktLS0tLS0tLS0tLu5G2VG7tZeSgx/x8Yza7OVo9macz73dbo6WlpaWlpaWlpaWl3U87WdGWvrJo7KWkkZRSsp66zJUlLS0tLS0tLS0tLS3tztppSknbGXuyZq005/Ls5pWX073fbbSESlpaWlpaWlpaWlpa2odoSw9u1cRr/cCyiK7PaS5yTfpKunzQ0tLS0tLS0tLS0tI+QJvmJct6t6YdIXTyav279JXyA6Ui9X4XbFpaWlpaWlpaWlpa2l20raO2umbbgW18oiaTky0V8sxL7L5eDUdLS0tLS0tLS0tLS7ufdizaebk6LKkipQw929s8rHl+nphTK2lpaWlpaWlpaWlpaXfWLmSr+cvppthpIdz6cVNVSktLS0tLS0tLS0tL+xztqMcRMvqPuzVw6SUZ36vIyZW/7O7R0tLS0tLS0tLS0tLuo51um5ZGJfskZq4iy/9KkMmZV759U0XS0tLS0tLS0tLS0tJuqV2Ug2OWUrKanGxJI6mDeMxK2LFKKaGlpaWlpaWlpaWlpX2GdrQYkfdVbqliHIt1cWXM8ousE1paWlpaWlpaWlpa2qdry4ULZRI1mbdmS1OXI1y5R03S0tLS0tLS0tLS0tI+R5tbdyPn+5fblnun3P7W8Ssx/mfLNaGlpaWlpaWlpaWlpX2SduShybToLZeSV1gSd7QNsHPe5Lm4JS0tLS0tLS0tLS0t7SO0//2DlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlva3af8AAVry9+WFQ1kAAAAASUVORK5CYII=", + "revision": "ea6c696d2a7a46eaa55fe86f", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/qr_code", + "content": { + "type": 5, + "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d127175204000053039865406201.985802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter551087647796304A631", + "revision": "a9c35bdd22a6400c9c3ac092", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "2f9e1d058fb94cf59811d17c", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 200, + "total_amount": 201.98, + "history_id": 1677377774383, + "id": 55108764779, + "date_created": { + "type": 6, + "value": 1677377775134 + }, + "date_last_updated": { + "type": 6, + "value": 1677377775134 + }, + "date_of_expiration": { + "type": 6, + "value": 1677464174923 + }, + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "pending", + "status_detail": "pending_waiting_transfer", + "currency_id": "BRL" + }, + "revision": "53cae418cfed4a0780c4a2bf", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "f1b227dfcbb347c2913d7c7f", + "revision_nr": 1, + "created": 1702563036413, + "modified": 1702563036413 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "c481a4ee92b540b7876871fb", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609/details", + "content": { + "type": 1, + "value": {}, + "revision": "833d18133b1c48a88df4db6f", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "3c746f703d85460aaaa061e6", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "history_id": 1679262602609, + "id": 1679262602609, + "date_created": { + "type": 6, + "value": 1679262602609 + }, + "date_last_updated": { + "type": 6, + "value": 1679262602609 + }, + "date_of_expiration": { + "type": 6, + "value": 1681854602609 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "f133a878348c49259baaa1ee", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "f747e93c86e3483991d2c39e", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679266870095/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679266870095, + "acquirer_reference": "", + "verification_code": 1679266870095, + "net_received_amount": 0, + "total_paid_amount": 3000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "65780fce38a344549e1eb82c", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679266870095", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 17473846, + "total_amount": 17473846, + "id": 1679266870095, + "date_created": { + "type": 6, + "value": 1679266870095 + }, + "date_last_updated": { + "type": 6, + "value": 1679266870095 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266870095 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679266870095, + "description": "Compra de 17473846 IVIP por 3000 BRL" + }, + "revision": "a9a7bd6136ec445ebc592577", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "f3a6c349a63a47fca7a1d65f", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362/details", + "content": { + "type": 1, + "value": {}, + "revision": "a4008559489447c7b9710e05", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "4e414bc034574c979732444b", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "history_id": 1678654062362, + "id": 1678654062362, + "date_created": { + "type": 6, + "value": 1678654062362 + }, + "date_last_updated": { + "type": 6, + "value": 1679405448783 + }, + "date_of_expiration": { + "type": 6, + "value": 1681246062362 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679405448783 + }, + "money_release_date": { + "type": 6, + "value": 1679405448783 + }, + "money_release_status": "rejected", + "wasDebited": true + }, + "revision": "92ebfdcce83449d9a6d12c99", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "bb4b62ff8e4d473ea8d55b0f", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679871546323/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "40835799787c4191b5c45688", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679871546323", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1679871546323, + "id": 1679871546323, + "date_created": { + "type": 6, + "value": 1679871546323 + }, + "date_last_updated": { + "type": 6, + "value": 1679871546323 + }, + "date_of_expiration": { + "type": 6, + "value": 1682463546323 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "0b8bf0175da7440ba5cac098", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679871546323/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "58c951028a25492cb4ac1164", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682619072709/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "753897ccbb0449cdb1158798", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682619072709", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 360, + "total_amount": 360, + "history_id": 1682619072709, + "id": 1682619072709, + "date_created": { + "type": 6, + "value": 1682619072709 + }, + "date_last_updated": { + "type": 6, + "value": 1682620234522 + }, + "date_of_expiration": { + "type": 6, + "value": 1685211072709 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1682620234522 + }, + "money_release_date": { + "type": 6, + "value": 1682620234522 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "3e286869b1af4554ac49fd5c", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682619072709/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 360,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "afc5398f1938426891fd6d72", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682620551210/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 9, + "payment_method_reference_id": 1682620551210, + "acquirer_reference": "", + "verification_code": 1682620551210, + "net_received_amount": 0, + "total_paid_amount": 360, + "overpaid_amount": 0, + "installment_amount": 360, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "74d47b1967bc4972b871cabb", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682620551210", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 360, + "total_amount": 360, + "id": 1682620551210, + "contract_id": "1679262602609", + "date_created": { + "type": 6, + "value": 1682620551210 + }, + "date_last_updated": { + "type": 6, + "value": 1682620551210 + }, + "date_of_expiration": { + "type": 6, + "value": 1682620551210 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682620551210 + }, + "revision": "b0f5fa6dd3a44e66b944974a", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682620551210/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 1 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", + "revision": "ce2baa67d897498da28e239e", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683422461919/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "4fd1e3e70e4a45d6ae593b57", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683422461919", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1683422461919, + "id": 1683422461919, + "date_created": { + "type": 6, + "value": 1683422461919 + }, + "date_last_updated": { + "type": 6, + "value": 1683459942487 + }, + "date_of_expiration": { + "type": 6, + "value": 1686014461919 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683459942487 + }, + "money_release_date": { + "type": 6, + "value": 1683459942487 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "cf9279f26a184847a5a0fee0", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683422461919/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "1233ce1b92584bd0bc7e4d5e", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947136546/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "76e30f304f9b4d5dadc03cd0", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947136546", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1683947136546, + "id": 1683947136546, + "date_created": { + "type": 6, + "value": 1683947136546 + }, + "date_last_updated": { + "type": 6, + "value": 1683947355818 + }, + "date_of_expiration": { + "type": 6, + "value": 1686539136546 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683947355818 + }, + "money_release_date": { + "type": 6, + "value": 1683947355818 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "65872106e4b64637b3a84860", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947136546/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "df3ba554f0d74070bbf45fa4", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947563493/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 3, + "installments_payable": 7, + "payment_method_reference_id": 1683947563493, + "acquirer_reference": "", + "verification_code": 1683947563493, + "net_received_amount": 0, + "total_paid_amount": 360, + "overpaid_amount": 0, + "installment_amount": 360, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "73b3b5791e874069acc984cd", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947563493", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 360, + "total_amount": 360, + "id": 1683947563493, + "contract_id": "1679262602609", + "date_created": { + "type": 6, + "value": 1683947563493 + }, + "date_last_updated": { + "type": 6, + "value": 1683947563493 + }, + "date_of_expiration": { + "type": 6, + "value": 1683947563493 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1683947563493 + }, + "revision": "323123926f8f4a069231b138", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947563493/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 3 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", + "revision": "c8f9a05f963f46d7ad7eb56a", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683948027523/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "03ff9649f68b47a8ab9f2c76", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683948027523", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 66.32, + "total_amount": 66.32, + "history_id": 1683948027523, + "id": 1683948027523, + "date_created": { + "type": 6, + "value": 1683948027523 + }, + "date_last_updated": { + "type": 6, + "value": 1683948080092 + }, + "date_of_expiration": { + "type": 6, + "value": 1686540027523 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683948080092 + }, + "money_release_date": { + "type": 6, + "value": 1683948080092 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "c80477b5c03c4c49b3f486e3", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683948027523/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 66,32 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "9328112890974ec08bbfa604", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684018958560/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684018958560, + "acquirer_reference": "", + "verification_code": 1684018958560, + "net_received_amount": 0, + "total_paid_amount": 106.32, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "6a517f0d892c465ca73a1142", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684018958560", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 574594, + "total_amount": 574594, + "id": 1684018958560, + "date_created": { + "type": 6, + "value": 1684018958560 + }, + "date_last_updated": { + "type": 6, + "value": 1684018958560 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018958560 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684018958560, + "description": "Compra de 574.594,00 IVIP por 106,32 BRL" + }, + "revision": "c795988a34d44e4c91cb0a20", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684158010439/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "a15d32a0eb0d44bbb3b040d6", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684158010439", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 130, + "total_amount": 130, + "history_id": 1684158010439, + "id": 1684158010439, + "date_created": { + "type": 6, + "value": 1684158010439 + }, + "date_last_updated": { + "type": 6, + "value": 1684163590445 + }, + "date_of_expiration": { + "type": 6, + "value": 1686750010439 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684163590445 + }, + "money_release_date": { + "type": 6, + "value": 1684163590445 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "365a457a33164f6ab7520c44", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684158010439/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 130,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "1f85c3626a214020b348bee6", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684458859068/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "3028c20b60c14968860a5ee2", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684458859068", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 55, + "total_amount": 55, + "history_id": 1684458859068, + "id": 1684458859068, + "date_created": { + "type": 6, + "value": 1684458859068 + }, + "date_last_updated": { + "type": 6, + "value": 1684459557882 + }, + "date_of_expiration": { + "type": 6, + "value": 1687050859068 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684459557882 + }, + "money_release_date": { + "type": 6, + "value": 1684459557882 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "b82243839a2b436a94757086", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684458859068/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 55,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "78320ddb3a554998b323781f", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684624396163/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624396163, + "acquirer_reference": "", + "verification_code": 1684624396163, + "net_received_amount": 0, + "total_paid_amount": 185, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "49000464eb6d4c92a9c560cc", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684624396163", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 901085, + "total_amount": 901085, + "id": 1684624396163, + "date_created": { + "type": 6, + "value": 1684624396163 + }, + "date_last_updated": { + "type": 6, + "value": 1684624396163 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624396163 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624396163, + "description": "Compra de 901.085,00 IVIP por 185,00 BRL" + }, + "revision": "0e6a28b7efe144c6ae78e256", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685667418933/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685667418933, + "acquirer_reference": "", + "verification_code": 1685667418933, + "net_received_amount": 0, + "total_paid_amount": 5000000, + "overpaid_amount": 0, + "installment_amount": 5000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "9e01aeb967244b4dbd0e4529", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685667418933", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 5000000, + "total_amount": 5000000, + "id": 1685667418933, + "date_created": { + "type": 6, + "value": 1685667418933 + }, + "date_last_updated": { + "type": 6, + "value": 1685667418933 + }, + "date_of_expiration": { + "type": 6, + "value": 1748825818933 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685667418933, + "wasDebited": true + }, + "revision": "0ddc688c688747b2b8096204", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685667418933/description", + "content": { + "type": 5, + "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", + "revision": "40005a535e3548f6af7a609b", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668065254/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685668065254, + "acquirer_reference": "", + "verification_code": 1685668065254, + "net_received_amount": 0, + "total_paid_amount": 4000000, + "overpaid_amount": 0, + "installment_amount": 4000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "87e3a7e27cc24f1083e0caba", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668065254", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 4000000, + "total_amount": 4000000, + "id": 1685668065254, + "date_created": { + "type": 6, + "value": 1685668065254 + }, + "date_last_updated": { + "type": 6, + "value": 1685668065254 + }, + "date_of_expiration": { + "type": 6, + "value": 1717290465254 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685668065254 + }, + "revision": "c7e99fccc44a41fcb2319802", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668065254/description", + "content": { + "type": 5, + "value": "Investimento de 4.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", + "revision": "4eefffe17e1449cd85ac77d2", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668086801/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685668086801, + "acquirer_reference": "", + "verification_code": 1685668086801, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "7fb29e0efe0a46a39ffeb66c", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668086801", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1685668086801, + "date_created": { + "type": 6, + "value": 1685668086801 + }, + "date_last_updated": { + "type": 6, + "value": 1685668086801 + }, + "date_of_expiration": { + "type": 6, + "value": 1688260086801 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685668086801 + }, + "revision": "d7856440446640e5a046962e", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668086801/description", + "content": { + "type": 5, + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", + "revision": "59597759b2d346d0aabc5ef0", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668239552/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685668239552, + "acquirer_reference": "", + "verification_code": 1685668239552, + "net_received_amount": 0, + "total_paid_amount": 5000000, + "overpaid_amount": 0, + "installment_amount": 5000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "38e9660feaeb4ba3a7755ead", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668239552", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 5000000, + "total_amount": 5000000, + "id": 1685668239552, + "date_created": { + "type": 6, + "value": 1685668239552 + }, + "date_last_updated": { + "type": 6, + "value": 1685668239552 + }, + "date_of_expiration": { + "type": 6, + "value": 1701479439552 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685668239552 + }, + "revision": "b3bf4fb6ceda4172b2c4bece", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668239552/description", + "content": { + "type": 5, + "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", + "revision": "b53aea12629a439f88256fc3", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686858477834/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "170838a818de44aeb41cd964", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686858477834", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 400, + "total_amount": 400, + "history_id": 1686858477834, + "id": 1686858477834, + "date_created": { + "type": 6, + "value": 1686858477834 + }, + "date_last_updated": { + "type": 6, + "value": 1686859225618 + }, + "date_of_expiration": { + "type": 6, + "value": 1689450477834 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686859225618 + }, + "money_release_date": { + "type": 6, + "value": 1686859225618 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "714593c6ebb14347aa080400", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686858477834/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 400,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "8dcc072cdd9b4643b2d521d0", + "revision_nr": 1, + "created": 1702563036414, + "modified": 1702563036414 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859298764/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 8, + "payment_method_reference_id": 1686859298764, + "acquirer_reference": "", + "verification_code": 1686859298764, + "net_received_amount": 0, + "total_paid_amount": 360, + "overpaid_amount": 0, + "installment_amount": 360, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "d8e5d2e66c1b454ba4dfbcf0", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859298764", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 360, + "total_amount": 360, + "id": 1686859298764, + "contract_id": "1679262602609", + "date_created": { + "type": 6, + "value": 1686859298764 + }, + "date_last_updated": { + "type": 6, + "value": 1686859298764 + }, + "date_of_expiration": { + "type": 6, + "value": 1686859298764 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1686859298764 + }, + "revision": "9a4320dda77e474baaca7f03", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859298764/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 2 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", + "revision": "c56be23a606141b185659094", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859421606/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686859421606, + "acquirer_reference": "", + "verification_code": 1686859421606, + "net_received_amount": 0, + "total_paid_amount": 40, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "e3f0fab0559a4ef68f96ce72", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859421606", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 256510, + "total_amount": 256510, + "id": 1686859421606, + "date_created": { + "type": 6, + "value": 1686859421606 + }, + "date_last_updated": { + "type": 6, + "value": 1686859421606 + }, + "date_of_expiration": { + "type": 6, + "value": 1686859421606 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686859421606, + "description": "Compra de 256.510,00 IVIP por 40,00 BRL" + }, + "revision": "6539d86dac8f4388ac00b66c", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688400452024/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688400452024, + "acquirer_reference": "", + "verification_code": 1688400452024, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "8695ad97188b48809a989bc3", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688400452024", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": 1688400452024, + "date_created": { + "type": 6, + "value": 1688400452024 + }, + "date_last_updated": { + "type": 6, + "value": 1688400452024 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400452024 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688400452024, + "wasDebited": true + }, + "revision": "f64195fdaee043b082706086", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688400452024/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", + "revision": "32242075aa494309bcdd4766", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688403103597/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688403103597, + "acquirer_reference": "", + "verification_code": 1688403103597, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "0c472b1d64864e21aeccfb5b", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688403103597", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1688403103597, + "date_created": { + "type": 6, + "value": 1688403103597 + }, + "date_last_updated": { + "type": 6, + "value": 1688403103597 + }, + "date_of_expiration": { + "type": 6, + "value": 1691081503597 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688403103597 + }, + "revision": "924f5d5dabd54c70a8787497", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688403103597/description", + "content": { + "type": 5, + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", + "revision": "d2e260111167446a9fa079c3", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688735047266/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "4f8c7c434d9f4a19af87f4d7", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688735047266", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 8000000, + "total_amount": 8000000, + "history_id": 1688735047266, + "id": 1688735047266, + "date_created": { + "type": 6, + "value": 1688735047266 + }, + "date_last_updated": { + "type": 6, + "value": 1688735047266 + }, + "date_of_expiration": { + "type": 6, + "value": 1688735047266 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "9302d4743bf842358ec27cbc", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688735047266/description", + "content": { + "type": 5, + "value": "Saque de 8.000.000,00 IVIP para a carteira 0x3e35E81481645fafD6C410b1833719A8E633ae35", + "revision": "15857454b1604e76b3cb01ba", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1689292258052/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "3a19869396724261a87ee309", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1689292258052", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 11000000, + "total_amount": 11000000, + "history_id": 1689292258052, + "id": 1689292258052, + "date_created": { + "type": 6, + "value": 1689292258052 + }, + "date_last_updated": { + "type": 6, + "value": 1689292258052 + }, + "date_of_expiration": { + "type": 6, + "value": 1689292258052 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "f2823738a25d4753a221bf6d", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1689292258052/description", + "content": { + "type": 5, + "value": "Saque de 11.000.000,00 IVIP para a carteira 0x3e35E81481645fafD6C410b1833719A8E633ae35", + "revision": "8da8308ab7fb43f4aa0fba86", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691081627683/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1691081627683, + "acquirer_reference": "", + "verification_code": 1691081627683, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "efc6a1c8eca143b0b682ce96", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691081627683", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": 1691081627683, + "date_created": { + "type": 6, + "value": 1691081627683 + }, + "date_last_updated": { + "type": 6, + "value": 1691081627683 + }, + "date_of_expiration": { + "type": 6, + "value": 1691081627683 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1691081627683, + "wasDebited": true + }, + "revision": "7989e561b9ca4385b5211243", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691081627683/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", + "revision": "ea11b050c3eb4511b5803905", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691082859805/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691082859805, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "a49a92820cba452ca1ddf73b", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691082859805/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1691082859805", + "revision": "f2c3e5bcc4cc4f328cc6ba42", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691082859805", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1691082859805, + "history_id": 1691082859805, + "date_created": { + "type": 6, + "value": 1691082859805 + }, + "date_last_updated": { + "type": 6, + "value": 1691082859805 + }, + "date_of_expiration": { + "type": 6, + "value": 1693761259804 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "60daf9d542fa49bebbb74bf7", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691082859805/description", + "content": { + "type": 5, + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", + "revision": "e8c139174996455ebaae4932", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694126049576 + } + }, + "revision": "17dad6b0205a41428a205ee0", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691534049577, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 360, + "installment_amount": 360, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "0a02ee8d14484dcb8e0c2343", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1691534049577", + "revision": "95d9be518b494a018a6fc4d6", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 360, + "total_amount": 360, + "id": 1691534049577, + "history_id": 1691534049577, + "date_created": { + "type": 6, + "value": 1691534049577 + }, + "date_last_updated": { + "type": 6, + "value": 1691536908177 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1691536908177 + }, + "money_release_date": { + "type": 6, + "value": 1691536908177 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "a8c314434764403183204d29", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577/description", + "content": { + "type": 5, + "value": "Deposito de um valor 360,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "88ba3cca81cd4d1a842d4749", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693761380582/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693761380582, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "5fd49abfa55545aca5b5968a", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693761380582/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1693761380582", + "revision": "ff8f87db783c427fad773458", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693761380582", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": "1693761380582", + "history_id": "1693761380582", + "date_created": { + "type": 6, + "value": 1693761380582 + }, + "date_last_updated": { + "type": 6, + "value": 1693761380582 + }, + "date_of_expiration": { + "type": 6, + "value": 1693761380582 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "e0842a3db9434389973eae1e", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693761380582/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "639f7bcef30f49e3a981fe6c", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693780032051/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693780032051, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "086a1477b93f4b3aa830da65", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693780032051/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1693780032051", + "revision": "b2c4af2f0f854adca832aa37", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693780032051", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": "1693780032051", + "history_id": "1693780032051", + "date_created": { + "type": 6, + "value": 1693780032051 + }, + "date_last_updated": { + "type": 6, + "value": 1693780032051 + }, + "date_of_expiration": { + "type": 6, + "value": 1696372032050 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "75901f0ac8984b8b9a98c7d6", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693780032051/description", + "content": { + "type": 5, + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", + "revision": "d04380e117e64b7d9340104d", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697914050195 + } + }, + "revision": "b54a13152129454a9f08ace3", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695322050196, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 720, + "installment_amount": 720, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "ec29f208f4bf4075b6fb9f19", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695322050196", + "revision": "4d9d76f643d54b2f87b2c831", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 720, + "total_amount": 720, + "id": "1695322050196", + "history_id": "1695322050196", + "date_created": { + "type": 6, + "value": 1695322050196 + }, + "date_last_updated": { + "type": 6, + "value": 1695406105258 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1695406105258 + }, + "money_release_date": { + "type": 6, + "value": 1695406105258 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "fbe909fae97b4164b1af5a87", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196/description", + "content": { + "type": 5, + "value": "Deposito de um valor 720,00 BRL para a carteira iVip 1257.9763.0999.3744-60", + "revision": "87181a0393ec455486fe21b2", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451385/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695423451385, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 360, + "installment_amount": 360, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 4, + "installments_payable": 6 + }, + "revision": "87fdd40407f8477e88f45850", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451385/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451385", + "revision": "37a50a33bccd4bc9980c6122", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451385", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 360, + "total_amount": 360, + "id": "1695423451385", + "history_id": "1695423451385", + "date_created": { + "type": 6, + "value": 1695423451385 + }, + "date_last_updated": { + "type": 6, + "value": 1695423451385 + }, + "date_of_expiration": { + "type": 6, + "value": 1695423451385 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "9d1e1bacc71544d992f98800", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451385/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 4 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", + "revision": "7333d9e16ae84309abf737a4", + "revision_nr": 1, + "created": 1702563036415, + "modified": 1702563036415 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451505/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695423451505, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 360, + "installment_amount": 360, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 5, + "installments_payable": 5 + }, + "revision": "7979128d929e4814aa54914f", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451505/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451505", + "revision": "845a0c255afc4f2cbc95f105", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451505", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 360, + "total_amount": 360, + "id": "1695423451505", + "history_id": "1695423451505", + "date_created": { + "type": 6, + "value": 1695423451505 + }, + "date_last_updated": { + "type": 6, + "value": 1695423451505 + }, + "date_of_expiration": { + "type": 6, + "value": 1695423451505 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "d60e690ba69640498f16cea9", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451505/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 5 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", + "revision": "2f50a218b0d54296bfd119b6", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451671/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695423451671, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 360, + "installment_amount": 360, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {}, + "installment_paid": 6, + "installments_payable": 4 + }, + "revision": "653102b8d65d49818d9e9c21", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451671/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451671", + "revision": "0a4e98022ef247f58bf6b983", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451671", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 360, + "total_amount": 360, + "id": "1695423451671", + "history_id": "1695423451671", + "date_created": { + "type": 6, + "value": 1695423451671 + }, + "date_last_updated": { + "type": 6, + "value": 1695423451671 + }, + "date_of_expiration": { + "type": 6, + "value": 1695423451671 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL" + }, + "revision": "d573e50111d146919230ac96", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451671/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 6 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", + "revision": "b5f3239beb8d4e3d950ab908", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984974/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696380984974, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "3e49bdc5c3374774badd3106", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984974/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380984974", + "revision": "1e6d16d494f6469985327b63", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984974", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "125797630999374460", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": "1696380984974", + "history_id": "1696380984974", + "date_created": { + "type": 6, + "value": 1696380984974 + }, + "date_last_updated": { + "type": 6, + "value": 1696380984974 + }, + "date_of_expiration": { + "type": 6, + "value": 1696380984974 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "dd30bdf5c5b24e5eb0cb94bf", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984974/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "b073baa88b5b425f97b27cbd", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984991/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696380984991, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "1cb1c1149ef547dc85dc31e9", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984991/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380984991", + "revision": "a418f043f2d444e1b86af329", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984991", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "125797630999374460", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": "1696380984991", + "history_id": "1696380984991", + "date_created": { + "type": 6, + "value": 1696380984991 + }, + "date_last_updated": { + "type": 6, + "value": 1696380984991 + }, + "date_of_expiration": { + "type": 6, + "value": 1696380984991 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment" + }, + "revision": "26c843dfff6240468f30a6bb", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984991/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "584b70543be74180afd39179", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985024/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696380985024, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "c1b74fafb7e84788b10bc17e", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985024/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380985024", + "revision": "83faa40067c040a887856a4c", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985024", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "125797630999374460", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": "1696380985024", + "history_id": "1696380985024", + "date_created": { + "type": 6, + "value": 1696380985024 + }, + "date_last_updated": { + "type": 6, + "value": 1696380985024 + }, + "date_of_expiration": { + "type": 6, + "value": 1696380985024 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment" + }, + "revision": "c45b1a0081324c87b5de64d5", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985024/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "7456db2653e940dca599d609", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985244/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696380985244, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "3643e47e3bd1412a9691d5cf", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985244/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380985244", + "revision": "1bd5adc8fd4e4ce8955ab073", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985244", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "125797630999374460", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": "1696380985244", + "history_id": "1696380985244", + "date_created": { + "type": 6, + "value": 1696380985244 + }, + "date_last_updated": { + "type": 6, + "value": 1696380985244 + }, + "date_of_expiration": { + "type": 6, + "value": 1696380985244 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment" + }, + "revision": "72a421c0a574470c9a82fe97", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985244/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "2709eaa6748e4a8c841440ff", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384232144/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384232144, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "475dfefd46924921a0926ff5", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384232144/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384232144", + "revision": "a73a2c0b8c5049018aa99433", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384232144", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "125797630999374460", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": "1696384232144", + "history_id": "1696384232144", + "date_created": { + "type": 6, + "value": 1696384232144 + }, + "date_last_updated": { + "type": 6, + "value": 1696384232144 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384232144 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment" + }, + "revision": "7fbba0e12b17412bb2c3cd1c", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384232144/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "87da30a345fc41d1b068a409", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243583/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384243583, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "a9f04c4bdcfe45e590f5d37c", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243583/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384243583", + "revision": "227768d353c244568847a42b", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243583", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "125797630999374460", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": "1696384243583", + "history_id": "1696384243583", + "date_created": { + "type": 6, + "value": 1696384243583 + }, + "date_last_updated": { + "type": 6, + "value": 1696384243583 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384243583 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment" + }, + "revision": "2a3714c061eb49739046facc", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243583/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "d833f5bac67b4d4aa44095bf", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243588/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384243588, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "d07209b5f4e24e41922e643d", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243588/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384243588", + "revision": "6c8001af7e704f1d9838904a", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243588", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "125797630999374460", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": "1696384243588", + "history_id": "1696384243588", + "date_created": { + "type": 6, + "value": 1696384243588 + }, + "date_last_updated": { + "type": 6, + "value": 1696384243588 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384243588 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment" + }, + "revision": "f8359b4674e940458aab5860", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243588/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "38066da31bf34c42b130b7c7", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696406601868/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696406601868, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "e3198aa085b94421bad74b53", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696406601868/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696406601868", + "revision": "90473ef9083041099fda41ea", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696406601868", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "125797630999374460", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": "1696406601868", + "history_id": "1696406601868", + "date_created": { + "type": 6, + "value": 1696406601868 + }, + "date_last_updated": { + "type": 6, + "value": 1696406601868 + }, + "date_of_expiration": { + "type": 6, + "value": 1699085001847 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "00c249c6562c47e0a4520268", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696406601868/description", + "content": { + "type": 5, + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", + "revision": "ab1db25679444b339ee93ad3", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history", + "content": { + "type": 1, + "value": {}, + "revision": "6c77943bb3f14ebeba6e7bdc", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "721e0925b3c249f99bb0663d", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": { + "type": 6, + "value": 1679262602609 + }, + "history_id": 1679262602609, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "f2235f989dc349feb4cb249e", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "5615a670e5e64929adb082f4", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609/costs", + "content": { + "type": 2, + "value": {}, + "revision": "9a28fdac10f54a468d3d21dc", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304", + "content": { + "type": 1, + "value": {}, + "revision": "505c3add1d8940b7bae49ee7", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "9e1a1ee0cd1c49429812fc21", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": { + "type": 6, + "value": 1679262602609 + }, + "history_id": 1679262602609, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "6382f6147c824051b8377183", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "73b7f651261642a7b7915a1a", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609/costs", + "content": { + "type": 2, + "value": {}, + "revision": "50c1e505a6854d8584b9a332", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305", + "content": { + "type": 1, + "value": {}, + "revision": "53ddc5731a864ee18b47162c", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "bfc4a5e7ee944598a9361112", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": { + "type": 6, + "value": 1679262602609 + }, + "history_id": 1679262602609, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "4fbff4c9d1bb457eb04fd3d3", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "10485c98f38447c78012dfc2", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609/costs", + "content": { + "type": 2, + "value": {}, + "revision": "7099c93ac8f94ec78ce66a51", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "95953ab23cc54a8480579828", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "68c1de2302da48f59ecf1a31", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": { + "type": 6, + "value": 1679262602609 + }, + "history_id": 1679262602609, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1695423451406 + } + }, + "revision": "297e7fd1b3764550a04dd18a", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "f356e0eae3274a72910a6f31", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609/costs", + "content": { + "type": 2, + "value": {}, + "revision": "d713b13fdd164aa89fe6e3a4", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "a8be98429d924990951d7d6c", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "5cdd2f75075f42d8a74b4324", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": { + "type": 6, + "value": 1679262602609 + }, + "history_id": 1679262602609, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1695423451526 + } + }, + "revision": "1bf8c68f1aa64b7fa8906270", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "655d28bcc8ba4e108b9a092d", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609/costs", + "content": { + "type": 2, + "value": {}, + "revision": "7cdb53a2b5d04203903a1211", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308", + "content": { + "type": 1, + "value": {}, + "revision": "5dd2a4d436a04dbd87d5fd8e", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "088f77897fda4370b2ee8c84", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": { + "type": 6, + "value": 1679262602609 + }, + "history_id": 1679262602609, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": { + "type": 6, + "value": 1695423451684 + } + }, + "revision": "4059c1e6d31f4da98097a068", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "a161f421d8814954aa5c918e", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609/costs", + "content": { + "type": 2, + "value": {}, + "revision": "35277fc9613a4d3f8522417b", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309", + "content": { + "type": 1, + "value": {}, + "revision": "b4e98842ab70496c80fa2e4e", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "a2c648dedd424cef8e225b3c", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": { + "type": 6, + "value": 1679262602609 + }, + "history_id": 1679262602609, + "currency_id": "BRL" + }, + "revision": "9caa0299778e43eda18afe69", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "0b76817a47214fd98ffc987c", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609/costs", + "content": { + "type": 2, + "value": {}, + "revision": "4da76a375e94406aa73c5d43", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310", + "content": { + "type": 1, + "value": {}, + "revision": "763c3524ace048e89d89ad67", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "4d202d7c139a4e75b12965d9", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": { + "type": 6, + "value": 1679262602609 + }, + "history_id": 1679262602609, + "currency_id": "BRL" + }, + "revision": "e47308cdf67a4cd581136606", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "ecd15630aed94c7caa38544f", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609/costs", + "content": { + "type": 2, + "value": {}, + "revision": "daa7d8367eef49a199af7a82", + "revision_nr": 1, + "created": 1702563036416, + "modified": 1702563036416 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311", + "content": { + "type": 1, + "value": {}, + "revision": "0d73ea1d717b4acba0c114c6", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "7054101ed78345d197704a74", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": { + "type": 6, + "value": 1679262602609 + }, + "history_id": 1679262602609, + "currency_id": "BRL" + }, + "revision": "1d56d6b79c1f4cf2be16926a", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "f042baf57fe84d1fba353723", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609/costs", + "content": { + "type": 2, + "value": {}, + "revision": "cc0ba71b6f6446f9a30680c3", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312", + "content": { + "type": 1, + "value": {}, + "revision": "18202f60e5e2467e9fedb87f", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "9011729967434c3c8f761e9e", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": { + "type": 6, + "value": 1679262602609 + }, + "history_id": 1679262602609, + "currency_id": "BRL" + }, + "revision": "0af70443438e41df848b5a22", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "e6c94059826747c8ba12e13e", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609/costs", + "content": { + "type": 2, + "value": {}, + "revision": "e8043cbc98654b788bb08f98", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401", + "content": { + "type": 1, + "value": {}, + "revision": "dec89ce603de46b3b807927a", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "ef23b293751f4511bd3de0a5", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 3000, + "limitUsed": 2100, + "analysisRequested": { + "type": 6, + "value": 1679184639579 + }, + "lastReview": { + "type": 6, + "value": 1679260956380 + } + }, + "revision": "9481286dd45d436584d772ee", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "9285619.00000000", + "symbol": "IVIP", + "value": 990 + }, + "revision": "bcc332dd2db0419bb2c916f3", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/balances", + "content": { + "type": 1, + "value": {}, + "revision": "859094f1172c43a7af479abf", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677377704211, + "dateValidity": 1679033074324, + "totalValue": 3498.3833869132864, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } + }, + "revision": "6936459fd6c94e3e84d607b5", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/balances/BRL", + "content": { + "type": 1, + "value": { + "symbol": "BRL", + "available": "454.90000000", + "value": 90.844 + }, + "revision": "9b659003b2854502a2dcface", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/balances", + "content": { + "type": 1, + "value": {}, + "revision": "f15bcf3448ee4014a80f87e7", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266939492/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679266939492, + "acquirer_reference": "", + "verification_code": 1679266939492, + "net_received_amount": 0, + "total_paid_amount": 7, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "88b69e82cebd4da890f7916d", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266939492", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 7, + "total_amount": 7, + "id": 1679266939492, + "date_created": { + "type": 6, + "value": 1679266939492 + }, + "date_last_updated": { + "type": 6, + "value": 1679266939492 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266939492 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1679266939492 + }, + "revision": "86f1a1e8cf6547e39b3a8db8", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266939492/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "e24ca885ccff47f2ae0ff3cc", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266973884/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679266973884, + "acquirer_reference": "", + "verification_code": 1679266973884, + "net_received_amount": 0, + "total_paid_amount": 50, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "c5ad251c6169454faf4bb50c", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266973884", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 50, + "total_amount": 50, + "id": 1679266973884, + "date_created": { + "type": 6, + "value": 1679266973884 + }, + "date_last_updated": { + "type": 6, + "value": 1679266973884 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266973884 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1679266973884 + }, + "revision": "488b0d58e71048c4915d147a", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266973884/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "a5fe60de67fe4a82b6a76e24", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679267111761/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679267111761, + "acquirer_reference": "", + "verification_code": 1679267111761, + "net_received_amount": 0, + "total_paid_amount": 100, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "a064a1cfc9364e2399954cee", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679267111761", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 100, + "total_amount": 100, + "id": 1679267111761, + "date_created": { + "type": 6, + "value": 1679267111761 + }, + "date_last_updated": { + "type": 6, + "value": 1679267111761 + }, + "date_of_expiration": { + "type": 6, + "value": 1679267111761 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1679267111761 + }, + "revision": "322bc4dc5183468aab9b38a8", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679267111761/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "acf03f589ec54961bbe0f0d0", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679872001608/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679872001608, + "acquirer_reference": "", + "verification_code": 1679872001608, + "net_received_amount": 0, + "total_paid_amount": 25, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "32c31ed8bc1f4a86b4baf7f5", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679872001608", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 25, + "total_amount": 25, + "id": 1679872001608, + "date_created": { + "type": 6, + "value": 1679872001608 + }, + "date_last_updated": { + "type": 6, + "value": 1679872001608 + }, + "date_of_expiration": { + "type": 6, + "value": 1679872001608 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1679872001608 + }, + "revision": "bbb48f5ae57b48aeb0360b12", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679872001608/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "3eadd684039640cf9bfaa0ce", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684018958586/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684018958586, + "acquirer_reference": "", + "verification_code": 1684018958586, + "net_received_amount": 0, + "total_paid_amount": 120, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "0490e1e79962410f91ec8a6f", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684018958586", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 120, + "total_amount": 120, + "id": 1684018958586, + "date_created": { + "type": 6, + "value": 1684018958586 + }, + "date_last_updated": { + "type": 6, + "value": 1684018958586 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018958586 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684018958586 + }, + "revision": "90c5a79989af4153b50f0e6c", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684018958586/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "c4317f7596e84221b4523825", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684348450676/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684348450676, + "acquirer_reference": "", + "verification_code": 1684348450676, + "net_received_amount": 0, + "total_paid_amount": 13, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "a1b4243a81bf457fb7b200a5", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684348450676", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 13, + "total_amount": 13, + "id": 1684348450676, + "date_created": { + "type": 6, + "value": 1684348450676 + }, + "date_last_updated": { + "type": 6, + "value": 1684348450676 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348450676 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684348450676 + }, + "revision": "e98e43e26ffd469691cf20a8", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684348450676/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "170b037170a64ec3a56015b5", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624165029/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624165029, + "acquirer_reference": "", + "verification_code": 1684624165029, + "net_received_amount": 0, + "total_paid_amount": 30, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "c7b8beeac7ff45bab8f49918", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624165029", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 30, + "total_amount": 30, + "id": 1684624165029, + "date_created": { + "type": 6, + "value": 1684624165029 + }, + "date_last_updated": { + "type": 6, + "value": 1684624165029 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624165029 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684624165029 + }, + "revision": "d30b7c31db7648588c2ca36c", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624165029/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "7130e8046408460eaaa10a9f", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624981228/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624981228, + "acquirer_reference": "", + "verification_code": 1684624981228, + "net_received_amount": 0, + "total_paid_amount": 109.9, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "9e87b2ed47194dbd9413a343", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624981228", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 109.9, + "total_amount": 109.9, + "id": 1684624981228, + "date_created": { + "type": 6, + "value": 1684624981228 + }, + "date_last_updated": { + "type": 6, + "value": 1684624981228 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624981228 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684624981228 + }, + "revision": "171c4a0c3c0747ddb65a57f5", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624981228/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "42cb756c10d04d45be2ad8db", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history", + "content": { + "type": 1, + "value": {}, + "revision": "7c917676e587446a9336bf92", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677885325302, + "dateValidity": 1677929034802, + "totalValue": 89.197, + "currencyType": "USD" + }, + "revision": "a01c9f16635242ea9e27931e", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/127785137141729800/balances", + "content": { + "type": 1, + "value": {}, + "revision": "2bd67aafce4f49da9325ec5c", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/127785137141729800/history", + "content": { + "type": 1, + "value": {}, + "revision": "76a111d5ca0a42709e675291", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/127785137141729800/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "718023cc073145d69c5c8a3f", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/127785137141729800/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "efafb8b81c7c46d79eb46e11", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/127785137141729800", + "content": { + "type": 1, + "value": { + "dataModificacao": 1695173270592, + "dateValidity": 1695173270620, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1695178800000 + } + }, + "revision": "94fe7a3ec440485d8b41f116", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/127995869380983060/balances", + "content": { + "type": 1, + "value": {}, + "revision": "19da70a526bc475092611edd", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/127995869380983060/history", + "content": { + "type": 1, + "value": {}, + "revision": "e09e91abadc34cf4bb2905b9", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/127995869380983060", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678268990831, + "dateValidity": 1678279790864, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "6c55c0391ebe4d4aa0464340", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "15415938.00000000", + "symbol": "IVIP", + "value": 3434.39 + }, + "revision": "eaac300af3814e7ca154b2ba", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/balances", + "content": { + "type": 1, + "value": {}, + "revision": "16de89cbdeab4a0ab42f8a41", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1677726769800/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "d252162ce4194d6caa1c2f92", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1677726769800", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "history_id": 1677726769800, + "id": 1677726769800, + "date_created": { + "type": 6, + "value": 1677726769800 + }, + "date_last_updated": { + "type": 6, + "value": 1677754857517 + }, + "date_of_expiration": { + "type": 6, + "value": 1680318769800 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677754857517 + }, + "money_release_date": { + "type": 6, + "value": 1677754857517 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "64a43d52af1c40f59c960a18", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1677726769800/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80", + "revision": "98afadf409ed4d57a9bb2704", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678032850996/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "56cc18edd9bc424b9f3222f4", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678032850996", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 3000, + "total_amount": 3000, + "history_id": 1678032850996, + "id": 1678032850996, + "date_created": { + "type": 6, + "value": 1678032850996 + }, + "date_last_updated": { + "type": 6, + "value": 1678041708688 + }, + "date_of_expiration": { + "type": 6, + "value": 1680624850996 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678041708688 + }, + "money_release_date": { + "type": 6, + "value": 1678041708688 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "2f71439162014357b923c95f", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678032850996/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1287.0114.4173.8232-80", + "revision": "3c51518ce8bd49d9b24b9ee7", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678076967863/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678076967863, + "acquirer_reference": "", + "verification_code": 1678076967863, + "net_received_amount": 0, + "total_paid_amount": 5000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "292e9bddafc144368466dbb8", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678076967863", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 35378057, + "total_amount": 35378057, + "id": 1678076967863, + "date_created": { + "type": 6, + "value": 1678076967863 + }, + "date_last_updated": { + "type": 6, + "value": 1678076967863 + }, + "date_of_expiration": { + "type": 6, + "value": 1678076967863 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678076967863, + "description": "Compra de 35378057 IVIP por 5000 BRL" + }, + "revision": "582110a18298409a825480e7", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 240 + }, + "revision": "eb82e50bb58f452a896b29e1", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425/details", + "content": { + "type": 1, + "value": {}, + "revision": "81f6aba536c04e12badf06f6", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "cb50d440344944ecacce36f3", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 2000, + "total_amount": 2240, + "history_id": 1679268249425, + "id": 1679268249425, + "date_created": { + "type": 6, + "value": 1679268249425 + }, + "date_last_updated": { + "type": 6, + "value": 1679268249425 + }, + "date_of_expiration": { + "type": 6, + "value": 1681860249425 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "1a6eeb15a013486480e70b3a", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", + "revision": "4ebbf8f579b243fc903dcb57", + "revision_nr": 1, + "created": 1702563036417, + "modified": 1702563036417 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679871677212/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679871677212, + "acquirer_reference": "", + "verification_code": 1679871677212, + "net_received_amount": 0, + "total_paid_amount": 2000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "7db2076b86ac4d2fa5c5e5d3", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679871677212", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 10651254, + "total_amount": 10651254, + "id": 1679871677212, + "date_created": { + "type": 6, + "value": 1679871677212 + }, + "date_last_updated": { + "type": 6, + "value": 1679871677212 + }, + "date_of_expiration": { + "type": 6, + "value": 1679871677212 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679871677212, + "description": "Compra de 10.651.254,00 IVIP por 2.000,00 BRL" + }, + "revision": "97d385605fc5483890e65459", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 120 + }, + "revision": "efc34999a8954213a68a1501", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314/details", + "content": { + "type": 1, + "value": {}, + "revision": "e02f57bc22304fe89298e6de", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "b6c7671eed7f4b12807dfb29", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 1000, + "total_amount": 1120, + "history_id": 1679872304314, + "id": 1679872304314, + "date_created": { + "type": 6, + "value": 1679872304314 + }, + "date_last_updated": { + "type": 6, + "value": 1679872304314 + }, + "date_of_expiration": { + "type": 6, + "value": 1682464304314 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "2480ffd7446c4ce5bd5f85ba", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", + "revision": "b529de995c0e43c5bf3d17cc", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872334513/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679872334513, + "acquirer_reference": "", + "verification_code": 1679872334513, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "66c38fc2b524499cadf939cc", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872334513", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 5325627, + "total_amount": 5325627, + "id": 1679872334513, + "date_created": { + "type": 6, + "value": 1679872334513 + }, + "date_last_updated": { + "type": 6, + "value": 1679872334513 + }, + "date_of_expiration": { + "type": 6, + "value": 1679872334513 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679872334513, + "description": "Compra de 5.325.627,00 IVIP por 1.000,00 BRL" + }, + "revision": "8c8f28b599644f3999aa504d", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619398300/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "50c3e37a08534752a0894729", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619398300", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 840, + "total_amount": 840, + "history_id": 1682619398300, + "id": 1682619398300, + "date_created": { + "type": 6, + "value": 1682619398300 + }, + "date_last_updated": { + "type": 6, + "value": 1682619761924 + }, + "date_of_expiration": { + "type": 6, + "value": 1685211398300 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1682619761924 + }, + "money_release_date": { + "type": 6, + "value": 1682619761924 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "bce107e2a91545dfb950b315", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619398300/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 840,00 para a carteira iVip 1287.0114.4173.8232-80", + "revision": "263e27aee329432b8c1bd330", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932343/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 3, + "payment_method_reference_id": 1682619932343, + "acquirer_reference": "", + "verification_code": 1682619932343, + "net_received_amount": 0, + "total_paid_amount": 560, + "overpaid_amount": 0, + "installment_amount": 560, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "fb9b815d43024dffb028107b", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932343", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 560, + "total_amount": 560, + "id": 1682619932343, + "contract_id": "1679268249425", + "date_created": { + "type": 6, + "value": 1682619932343 + }, + "date_last_updated": { + "type": 6, + "value": 1682619932343 + }, + "date_of_expiration": { + "type": 6, + "value": 1682619932343 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682619932343 + }, + "revision": "d757d5d2679e4b9e883951e0", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932343/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 1 de 4 no valor de 560,00 BRL referente ao contrato 1679268249425", + "revision": "70ea4d82cb2041cbaf044296", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932484/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 3, + "payment_method_reference_id": 1682619932484, + "acquirer_reference": "", + "verification_code": 1682619932484, + "net_received_amount": 0, + "total_paid_amount": 280, + "overpaid_amount": 0, + "installment_amount": 280, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "d30fd3fcba9f42cb880a6726", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932484", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 280, + "total_amount": 280, + "id": 1682619932484, + "contract_id": "1679872304314", + "date_created": { + "type": 6, + "value": 1682619932484 + }, + "date_last_updated": { + "type": 6, + "value": 1682619932484 + }, + "date_of_expiration": { + "type": 6, + "value": 1682619932484 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682619932484 + }, + "revision": "8335b03ade6144fca04d202c", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932484/description", + "content": { + "type": 5, + "value": "Pagamento de fatura 1 de 4 no valor de 280,00 BRL referente ao contrato 1679872304314", + "revision": "231e336ea10d4429a8633b71", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1685667547180/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685667547180, + "acquirer_reference": "", + "verification_code": 1685667547180, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "8b36f6ab011c4c51aca46747", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1685667547180", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1685667547180, + "date_created": { + "type": 6, + "value": 1685667547180 + }, + "date_last_updated": { + "type": 6, + "value": 1685667547180 + }, + "date_of_expiration": { + "type": 6, + "value": 1748825947180 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685667547180, + "wasDebited": true + }, + "revision": "ab4d6c6452044f10912a70e9", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1685667547180/description", + "content": { + "type": 5, + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", + "revision": "bb826d5d71484b60bc6dd8cd", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1688772261924/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "35c7eead630145feaea781cc", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1688772261924", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 3000000, + "total_amount": 3000000, + "history_id": 1688772261924, + "id": 1688772261924, + "date_created": { + "type": 6, + "value": 1688772261924 + }, + "date_last_updated": { + "type": 6, + "value": 1689009849267 + }, + "date_of_expiration": { + "type": 6, + "value": 1688772261924 + }, + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1689009849267 + }, + "money_release_date": { + "type": 6, + "value": 1689009849267 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "2b11e0ec4dc84c69a0640f2f", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1688772261924/description", + "content": { + "type": 5, + "value": "Saque de 3.000.000,00 IVIP para a carteira 0xDB45185C1086eFFBAA2d0b64862c83Bd9D29DE62", + "revision": "2394d6d36bb0484482d82b87", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 748170 + }, + "revision": "3f38809eadc047709aa9edc2", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692276235458, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 24939000, + "installment_amount": 24939000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "f547d65013e7476a81a20972", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/128701144173823280/history/1692276235458", + "revision": "09f97003b1b74fa3823fee5b", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "a143ee42ef604e708ac0c980", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 24939000, + "total_amount": 24190830, + "id": 1692276235458, + "history_id": 1692276235458, + "date_created": { + "type": 6, + "value": 1692276235458 + }, + "date_last_updated": { + "type": 6, + "value": 1692366435287 + }, + "date_of_expiration": { + "type": 6, + "value": 1692276235458 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": { + "type": 6, + "value": 1692366435287 + }, + "money_release_date": { + "type": 6, + "value": 1692366435287 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "af2b51088ee94496afc28cce", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/description", + "content": { + "type": 5, + "value": "Saque de 24.190.830,00 IVIP para a carteira 0xDB45185C1086eFFBAA2d0b64862c83Bd9D29DE62", + "revision": "20e7ebc6d97b4619a68fd11b", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history", + "content": { + "type": 1, + "value": {}, + "revision": "5be6409fd7e1480c894a6635", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 240 + }, + "revision": "98d9a9c772ff451a90973cc6", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425", + "content": { + "type": 1, + "value": { + "id": 1679268249425, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2240, + "installments": 4, + "installment_amount": 560, + "date_created": { + "type": 6, + "value": 1679268249425 + }, + "history_id": 1679268249425, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "c3140ffbb86c4eb09f7b4b6a", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", + "revision": "3a8f29dc09a84cb998df70cb", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425/costs", + "content": { + "type": 2, + "value": {}, + "revision": "5e70dff10e1b4405aea0502f", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 120 + }, + "revision": "9ce95c453baf4a6195dbbf8c", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314", + "content": { + "type": 1, + "value": { + "id": 1679872304314, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1120, + "installments": 4, + "installment_amount": 280, + "date_created": { + "type": 6, + "value": 1679872304314 + }, + "history_id": 1679872304314, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "e24b85d1a41547ccace21a51", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", + "revision": "e3782d8d7aea4993bcfb155e", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314/costs", + "content": { + "type": 2, + "value": {}, + "revision": "ae215e2096b940cca541ce47", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304", + "content": { + "type": 1, + "value": {}, + "revision": "b313333ab20a421496d49288", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 240 + }, + "revision": "586b669b060f4619904a76b8", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425", + "content": { + "type": 1, + "value": { + "id": 1679268249425, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2240, + "installments": 4, + "installment_amount": 560, + "date_created": { + "type": 6, + "value": 1679268249425 + }, + "history_id": 1679268249425, + "currency_id": "BRL" + }, + "revision": "5d45dfdfb55744b6bbed0d56", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", + "revision": "35dc0c4c546f42dab8c7b65e", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425/costs", + "content": { + "type": 2, + "value": {}, + "revision": "ce4f72e1ec3a4e2996d758d0", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 120 + }, + "revision": "8df594f84b4e4777893ce300", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314", + "content": { + "type": 1, + "value": { + "id": 1679872304314, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1120, + "installments": 4, + "installment_amount": 280, + "date_created": { + "type": 6, + "value": 1679872304314 + }, + "history_id": 1679872304314, + "currency_id": "BRL" + }, + "revision": "ae83115dbd18440cb2ec4637", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", + "revision": "79c9077842784e65964498df", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314/costs", + "content": { + "type": 2, + "value": {}, + "revision": "1ad3791204174f3895978355", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305", + "content": { + "type": 1, + "value": {}, + "revision": "3f3bc77db7394463abc604e6", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 240 + }, + "revision": "666912f947634dfe887d4863", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425", + "content": { + "type": 1, + "value": { + "id": 1679268249425, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2240, + "installments": 4, + "installment_amount": 560, + "date_created": { + "type": 6, + "value": 1679268249425 + }, + "history_id": 1679268249425, + "currency_id": "BRL" + }, + "revision": "d29404bbf584441b980da670", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", + "revision": "ad28367d7e444bbfa1f056c2", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425/costs", + "content": { + "type": 2, + "value": {}, + "revision": "34a8fced4aad436d8c943721", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 120 + }, + "revision": "2abeb93d4db24dce8feb58b9", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314", + "content": { + "type": 1, + "value": { + "id": 1679872304314, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1120, + "installments": 4, + "installment_amount": 280, + "date_created": { + "type": 6, + "value": 1679872304314 + }, + "history_id": 1679872304314, + "currency_id": "BRL" + }, + "revision": "dc0be81af634461f8d8c4687", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", + "revision": "0f101086264d406bb2d8b530", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314/costs", + "content": { + "type": 2, + "value": {}, + "revision": "4cdb77745d2b41b8869d6764", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "78b4c2b50acc4d2f9abf4fd4", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 240 + }, + "revision": "78477964bb9a42348a9cd8f5", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425", + "content": { + "type": 1, + "value": { + "id": 1679268249425, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2240, + "installments": 4, + "installment_amount": 560, + "date_created": { + "type": 6, + "value": 1679268249425 + }, + "history_id": 1679268249425, + "currency_id": "BRL" + }, + "revision": "9d65e392e6804873b7497741", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", + "revision": "cd57464d147b429397556a03", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425/costs", + "content": { + "type": 2, + "value": {}, + "revision": "0acd1d158cf541c08a4950a5", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 120 + }, + "revision": "92c7a456cd05438cba361262", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314", + "content": { + "type": 1, + "value": { + "id": 1679872304314, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1120, + "installments": 4, + "installment_amount": 280, + "date_created": { + "type": 6, + "value": 1679872304314 + }, + "history_id": 1679872304314, + "currency_id": "BRL" + }, + "revision": "f7b5c2b0e52d4535920104c1", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", + "revision": "5145ac268f65441596aa0df2", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314/costs", + "content": { + "type": 2, + "value": {}, + "revision": "42870689417044c4a2c2759a", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "22eaea9523f64592887b7dad", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "e4ba22d7dc4841668706a7f8", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 10000, + "limitUsed": 2250, + "analysisRequested": { + "type": 6, + "value": 1679267023911 + }, + "lastReview": { + "type": 6, + "value": 1679267356871 + } + }, + "revision": "4db8543e5e414b9c8013d311", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677412042762, + "dateValidity": 1678206220392, + "totalValue": 6834.92, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1695870000000 + } + }, + "revision": "4bbf3859b1cd4b819b59e4e6", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/130251464382378670/balances", + "content": { + "type": 1, + "value": {}, + "revision": "0fb71f6961ef4272b651b314", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/130251464382378670/history/1684145604531/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "73a83fa8d9e347059e4fd255", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/130251464382378670/history/1684145604531", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "history_id": 1684145604531, + "id": 1684145604531, + "date_created": { + "type": 6, + "value": 1684145604531 + }, + "date_last_updated": { + "type": 6, + "value": 1684145604531 + }, + "date_of_expiration": { + "type": 6, + "value": 1686737604531 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "7eecabc143ac432a8f8140da", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/130251464382378670/history/1684145604531/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1302.5146.4382.3786-70", + "revision": "7d03a06fe64e4bda86589856", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/130251464382378670/history", + "content": { + "type": 1, + "value": {}, + "revision": "41461fe94ebe41e6ad4159e4", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/130251464382378670/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "2c14e36204034341849c6b98", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/130251464382378670/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "660c2ad64e1c40cda5650e9f", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/130251464382378670", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684145436275, + "dateValidity": 1684145436275, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "4d18969c729b4542b684e64a", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/balances/BRL", + "content": { + "type": 1, + "value": { + "symbol": "BRL", + "value": 0, + "available": "0.00000000" + }, + "revision": "9cc9a515ad45408f9b741eb8", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/balances/IVIP", + "content": { + "type": 1, + "value": { + "symbol": "IVIP", + "available": "1069072.00000000", + "value": 37.92 + }, + "revision": "661728455b8349b68545beda", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/balances", + "content": { + "type": 1, + "value": {}, + "revision": "b60f27f1f9d24160972fc6ef", + "revision_nr": 1, + "created": 1702563036418, + "modified": 1702563036418 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1677984009002/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "b0e7010c9ebf4d47b2a7e0b2", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1677984009002", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1677984009002, + "id": 1677984009002, + "date_created": { + "type": 6, + "value": 1677984009002 + }, + "date_last_updated": { + "type": 6, + "value": 1678452148101 + }, + "date_of_expiration": { + "type": 6, + "value": 1680576009002 + }, + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1678452148101 + }, + "money_release_status": "rejected" + }, + "revision": "798b252f1c534917a6862ae6", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1677984009002/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1328.9266.1243.2543-80", + "revision": "8d765b5276354fe3883c7db5", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119185082/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "1b2b7738b39847e9895a88a5", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119185082", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1678119185082, + "id": 1678119185082, + "date_created": { + "type": 6, + "value": 1678119185082 + }, + "date_last_updated": { + "type": 6, + "value": 1678119185082 + }, + "date_of_expiration": { + "type": 6, + "value": 1680711185082 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "ff986993bbcc43deb8d398df", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119185082/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1328.9266.1243.2543-80", + "revision": "58db6b0effca47bf934dfbea", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119441612/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "6cddbfe6cc9f4a6bac4ac112", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119441612", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1678119441612, + "id": 1678119441612, + "date_created": { + "type": 6, + "value": 1678119441612 + }, + "date_last_updated": { + "type": 6, + "value": 1678372266897 + }, + "date_of_expiration": { + "type": 6, + "value": 1680711441612 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678372266897 + }, + "money_release_date": { + "type": 6, + "value": 1678372266897 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "dd400dd335c049cc963881ac", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119441612/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1328.9266.1243.2543-80", + "revision": "9f4a778a47224c03ab4cbad6", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1679940518294/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679940518294, + "acquirer_reference": "", + "verification_code": 1679940518294, + "net_received_amount": 0, + "total_paid_amount": 200, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "b07f8e4533564e49a7cb9970", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1679940518294", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1069072, + "total_amount": 1069072, + "id": 1679940518294, + "date_created": { + "type": 6, + "value": 1679940518294 + }, + "date_last_updated": { + "type": 6, + "value": 1679940518294 + }, + "date_of_expiration": { + "type": 6, + "value": 1679940518294 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679940518294, + "description": "Compra de 1.069.072,00 IVIP por 200,00 BRL" + }, + "revision": "e13b8e07323345de9573a843", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history", + "content": { + "type": 1, + "value": {}, + "revision": "2cf3fc153c5546a581f4e561", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677983983862, + "dateValidity": 1678983329949, + "totalValue": 37.76, + "currencyType": "USD" + }, + "revision": "f7e3c65f496d4cafb1858657", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "30608.00000000", + "symbol": "IVIP", + "value": 3.42 + }, + "revision": "ddda0f1b3d234e6c88e1677f", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, + "revision": "f8cc1597d9a7411a9226998c", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/balances", + "content": { + "type": 1, + "value": {}, + "revision": "88f7146619fa42168b7f461f", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694034023188 + } + }, + "revision": "3e103b1d52af44009e8c2b86", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691442023188, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "a5386744c5394f4f93af6549", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691442023188", + "revision": "73ef2d013dd240768ab4e6bb", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": 1691442023188, + "history_id": 1691442023188, + "date_created": { + "type": 6, + "value": 1691442023188 + }, + "date_last_updated": { + "type": 6, + "value": 1691442023188 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "f41e3ee716d64881b111ceda", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188/description", + "content": { + "type": 5, + "value": "Deposito de um valor 20,00 para a carteira iVip 1336.7505.4149.0212-50", + "revision": "7055bd4485f34045938949b6", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694125856606 + } + }, + "revision": "6318bed7b15748f396caaadf", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691533856606, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "c83e6d3480da4133beabdd46", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691533856606", + "revision": "d73af35e96ab48918bba7c9d", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": 1691533856606, + "history_id": 1691533856606, + "date_created": { + "type": 6, + "value": 1691533856606 + }, + "date_last_updated": { + "type": 6, + "value": 1691537051872 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1691537051872 + }, + "money_release_date": { + "type": 6, + "value": 1691537051872 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "e25cf873b59b42279063126a", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606/description", + "content": { + "type": 5, + "value": "Deposito de um valor 20,00 para a carteira iVip 1336.7505.4149.0212-50", + "revision": "daf1ad098eb8444ebbb7e0dd", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691597759364/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691597759364, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "e1ce67a119e14eb582a1b3b2", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691597759364/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691597759364", + "revision": "4b368a82645f48edaac0aae3", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691597759364", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 30608, + "total_amount": 30608, + "id": 1691597759364, + "history_id": 1691597759364, + "date_created": { + "type": 6, + "value": 1691597759364 + }, + "date_last_updated": { + "type": 6, + "value": 1691597759364 + }, + "date_of_expiration": { + "type": 6, + "value": 1691597759364 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 30.608,00 IVIP por 20,00 BRL", + "status_detail": "accredited" + }, + "revision": "53e40cf827894c2697df75b4", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history", + "content": { + "type": 1, + "value": {}, + "revision": "d1d60c9621f34a3c8f9897cc", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "2852a9ed0cfd466f83739479", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "f52378884f414baa8b0337c1", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250", + "content": { + "type": 1, + "value": { + "dataModificacao": 1691441898494, + "dateValidity": 1691441898538, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1691722800000 + } + }, + "revision": "814dfd9777494f9e9a27a70a", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/balances", + "content": { + "type": 1, + "value": {}, + "revision": "0eb154555fb14959b4022894", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689202732019/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "d426fc2575c244878017bff3", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689202732019", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689202732019, + "id": 1689202732019, + "date_created": { + "type": 6, + "value": 1689202732019 + }, + "date_last_updated": { + "type": 6, + "value": 1689202732019 + }, + "date_of_expiration": { + "type": 6, + "value": 1691794732019 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "65e55fdd87064733b5050d63", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689202732019/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60", + "revision": "9e0f740941d14ae7b9a26bb5", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455294552/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "41f7beeb2a8a4afba875adf4", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455294552", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689455294552, + "id": 1689455294552, + "date_created": { + "type": 6, + "value": 1689455294552 + }, + "date_last_updated": { + "type": 6, + "value": 1689455294552 + }, + "date_of_expiration": { + "type": 6, + "value": 1692047294552 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "85ef7283144a4fb28da20d1a", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455294552/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60", + "revision": "8171c6a860a44d3a88dde988", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455325352/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "cd236bb64bac43798f622557", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455325352", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689455325352, + "id": 1689455325352, + "date_created": { + "type": 6, + "value": 1689455325352 + }, + "date_last_updated": { + "type": 6, + "value": 1689455325352 + }, + "date_of_expiration": { + "type": 6, + "value": 1692047325352 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "4831ce2a2dfa45268a54dac2", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455325352/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60", + "revision": "968788c4a2724c77b445a807", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history", + "content": { + "type": 1, + "value": {}, + "revision": "013db3287947447c983904aa", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "d7b4023871d443a1b5588669", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "67e79ea9332c47b8853c7aab", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689199381511, + "dateValidity": 1689199381511, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "dd6dea229b974e96b59876ad", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/134682120797451790/balances", + "content": { + "type": 1, + "value": {}, + "revision": "3d90d89de48346a7bcbcc5ff", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/134682120797451790/history/1684183743876/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "bfaa106c1ccd4d35b4ba1982", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/134682120797451790/history/1684183743876", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1700, + "total_amount": 1700, + "history_id": 1684183743876, + "id": 1684183743876, + "date_created": { + "type": 6, + "value": 1684183743876 + }, + "date_last_updated": { + "type": 6, + "value": 1684183743876 + }, + "date_of_expiration": { + "type": 6, + "value": 1686775743876 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "5f35bce0fa224769810ba994", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/134682120797451790/history/1684183743876/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.700,00 para a carteira iVip 1346.8212.0797.4517-90", + "revision": "1ceca7dbe4ad4ff8bd32733c", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/134682120797451790/history", + "content": { + "type": 1, + "value": {}, + "revision": "acbdadd3447f4aabb890367b", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/134682120797451790/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "37f3566d03454abfa2a8718e", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/134682120797451790/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "0e3cb69df97a4bc8bd095484", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/134682120797451790", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684171343507, + "dateValidity": 1684171343507, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "09baea76d8c44483b9fc5937", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/137445448878708240/balances", + "content": { + "type": 1, + "value": {}, + "revision": "3a4a18b628164268b1b9efed", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/137445448878708240/history", + "content": { + "type": 1, + "value": {}, + "revision": "64e7bd6fa70947c5994b2767", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/137445448878708240", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678373632630, + "dateValidity": 1678388032664, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "75761e5c76644a7e95343594", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138488500273925570/balances", + "content": { + "type": 1, + "value": {}, + "revision": "57025e14b12b426ea1a389e2", + "revision_nr": 1, + "created": 1702563036419, + "modified": 1702563036419 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138488500273925570/history/1689208709356/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "2cd4c06aecb64c00ae29bd4e", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138488500273925570/history/1689208709356", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689208709356, + "id": 1689208709356, + "date_created": { + "type": 6, + "value": 1689208709356 + }, + "date_last_updated": { + "type": 6, + "value": 1689208709356 + }, + "date_of_expiration": { + "type": 6, + "value": 1691800709356 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL" + }, + "revision": "64e70bba4c1a490cb8720465", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138488500273925570/history/1689208709356/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1384.8850.0273.9255-70", + "revision": "d4018e23fbc04d85afb54f65", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138488500273925570/history", + "content": { + "type": 1, + "value": {}, + "revision": "867fc2da32aa4a19ab1df27f", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138488500273925570/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "798b572883e74bfdb098558f", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138488500273925570/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "c989bcc471e74304a3409e7a", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138488500273925570", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689183505496, + "dateValidity": 1689183505496, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "ff8ba9d8d76241818d69da83", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "919038.84000000", + "symbol": "IVIP", + "value": 654.99 + }, + "revision": "f650840d3c1b4fef87823c9b", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/balances", + "content": { + "type": 1, + "value": {}, + "revision": "c10dbfa344844b58a10303c9", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1677847333011/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "0f63dba7fd8a4b8a8fb3079d", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1677847333011", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1677847333011, + "id": 1677847333011, + "date_created": { + "type": 6, + "value": 1677847333011 + }, + "date_last_updated": { + "type": 6, + "value": 1677860564643 + }, + "date_of_expiration": { + "type": 6, + "value": 1680439333011 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677860564643 + }, + "money_release_date": { + "type": 6, + "value": 1677860564643 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "16b3865e7d9b45e79d586d33", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1677847333011/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1385.8527.3860.3328-20", + "revision": "a19401aafa3c4af59d974d1d", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678180078100/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678180078100, + "acquirer_reference": "", + "verification_code": 1678180078100, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "a2aa727198db496e827f2162", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678180078100", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 7131208, + "total_amount": 7131208, + "id": 1678180078100, + "date_created": { + "type": 6, + "value": 1678180078100 + }, + "date_last_updated": { + "type": 6, + "value": 1678180078100 + }, + "date_of_expiration": { + "type": 6, + "value": 1678180078100 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678180078100, + "description": "Compra de 7131208 IVIP por 1000 BRL" + }, + "revision": "618252e9d6e546628887ec96", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678198835623/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678198835623, + "acquirer_reference": "", + "verification_code": 1678198835623, + "net_received_amount": 0, + "total_paid_amount": 2000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "e81eda7d5eda435e8e87fdb0", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678198835623", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 2000, + "total_amount": 2000, + "id": 1678198835623, + "date_created": { + "type": 6, + "value": 1678198835623 + }, + "date_last_updated": { + "type": 6, + "value": 1678198835623 + }, + "date_of_expiration": { + "type": 6, + "value": 1678198835623 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1678198835623 + }, + "revision": "8fc44500e026417ca1f1736a", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678198835623/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "a260624e472f4c38b481dd1a", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678228246387/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678228246387, + "acquirer_reference": "", + "verification_code": 1678228246387, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "1c71af4cef4b4939b474ea89", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678228246387", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1000, + "total_amount": 1000, + "id": 1678228246387, + "date_created": { + "type": 6, + "value": 1678228246387 + }, + "date_last_updated": { + "type": 6, + "value": 1678228246387 + }, + "date_of_expiration": { + "type": 6, + "value": 1678228246387 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1678228246387 + }, + "revision": "c3ab6e3632d74741a4e681f4", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678228246387/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "594fa33cd87d40bb8da80f0f", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1679266874503/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679266874503, + "acquirer_reference": "", + "verification_code": 1679266874503, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "3a54282600cb4199a3264dce", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1679266874503", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1000, + "total_amount": 1000, + "id": 1679266874503, + "date_created": { + "type": 6, + "value": 1679266874503 + }, + "date_last_updated": { + "type": 6, + "value": 1679266874503 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266874503 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1679266874503 + }, + "revision": "dd5ba87f77184b58af5b779c", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1679266874503/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "130908151b1c49918b98ca5c", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1679267008673/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679267008673, + "acquirer_reference": "", + "verification_code": 1679267008673, + "net_received_amount": 0, + "total_paid_amount": 4000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "dfbf3b4bb472489ba6b19e75", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1679267008673", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 23286153, + "total_amount": 23286153, + "id": 1679267008673, + "date_created": { + "type": 6, + "value": 1679267008673 + }, + "date_last_updated": { + "type": 6, + "value": 1679267008673 + }, + "date_of_expiration": { + "type": 6, + "value": 1679267008673 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679267008673, + "description": "Compra de 23286153 IVIP por 4000 BRL" + }, + "revision": "9efdfa9aae0648ce897b863a", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "328e2cd5f0104e9bb3f14d58", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547/details", + "content": { + "type": 1, + "value": {}, + "revision": "cfeccdbdeea54447a3921f3f", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "9957c9eea2b44c4a864fd566", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "history_id": 1684019947547, + "id": 1684019947547, + "date_created": { + "type": 6, + "value": 1684019947547 + }, + "date_last_updated": { + "type": 6, + "value": 1684019947547 + }, + "date_of_expiration": { + "type": 6, + "value": 1686611947547 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true + }, + "revision": "c21106345c5e46d1808b4b4c", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "95bf00f1dac34c84b02f0e62", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684348689379/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684348689379, + "acquirer_reference": "", + "verification_code": 1684348689379, + "net_received_amount": 0, + "total_paid_amount": 1040, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "31e2046802dc41ec9c8c4bb5", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684348689379", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1040, + "total_amount": 1040, + "id": 1684348689379, + "date_created": { + "type": 6, + "value": 1684348689379 + }, + "date_last_updated": { + "type": 6, + "value": 1684348689379 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348689379 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684348689379 + }, + "revision": "f19db2b6049945549bb327bc", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684348689379/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "c8b8d47282044f73bf8cdf12", + "revision_nr": 1, + "created": 1702563036420, + "modified": 1702563036420 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624162871/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624162871, + "acquirer_reference": "", + "verification_code": 1684624162871, + "net_received_amount": 0, + "total_paid_amount": 11040, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "41f075cf05f4427eb82a3cf3", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624162871", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 53772878, + "total_amount": 53772878, + "id": 1684624162871, + "date_created": { + "type": 6, + "value": 1684624162871 + }, + "date_last_updated": { + "type": 6, + "value": 1684624162871 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624162871 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624162871, + "description": "Compra de 53.772.878,00 IVIP por 11.040,00 BRL" + }, + "revision": "aa0bc1422eed410a8d6037bc", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624267520/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624267520, + "acquirer_reference": "", + "verification_code": 1684624267520, + "net_received_amount": 0, + "total_paid_amount": 258.1, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "6b7569c0bae045829ef84c41", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624267520", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 258.1, + "total_amount": 258.1, + "id": 1684624267520, + "date_created": { + "type": 6, + "value": 1684624267520 + }, + "date_last_updated": { + "type": 6, + "value": 1684624267520 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624267520 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684624267520 + }, + "revision": "4c706b4543dd42c2b65141cd", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624267520/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "7d918de1be4d4bd5b706b440", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624311448/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624311448, + "acquirer_reference": "", + "verification_code": 1684624311448, + "net_received_amount": 0, + "total_paid_amount": 258.1, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "c745f662466149578afd8300", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624311448", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1257135, + "total_amount": 1257135, + "id": 1684624311448, + "date_created": { + "type": 6, + "value": 1684624311448 + }, + "date_last_updated": { + "type": 6, + "value": 1684624311448 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624311448 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624311448, + "description": "Compra de 1.257.135,00 IVIP por 258,10 BRL" + }, + "revision": "265fa641ab0d4b0192458ecd", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624493050/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624493050, + "acquirer_reference": "", + "verification_code": 1684624493050, + "net_received_amount": 0, + "total_paid_amount": 12.600000000000001, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "10cfd9c3350f4c898c67a3ef", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624493050", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 12.600000000000001, + "total_amount": 12.600000000000001, + "id": 1684624493050, + "date_created": { + "type": 6, + "value": 1684624493050 + }, + "date_last_updated": { + "type": 6, + "value": 1684624493050 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624493050 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684624493050 + }, + "revision": "0b6efc1729b34d7ca9850bd1", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624493050/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "53f5efeb3a8d4bf1a946c4f6", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684627629023/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684627629023, + "acquirer_reference": "", + "verification_code": 1684627629023, + "net_received_amount": 0, + "total_paid_amount": 13, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "7e3dcd63a2a84b2a9de9e62a", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684627629023", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 13, + "total_amount": 13, + "id": 1684627629023, + "date_created": { + "type": 6, + "value": 1684627629023 + }, + "date_last_updated": { + "type": 6, + "value": 1684627629023 + }, + "date_of_expiration": { + "type": 6, + "value": 1684627629023 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684627629023 + }, + "revision": "41f353fcf0774507ac915c03", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684627629023/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "ef84b4cd4241463cbc0de2b3", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684692136128/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684692136128, + "acquirer_reference": "", + "verification_code": 1684692136128, + "net_received_amount": 0, + "total_paid_amount": 3.2, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "ea956b4853074cf096d61abd", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684692136128", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 3.2, + "total_amount": 3.2, + "id": 1684692136128, + "date_created": { + "type": 6, + "value": 1684692136128 + }, + "date_last_updated": { + "type": 6, + "value": 1684692136128 + }, + "date_of_expiration": { + "type": 6, + "value": 1684692136128 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684692136128 + }, + "revision": "b27f8c4bce2544e185f52dd0", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684692136128/description", + "content": { + "type": 5, + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "262adc6ef7714253955a5f7a", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684710449691/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684710449691, + "acquirer_reference": "", + "verification_code": 1684710449691, + "net_received_amount": 0, + "total_paid_amount": 28.8, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "293960aa0e6b43f09aabad10", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684710449691", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 139785, + "total_amount": 139785, + "id": 1684710449691, + "date_created": { + "type": 6, + "value": 1684710449691 + }, + "date_last_updated": { + "type": 6, + "value": 1684710449691 + }, + "date_of_expiration": { + "type": 6, + "value": 1684710449691 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684710449691, + "description": "Compra de 139.785,00 IVIP por 28,80 BRL" + }, + "revision": "7e2f2e631aeb48d09e5d04ce", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1689025596946/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "16a8ac21c0384d529fe15e06", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1689025596946", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 30550000, + "total_amount": 30550000, + "history_id": 1689025596946, + "id": 1689025596946, + "date_created": { + "type": 6, + "value": 1689025596946 + }, + "date_last_updated": { + "type": 6, + "value": 1689025596946 + }, + "date_of_expiration": { + "type": 6, + "value": 1689025596946 + }, + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP" + }, + "revision": "53dc6698fdaf43c49cac0112", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1689025596946/description", + "content": { + "type": 5, + "value": "Saque de 30.550.000,00 IVIP para a carteira 0xe19A954Bb3bc15ff05fDD30BB22AE96bF4425Bf0", + "revision": "b9f32e9b246e43d788f5483b", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690515792985/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "599598541b844d04b29f9f55", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690515792985", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 48707317, + "total_amount": 48707317, + "history_id": 1690515792985, + "id": 1690515792985, + "date_created": { + "type": 6, + "value": 1690515792985 + }, + "date_last_updated": { + "type": 6, + "value": 1690515792985 + }, + "date_of_expiration": { + "type": 6, + "value": 1690515792985 + }, + "operation_type": "regular_payment", + "status": "refunded", + "status_detail": "cc_discounted_due_default", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1690515792985 + }, + "money_release_date": { + "type": 6, + "value": 1690515792985 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "866e3490a0524012b1c77656", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690515792985/description", + "content": { + "type": 5, + "value": "Devolução de 48.707.317,00 IVIP da carteira 1385.8527.3860.3328-20", + "revision": "9778e1d9f39f4ed4800b747e", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 1047600 + }, + "revision": "659dd7a4091040d89b598513", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690812074851, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 36000000, + "installment_amount": 36000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin" + }, + "revision": "6cf6255f29f840ab8e57f180", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1690812074851", + "revision": "911a6e33576542e5b5cb5ac3", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "4ec86a6ea9bc429091eb7414", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 36000000, + "total_amount": 34920000, + "id": 1690812074851, + "history_id": 1690812074851, + "date_created": { + "type": 6, + "value": 1690812074851 + }, + "date_last_updated": { + "type": 6, + "value": 1691184433764 + }, + "date_of_expiration": { + "type": 6, + "value": 1690812074851 + }, + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": { + "type": 6, + "value": 1691184433764 + }, + "money_release_date": { + "type": 6, + "value": 1691184433764 + }, + "money_release_status": "discounted", + "wasDebited": true + }, + "revision": "cf3f14eb13764a07be4bae08", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/description", + "content": { + "type": 5, + "value": "Saque de 34.920.000,00 IVIP para a carteira 0xe19A954Bb3bc15ff05fDD30BB22AE96bF4425Bf0", + "revision": "d794b777d0854144ba1b75ba", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1691235380464/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691235380464, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1959842, + "installment_amount": 1959842, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "286afec6979b4cc5b326c1f6", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1691235380464/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1691235380464", + "revision": "2f109b49c78b4cc687c81e04", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1691235380464", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 1959842, + "total_amount": 1959842, + "id": 1691235380464, + "history_id": 1691235380464, + "date_created": { + "type": 6, + "value": 1691235380464 + }, + "date_last_updated": { + "type": 6, + "value": 1691235380464 + }, + "date_of_expiration": { + "type": 6, + "value": 1693913780463 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "406cf71a62d040948cde20b7", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1691235380464/description", + "content": { + "type": 5, + "value": "Investimento de 1.959.842,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023", + "revision": "70f44dd802cd405199c2332a", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1693914295943/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693914295943, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1959842, + "installment_amount": 1959842, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "feb7e515c6504ae495203c7a", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1693914295943/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1693914295943", + "revision": "acd51a90efb74f7c954b44a9", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1693914295943", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 1999038.84, + "total_amount": 1999038.84, + "id": "1693914295943", + "history_id": "1693914295943", + "date_created": { + "type": 6, + "value": 1693914295943 + }, + "date_last_updated": { + "type": 6, + "value": 1693914295943 + }, + "date_of_expiration": { + "type": 6, + "value": 1693914295943 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "60e2543b307e4150a4905f47", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1693914295943/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 1.959.842,00 IVIP com um rendimento de +39.196,84 IVIP (2,00%) - Y12XDT27", + "revision": "a1c38a87092a4ad99fac67f0", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history", + "content": { + "type": 1, + "value": {}, + "revision": "7163639d1d3e46b1a67f76b0", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "163cfb0d7bc14eec90460807", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": { + "type": 6, + "value": 1684019947547 + }, + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "915db595b88b4733acb25e6c", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "ad9b137f08ee4e838ab51712", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547/costs", + "content": { + "type": 2, + "value": {}, + "revision": "b743e49a0c104ac3adf83f2b", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "afe49a24de00444f8125e00e", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "6a9a6a2261c942329d04df7a", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": { + "type": 6, + "value": 1684019947547 + }, + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "cedbe9d9691a4fe9ae7eddf6", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "0cff4d83e80141e4ab0e475d", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547/costs", + "content": { + "type": 2, + "value": {}, + "revision": "4b5b70124aa049549b2eabb0", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "61c5cb5ed15240eab968fd66", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "993c9252f96f48219ca2d820", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": { + "type": 6, + "value": 1684019947547 + }, + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "7c187c4a27b84211ad241f47", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "dc5b938bae2b421892ca1a97", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547/costs", + "content": { + "type": 2, + "value": {}, + "revision": "4634e734d7514bf488cd8ee7", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308", + "content": { + "type": 1, + "value": {}, + "revision": "890a6382332a43c2bcbe6387", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "ad185549a6ee448eb55c034b", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": { + "type": 6, + "value": 1684019947547 + }, + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "e9afd3b8f620494088dac8ce", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "114eec932d6f44c29aaecd03", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547/costs", + "content": { + "type": 2, + "value": {}, + "revision": "863508c61dc04dd3ad4b69a4", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309", + "content": { + "type": 1, + "value": {}, + "revision": "1f54982d732545e8b71e9baa", + "revision_nr": 1, + "created": 1702563036421, + "modified": 1702563036421 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "e5d1537e7ed64de7b7367707", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": { + "type": 6, + "value": 1684019947547 + }, + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "5e27cd603edd4f3a8c3a87b4", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "3a3b43fca6734fbc896702e6", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547/costs", + "content": { + "type": 2, + "value": {}, + "revision": "5cacd58ece15403fb0ab86cc", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310", + "content": { + "type": 1, + "value": {}, + "revision": "9299708372d94f8cb2621fb6", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "a1985aa590814877814e62b7", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": { + "type": 6, + "value": 1684019947547 + }, + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "a4aca7b474534041ae821ea3", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "44cf341e527b4c61a3261d17", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547/costs", + "content": { + "type": 2, + "value": {}, + "revision": "27fdf40f326345ffb097d45e", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311", + "content": { + "type": 1, + "value": {}, + "revision": "8a24fcca6e7a4d65891940ed", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "f1d2b36b6dea46708fb2dfd3", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": { + "type": 6, + "value": 1684019947547 + }, + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "37115a0d6a1444c5a708175f", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "50d4afe6c0b645d59f0a18f1", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547/costs", + "content": { + "type": 2, + "value": {}, + "revision": "3ed97f1a1b354fbca7d7bce9", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312", + "content": { + "type": 1, + "value": {}, + "revision": "74b58f2b404d4ad19441290d", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "72e51ea7d9dd4de69bbf15a9", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": { + "type": 6, + "value": 1684019947547 + }, + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "a9f415e625dc4b66a96e85ee", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "e3e6f7ca18e247a5bba13ac1", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547/costs", + "content": { + "type": 2, + "value": {}, + "revision": "7f57b8d1db3c4981a0debfc9", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401", + "content": { + "type": 1, + "value": {}, + "revision": "48b4902d540b4d2da5112ced", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "65ae0c3314904fbb820d4209", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": { + "type": 6, + "value": 1684019947547 + }, + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "abc18300cdca4f09b4d3880e", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "41c24dee1f2b4e28ab25cd18", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547/costs", + "content": { + "type": 2, + "value": {}, + "revision": "1700529b1f0243a183943fdd", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402", + "content": { + "type": 1, + "value": {}, + "revision": "0ec5e2a2e3044a4f82773388", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "be6bf543a5964c3a9abf9c0c", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": { + "type": 6, + "value": 1684019947547 + }, + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "648479bc31154a75bc71697c", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "a5e810286ef34bd7b5cb24bf", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547/costs", + "content": { + "type": 2, + "value": {}, + "revision": "775ea46d8f5647d0899b4dbf", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403", + "content": { + "type": 1, + "value": {}, + "revision": "8d05dd3b82014833b895f527", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "4e37c0a4b54f4cfda2d56725", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": { + "type": 6, + "value": 1684019947547 + }, + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "70645e728e6e4737b6d04ff0", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "0e2facb53bc54ec5b4fc6923", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547/costs", + "content": { + "type": 2, + "value": {}, + "revision": "e6723cf95e044b459c5d55ff", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404", + "content": { + "type": 1, + "value": {}, + "revision": "85fa3015e13f4398bfe95dea", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "314c8b707de3454c8f490722", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": { + "type": 6, + "value": 1684019947547 + }, + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid" + }, + "revision": "bb36e50facca4a818ea8fd43", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "0de31d1396f74d47a3b8771f", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547/costs", + "content": { + "type": 2, + "value": {}, + "revision": "8cf287a9419f4c688b846dbb", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405", + "content": { + "type": 1, + "value": {}, + "revision": "1783a0cc506a4deb880f3d2a", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "e4306f96a03c4078872c1fdc", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 10000, + "limitUsed": 10000, + "analysisRequested": { + "type": 6, + "value": 1683976027691 + }, + "lastReview": { + "type": 6, + "value": 1684007556024 + } + }, + "revision": "81e9ea58ebbd4a9bb44d2588", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677844580252, + "dateValidity": 1678311387021, + "totalValue": 3272.893, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696647600000 + } + }, + "revision": "3b1a64d985e740e3aff8a1a6", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/139283242086295280/balances", + "content": { + "type": 1, + "value": {}, + "revision": "c3c99c56d4a1455e811d98a6", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/139283242086295280/history", + "content": { + "type": 1, + "value": {}, + "revision": "b0e5973ec3f44b52b428a6d4", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/139283242086295280", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696229796136, + "dateValidity": 1696229796165, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696215600000 + } + }, + "revision": "01140ff4e71644fb986e56df", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "220191.58000000", + "symbol": "IVIP", + "value": 29.61 + }, + "revision": "8411fa65190843b6b86f0b7f", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/balances", + "content": { + "type": 1, + "value": {}, + "revision": "580a6b380f8e487daa8408b3", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685110971189/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "42678a7a1dff459ea37412cc", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685110971189", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1600, + "total_amount": 1600, + "history_id": 1685110971189, + "id": 1685110971189, + "date_created": { + "type": 6, + "value": 1685110971189 + }, + "date_last_updated": { + "type": 6, + "value": 1685143958384 + }, + "date_of_expiration": { + "type": 6, + "value": 1687702971189 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685143958384 + }, + "money_release_date": { + "type": 6, + "value": 1685143958384 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "60f5770c822349c89f2b157a", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685110971189/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 1404.9875.6876.3405-00", + "revision": "55e5d12912b344c29ec55146", + "revision_nr": 1, + "created": 1702563036422, + "modified": 1702563036422 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685727229028/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685727229028, + "acquirer_reference": "", + "verification_code": 1685727229028, + "net_received_amount": 0, + "total_paid_amount": 1600, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "fd6b934db004405cae6008e1", + "revision_nr": 1, + "created": 1702563036423, + "modified": 1702563036423 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685727229028", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 5398200, + "total_amount": 5398200, + "id": 1685727229028, + "date_created": { + "type": 6, + "value": 1685727229028 + }, + "date_last_updated": { + "type": 6, + "value": 1685727229028 + }, + "date_of_expiration": { + "type": 6, + "value": 1685727229028 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685727229028, + "description": "Compra de 5.398.200,00 IVIP por 1.600,00 BRL" + }, + "revision": "c204efb3fe7c4366979b8a29", + "revision_nr": 1, + "created": 1702563036423, + "modified": 1702563036423 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1687318007517/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687318007517, + "acquirer_reference": "", + "verification_code": 1687318007517, + "net_received_amount": 0, + "total_paid_amount": 5000000, + "overpaid_amount": 0, + "installment_amount": 5000000, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "5658c387004d495d932a019b", + "revision_nr": 1, + "created": 1702563036423, + "modified": 1702563036423 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1687318007517", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 5000000, + "total_amount": 5000000, + "id": 1687318007517, + "date_created": { + "type": 6, + "value": 1687318007517 + }, + "date_last_updated": { + "type": 6, + "value": 1687318007517 + }, + "date_of_expiration": { + "type": 6, + "value": 1750476407517 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687318007517 + }, + "revision": "050adcd982c944559d3e2333", + "revision_nr": 1, + "created": 1702563036423, + "modified": 1702563036423 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1687318007517/description", + "content": { + "type": 5, + "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2025", + "revision": "b1f3942c7b5044bca5139774", + "revision_nr": 1, + "created": 1702563036423, + "modified": 1702563036423 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1688408922424/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688408922424, + "acquirer_reference": "", + "verification_code": 1688408922424, + "net_received_amount": 0, + "total_paid_amount": 320960, + "overpaid_amount": 0, + "installment_amount": 320960, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "41e2d14cfd854dc3b71e72a9", + "revision_nr": 1, + "created": 1702563036423, + "modified": 1702563036423 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1688408922424", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 320960, + "total_amount": 320960, + "id": 1688408922424, + "date_created": { + "type": 6, + "value": 1688408922424 + }, + "date_last_updated": { + "type": 6, + "value": 1688408922424 + }, + "date_of_expiration": { + "type": 6, + "value": 1691087322424 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688408922424 + }, + "revision": "b6766d65654444248dfe5c98", + "revision_nr": 1, + "created": 1702563036423, + "modified": 1702563036423 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1688408922424/description", + "content": { + "type": 5, + "value": "Investimento de 320.960,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", + "revision": "efe163ab50264fb98feaed42", + "revision_nr": 1, + "created": 1702563036423, + "modified": 1702563036423 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691087650613/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1691087650613, + "acquirer_reference": "", + "verification_code": 1691087650613, + "net_received_amount": 0, + "total_paid_amount": 320960, + "overpaid_amount": 0, + "installment_amount": 320960, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "08b58bba5f264dd6ba79644a", + "revision_nr": 1, + "created": 1702563036423, + "modified": 1702563036423 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691087650613", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 327379.2, + "total_amount": 327379.2, + "id": 1691087650613, + "date_created": { + "type": 6, + "value": 1691087650613 + }, + "date_last_updated": { + "type": 6, + "value": 1691087650613 + }, + "date_of_expiration": { + "type": 6, + "value": 1691087650613 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1691087650613, + "wasDebited": true + }, + "revision": "14c6f4c5e5c64bf5ad85daba", + "revision_nr": 1, + "created": 1702563036423, + "modified": 1702563036423 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691087650613/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 320.960,00 IVIP com um rendimento de +6.419,2 IVIP (2,00%)", + "revision": "0933ed42e79c4c18abae12ed", + "revision_nr": 1, + "created": 1702563036423, + "modified": 1702563036423 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691114916429/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691114916429, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 366669, + "installment_amount": 366669, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "bd52af726752448081dcc87a", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691114916429/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1691114916429", + "revision": "dae2fc0b42d64adabbe35d68", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691114916429", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 366669, + "total_amount": 366669, + "id": 1691114916429, + "history_id": 1691114916429, + "date_created": { + "type": 6, + "value": 1691114916429 + }, + "date_last_updated": { + "type": 6, + "value": 1691114916429 + }, + "date_of_expiration": { + "type": 6, + "value": 1693793316390 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "6459761c299d49adb359db55", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691114916429/description", + "content": { + "type": 5, + "value": "Investimento de 366.669,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", + "revision": "3a264a0fb1314d0fa860fe9e", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793335003/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693793335003, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 366669, + "installment_amount": 366669, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "0aff568002f240caa6010dd9", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793335003/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1693793335003", + "revision": "8d8458cd7097408bb394f598", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793335003", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 374002.38, + "total_amount": 374002.38, + "id": "1693793335003", + "history_id": "1693793335003", + "date_created": { + "type": 6, + "value": 1693793335003 + }, + "date_last_updated": { + "type": 6, + "value": 1693793335003 + }, + "date_of_expiration": { + "type": 6, + "value": 1693793335003 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "8f90c0b55f98432da9fc4127", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793335003/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 366.669,00 IVIP com um rendimento de +7.333,38 IVIP (2,00%) - Y12XDT27", + "revision": "9db1ddfb05f44fde84b71ed4", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793542322/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693793542322, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 411950, + "installment_amount": 411950, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "537751fb24bf4b2ba82e8625", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793542322/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1693793542322", + "revision": "46604861e75d48b28c7b7523", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793542322", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 411950, + "total_amount": 411950, + "id": "1693793542322", + "history_id": "1693793542322", + "date_created": { + "type": 6, + "value": 1693793542322 + }, + "date_last_updated": { + "type": 6, + "value": 1693793542322 + }, + "date_of_expiration": { + "type": 6, + "value": 1696385542321 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "bc3f8cde78c04748b2115de1", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793542322/description", + "content": { + "type": 5, + "value": "Investimento de 411.950,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", + "revision": "e1fd855b7fa4466aae4acd1e", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696395329903/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696395329903, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 411950, + "installment_amount": 411950, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "bc1aa4deed4b482fb040956f", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696395329903/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1696395329903", + "revision": "c78f916547164517999ff234", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696395329903", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "140498756876340500", + "payment_method": "staking", + "original_amount": 420189, + "total_amount": 420189, + "id": "1696395329903", + "history_id": "1696395329903", + "date_created": { + "type": 6, + "value": 1696395329903 + }, + "date_last_updated": { + "type": 6, + "value": 1696395329903 + }, + "date_of_expiration": { + "type": 6, + "value": 1696395329903 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "b67ae1d9ae854c9d87858600", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696395329903/description", + "content": { + "type": 5, + "value": "Resgate do investimento staking de 411.950,00 IVIP com um rendimento de +8.239,00 IVIP (2,00%) - Y12XDT27", + "revision": "07b67b23c447440280bc9a79", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696472422028/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696472422028, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200000, + "installment_amount": 200000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "d988d71b16c84a069a1d1d42", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696472422028/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1696472422028", + "revision": "6f06278fb4be447db36afbdf", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696472422028", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "140498756876340500", + "payment_method": "staking", + "original_amount": 200000, + "total_amount": 200000, + "id": "1696472422028", + "history_id": "1696472422028", + "date_created": { + "type": 6, + "value": 1696472422028 + }, + "date_last_updated": { + "type": 6, + "value": 1696472422028 + }, + "date_of_expiration": { + "type": 6, + "value": 1699150821996 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "63dae3c8ae4d44db859d65e2", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696472422028/description", + "content": { + "type": 5, + "value": "Investimento de 200.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", + "revision": "645acb41999d4cbb9cdc5447", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history", + "content": { + "type": 1, + "value": {}, + "revision": "d20d8946fe1b49cbb380760a", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "ad80f563c24743228e71b9f5", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "a97589e230274319bf3708d3", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684358980805, + "dateValidity": 1684358980805, + "totalValue": 82.79825942258582, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696647600000 + } + }, + "revision": "9bfbac497f4f4d1d9bf82ebc", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/142977693689888340/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "2112486.00000000", + "symbol": "IVIP", + "value": 239.28 + }, + "revision": "32eca7fb03c044948e3c7c4d", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/142977693689888340/balances", + "content": { + "type": 1, + "value": {}, + "revision": "536bd2af2fb748c1a063b2b5", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689206251825/details", + "content": { + "type": 1, + "value": { + "costs": {} + }, + "revision": "2809453bac0c411baf1bc3ea", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689206251825", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 5000, + "total_amount": 5000, + "history_id": 1689206251825, + "id": 1689206251825, + "date_created": { + "type": 6, + "value": 1689206251825 + }, + "date_last_updated": { + "type": 6, + "value": 1689207259742 + }, + "date_of_expiration": { + "type": 6, + "value": 1691798251825 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689207259742 + }, + "money_release_date": { + "type": 6, + "value": 1689207259742 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "2a8c0f57e5c7499893c6a92d", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689206251825/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 5.000,00 para a carteira iVip 1429.7769.3689.8883-40", + "revision": "e8b2e7ef2b9147509f18cd47", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689208259450/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689208259450, + "acquirer_reference": "", + "verification_code": 1689208259450, + "net_received_amount": 0, + "total_paid_amount": 5000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "", + "costs": {} + }, + "revision": "5eaa28f4c0af4e279306881a", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689208259450", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 2112486, + "total_amount": 2112486, + "id": 1689208259450, + "date_created": { + "type": 6, + "value": 1689208259450 + }, + "date_last_updated": { + "type": 6, + "value": 1689208259450 + }, + "date_of_expiration": { + "type": 6, + "value": 1689208259450 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689208259450, + "description": "Compra de 2.112.486,00 IVIP por 5.000,00 BRL" + }, + "revision": "85f83d02ff6a487e98b0a8e9", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history", + "content": { + "type": 1, + "value": {}, + "revision": "e9c147931b7242a5b9b50293", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/142977693689888340/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "6543e8ba5c3b49e1bcbecd4d", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/142977693689888340/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "2ab2a7aef1c047b58b70e55d", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/142977693689888340", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689206116426, + "dateValidity": 1689206116426, + "totalValue": 1030, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697079600000 + } + }, + "revision": "ce4f27563ca840d7a4a04b5e", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/145100373829536670/balances", + "content": { + "type": 1, + "value": {}, + "revision": "a6108b426f7b4a65b574bcbe", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/145100373829536670/history", + "content": { + "type": 1, + "value": {}, + "revision": "f8e10b9b30b14256a230508a", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/145100373829536670", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679078857171, + "dateValidity": 1679078857171, + "totalValue": 0, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696647600000 + } + }, + "revision": "25a801c0dea34d0ab8e72c5c", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146025594361679260/balances", + "content": { + "type": 1, + "value": {}, + "revision": "1ebaf082cd574390880c6504", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146025594361679260/history", + "content": { + "type": 1, + "value": {}, + "revision": "188d8373556e4651b19481a6", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146025594361679260", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679356008303, + "dateValidity": 1679356008303, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "d97d2b35aa7c44888d7de95a", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193775313990370/balances", + "content": { + "type": 1, + "value": {}, + "revision": "54fd4ca3eb7f4bb4a8049fb9", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697568433538 + } + }, + "revision": "b4648dcf48e44a87b033a562", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694976433538, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "3b9f1eeb499f4953bcf60d04", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/146193775313990370/history/1694976433538", + "revision": "6623b4129fd5432e9f8f951b", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": "1694976433538", + "history_id": "1694976433538", + "date_created": { + "type": 6, + "value": 1694976433538 + }, + "date_last_updated": { + "type": 6, + "value": 1694976433538 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment" + }, + "revision": "34c01c10eeb843c2a7e69128", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538/description", + "content": { + "type": 5, + "value": "Deposito de um valor 20,00 BRL para a carteira iVip 1461.9377.5313.9903-70", + "revision": "a3b99b37e44948fda913e9fc", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history", + "content": { + "type": 1, + "value": {}, + "revision": "be6501fafaa94c9e841cad76", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193775313990370/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "18d2268e62d246afa1854d5b", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193775313990370/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "4ded939dce1940fe8a49b9db", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193775313990370", + "content": { + "type": 1, + "value": { + "dataModificacao": 1694975442899, + "dateValidity": 1694975443028, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696906800000 + } + }, + "revision": "6cdbcb89dbd144d4839b9f10", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193999422064450/balances", + "content": { + "type": 1, + "value": {}, + "revision": "c221c32483f946b5bd040a51", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193999422064450/history", + "content": { + "type": 1, + "value": {}, + "revision": "85d596e7592e4ee08e4c18d8", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193999422064450/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "4a99a25c62c4470abe935c47", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193999422064450/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "a25e72c57e284c1bafa3d4e2", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193999422064450", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677393088450, + "dateValidity": 1677393088450, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "e419d392a47b4f4fb1b47492", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146386157285818500/balances", + "content": { + "type": 1, + "value": {}, + "revision": "5b543638bcd04368b3a56326", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146386157285818500/history", + "content": { + "type": 1, + "value": {}, + "revision": "2196c6fd9980490a957712ba", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146386157285818500", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677820583824, + "dateValidity": 1677838584623, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "e80b6c447afd424caae3435a", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/balances", + "content": { + "type": 1, + "value": {}, + "revision": "e3738c81df6a48e3983e8c9e", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.9900000000000001 + }, + "revision": "e4c5dc2368a54cd4953b7376", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "6106f32f5c9e435c96447b02", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "9906e4821cc74a3c95a19d1b", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "1ce7c3e3ad0a426986111548", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 100.99, + "overpaid_amount": 0, + "installment_amount": 0 + }, + "revision": "9f489705ba2b4722a71bd750", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/qr_code", + "content": { + "type": 5, + "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter5566184887363046119", + "revision": "aed3c8ad1ef943a1998133bb", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/ticket_url", + "content": { + "type": 5, + "value": "https://www.mercadopago.com.br/payments/55661848873/ticket?caller_id=1310149122&hash=e13553d1-ab9f-45c3-ab92-c23df003b316", + "revision": "092176cdc1a84bd89cffa2ae", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/qr_code_base64", + "content": { + "type": 5, + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIxklEQVR42u3dW27kNhAFUO5A+9+ldqAgwWDcYt2inGSAZMSjD8N2d0uH/Veo17h+o+sctLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/Xjvm6/jxv69Xp09Pb/nzdrePnT9+/PW/9KAfb6mfnRi0tLS0tLS0tLS0tLSbaI9C+fztvAO+7nT+PNBxf+zxeaDpBOW4t49lFS0tLS0tLS0tLS0t7QbazwCyGqdI8MudT3COmDyc8Om5hUFLS0tLS0tLS0tLS7ut9rrHiV/P+SyGrDm9+mr+87pHm7S0tLS0tLS0tLS0tLRzNFcVJQicqi5v13TclC2c3kxLS0tLS0tLS0tLS7u3Ngd36bFnaVeb7l5eGE+ydfEnLS0tLS0tLS0tLS3t+7VpSsl/8ONfzFShpaWlpaWlpaWlpaX9nbXrq40EP8PL8x4O1vfloSVNOWa5aGlpaWlpaWlpaWlp365NRZNnl787Fy1xKRYtB5qGTl5l/OQyu0dLS0tLS0tLS0tLS/s+bZqpX0aQXPdOtdQSd3WD+tMs/yusZhvdkH9aWlpaWlpaWlpaWtp3a9M+tTKeP0WCdTL/p+JaJAXLhMp6PlpaWlpaWlpaWlpa2n20JSZsRz5eJbtX7n6G7F5y1+8hP42WlpaWlpaWlpaWlnYD7Xqp2qRIh0xPbF9t84YJREtLS0tLS0tLS0tLu4W2tL+lBreauitpuqtPzo28JeDMtwp4WlpaWlpaWlpaWlra12tzSJfmhtQl1qnBbZHEm2o82y68g5aWlpaWlpaWlpaWdidt+i0PFLm6+SJX2KA9FWHeyjHLWJIR8LS0tLS0tLS0tLS0tFtop0RcKq6s5FIbeS22W6cCzul9Jaw9aGlpaWlpaWlpaWlpt9O226jTMJJ0vuJJceLolq+NUJ1JS0tLS0tLS0tLS0u7lTa1xKXgLg/gb5N9YzGSMoWmz7vhaGlpaWlpaWlpaWlpX6UtY0RS+m3cb3KWmsyQkusHRz5VbNLS0tLS0tLS0tLS0u6oTbm1Zgxkvh7Hl5ThlMcib0hLS0tLS0tLS0tLS7uT9pa/Sy1x7ZrqHGM2icI06ySlAsNESVpaWlpaWlpaWlpa2ndrz9yklu9UM3llT9qqwa3L343pLs8xLy0tLS0tLS0tLS0t7Xu0tzhx2oRWKjHHvYXtDJ5RutxKiFhnUE5B5UPMS0tLS0tLS0tLS0tL+yJt7k9r/ixjRL7XSdfypshyeoGWlpaWlpaWlpaWlnYL7VNe7gi3axJxeV7JVTrf2gLO6RuhpaWlpaWlpaWlpaXdQpsfNsLwxxT6pa65NhU44Ztk37IbjpaWlpaWlpaWlpaW9o3aEUbsj/znFOtN8V+JOx/zd0Vbv0NaWlpaWlpaWlpaWtottGkESUrnPc3tv40ladvk0uK29uG0tLS0tLS0tLS0tLTv1x6hfDL1sV0lEZdLL2sjXAovF+MnL1paWlpaWlpaWlpa2r20zT3TFuxSG3nmrrnS/nZ2GcTHjjtaWlpaWlpaWlpaWtq3a9NkkLJy7SypuzQpsm2Ty+1v6bnjcaYKLS0tLS0tLS0tLS3t27Sju6aKyDKC5OgmnNQzpwg0V11OBZe0tLS0tLS0tLS0tLQbaEs0dy4ptZnt6q5Uibmu4pyCT1paWlpaWlpaWlpa2p20V7nx1A2XR5Uc3XNSBDrl+VZfwUMukpaWlpaWlpaWlpaW9lXa6/6OM8wmuUJZ5AhxZ5MefKqwTL/R0tLS0tLS0tLS0tLuo20WrS0630anbZaqpVxiXpn9rapLWlpaWlpaWlpaWlral2mvboL/Y/lk6WhrtmBPKwByyecoAyZpaWlpaWlpaWlpaWm30JZd1bXwcepjSzm4Endez0vVpuBzlOJPWlpaWlpaWlpaWlranbQ16ktTStYJwLIj+wyfGN1q7ZOWlpaWlpaWlpaWlnZr7ehWrl0hxrzypJF2UXYbi6bvgZaWlpaWlpaWlpaWdjttEwSmELG0xNXutZSrS0NQ0vm6WZW0tLS0tLS0tLS0tLRv1n6+N5VKNh1tizLLUXrb8oGOru5z+gQtLS0tLS0tLS0tLe27tW3727I/beSM37FYmT1l8koAWb85WlpaWlpaWlpaWlraLbQpMGwjxkUR5hG65lI9Z1qPPb16PGT3aGlpaWlpaWlpaWlpX6VNe9LKp2rur0SHacxJwre72BZBJS0tLS0tLS0tLS0t7eu1i23UzWTHfMjmpK1sijG/OVOFlpaWlpaWlpaWlpb2Zdo2sVfzbe2Ukm/MHClB5QivHrHGk5aWlpaWlpaWlpaWdgPtFEo2JZCLR5y54HL6CtIMyvSl0dLS0tLS0tLS0tLS7qNNDWnT59NU/24Afwwln7ZlX4tcIi0tLS0tLS0tLS0t7fu1TQy3HkbS1mmWCLQa2xuUWlBaWlpaWlpaWlpaWtoNtG37W44YU21kXWxdijBTVFr75765s5uWlpaWlpaWlpaWlvaN2tHNh2xCyacwtNZVTrJ1KElLS0tLS0tLS0tLS7uPNl2L4Y9tiHiUz+aEXTME5TPtN120tLS0tLS0tLS0tLTv1o75Wg3qn4LAVHBZQslUdVnd/2CqPy0tLS0tLS0tLS0t7Vu0Rwggm/LJsii7ni8VV5bzTVHp34kiaWlpaWlpaWlpaWlpX6ld1FqO0Op2hM9WSj7p6gRp7xotLS0tLS0tLS0tLe3e2jTycQr42mUAeWdbM8a/nJSWlpaWlpaWlpaWlnZvbTti/7on4s4wXySFg7V1rg0bH3Z209LS0tLS0tLS0tLSvlK7xufosM39jfvu61VfXOmue551SUtLS0tLS0tLS0tL+z5tLXzMTWpnSAA+FmF+5u+a0LQ0xy2rLmlpaWlpaWlpaWlpad+m/f9ftLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/TPsHcCgepoe7LrMAAAAASUVORK5CYII=", + "revision": "b819bd4d9b2a45ff82344b44", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/costs", + "content": { + "type": 2, + "value": {}, + "revision": "8107a8e926834facb61e6dc7", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 100, + "total_amount": 100.99, + "history_id": 1678652275580, + "id": 55661848873, + "date_created": { + "type": 6, + "value": 1678652276428 + }, + "date_last_updated": { + "type": 6, + "value": 1678738862000 + }, + "date_of_expiration": { + "type": 6, + "value": 1678738676084 + }, + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "cancelled", + "status_detail": "expired", + "currency_id": "BRL" + }, + "revision": "c3a6942436c045b096866b40", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/description", + "content": { + "type": 5, + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1470.0699.3684.7822-00", + "revision": "b7d5ccf9cb7c46868699aa8a", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history", + "content": { + "type": 1, + "value": {}, + "revision": "e65d09443e66485ba787d365", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147006993684782200", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678651931786, + "dateValidity": 1678669931823, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "48972a80d8c847ba8a4066d3", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147062074886654460/balances", + "content": { + "type": 1, + "value": {}, + "revision": "3c01dfb2c87c49b592e123e5", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147062074886654460/history", + "content": { + "type": 1, + "value": {}, + "revision": "8805806a09a5418bb4aee94a", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147062074886654460/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "d1ff59f8f4114ce88e04d04b", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147062074886654460/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "7f00e6098dec439aba6f94b5", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147062074886654460", + "content": { + "type": 1, + "value": { + "dataModificacao": 1685823720836, + "dateValidity": 1685823720836, + "totalValue": 0, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } + }, + "revision": "cd2197242dfd490cb58d6f2a", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/149922673320977100/balances", + "content": { + "type": 1, + "value": {}, + "revision": "bcc42bb376db47d28d1e99e4", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/149922673320977100/history", + "content": { + "type": 1, + "value": {}, + "revision": "d9d5af4ecd58406680c834fa", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/149922673320977100", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678155962477, + "dateValidity": 1678510544290, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "5e3bdcc8113f47d0be14d0e2", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/151721738402511580/balances", + "content": { + "type": 1, + "value": {}, + "revision": "70291993ca2c489b9f9d7b86", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/151721738402511580/history", + "content": { + "type": 1, + "value": {}, + "revision": "0b81c62aa6bb4d6f8a59a9fc", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/151721738402511580", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696981676486, + "dateValidity": 1696981676516, + "currencyType": "USD" + }, + "revision": "822bbe84526b4ac68ad71a56", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/balances", + "content": { + "type": 1, + "value": {}, + "revision": "88802b99e421422c846150be", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1696549725001 + } + }, + "revision": "85b80b3eba0f4ed88ed64b2b", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693957725002, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "87eb7aa32d2248a89c7c03d6", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/152557644739400160/history/1693957725002", + "revision": "e6aaa5360c724cd9b0a043a4", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "id": "1693957725002", + "history_id": "1693957725002", + "date_created": { + "type": 6, + "value": 1693957725002 + }, + "date_last_updated": { + "type": 6, + "value": 1693961791127 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "date_approved": { + "type": 6, + "value": 1693961791127 + }, + "money_release_date": { + "type": 6, + "value": 1693961791127 + }, + "money_release_status": "approved", + "wasDebited": true + }, + "revision": "13a4b100c1c649c1a270b3d8", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002/description", + "content": { + "type": 5, + "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 1525.5764.4739.4001-60", + "revision": "39429538b6654eccbf71a83e", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1694615393430/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694615393430, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "costs": {} + }, + "revision": "e9b91a702f364f9fa843de22", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1694615393430/details/external_resource_url", + "content": { + "type": 5, + "value": "https://ivipcoin-api.com/v1/finances/info_by/152557644739400160/history/1694615393430", + "revision": "7a5abdeb803b482aabe31c72", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1694615393430", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": "1694615393430", + "history_id": "1694615393430", + "date_created": { + "type": 6, + "value": 1694615393430 + }, + "date_last_updated": { + "type": 6, + "value": 1694615393430 + }, + "date_of_expiration": { + "type": 6, + "value": 1757773793429 + }, + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited" + }, + "revision": "150172e327b84359b8cc886a", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1694615393430/description", + "content": { + "type": 5, + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 13/09/2025 - P9A02KSL", + "revision": "06af2d95ee7440b0a6328385", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history", + "content": { + "type": 1, + "value": {}, + "revision": "03f77ddca7b243ae8c82e50c", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "ad36ca312b7c4e4bbee6e78e", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "9be684002ba44f908c5c7c17", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/152557644739400160", + "content": { + "type": 1, + "value": { + "dataModificacao": 1693436516681, + "dateValidity": 1693436516720, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1695092400000 + } + }, + "revision": "3110101f3b14478285e4b8f3", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__", + "content": { + "type": 1, + "value": {}, + "revision": "351542a6a2484242a827e8e0", + "revision_nr": 1, + "created": 1702563036424, + "modified": 1702563036424 + } + } +] \ No newline at end of file diff --git a/test/resultWithPath.ts b/test/resultWithPath.ts new file mode 100644 index 00000000..8aa006d5 --- /dev/null +++ b/test/resultWithPath.ts @@ -0,0 +1,239 @@ +import fs from "fs"; +import path from "path"; +import { randomUUID } from "crypto"; + +type NodeValueType = keyof typeof nodeValueTypes; + +type Result = { + path: string; + content: { + type: number; + value: Record | string | number | any; + revision: string; + revision_nr: number; + created: number; + modified: number; + }; +}; + +const nodeValueTypes = { + EMPTY: 0, + OBJECT: 1, + ARRAY: 2, + NUMBER: 3, + BOOLEAN: 4, + STRING: 5, + DATETIME: 6, + BIGINT: 7, + BINARY: 8, + REFERENCE: 9, +} as const; + +function generateShortUUID(): string { + const fullUUID = randomUUID(); + const shortUUID = fullUUID.replace(/-/g, "").slice(0, 24); + return shortUUID; +} +function getType(value: unknown): number { + if (Array.isArray(value)) { + return nodeValueTypes.ARRAY; + } else if (value && typeof value === "object") { + return nodeValueTypes.OBJECT; + } else if (typeof value === "number") { + return nodeValueTypes.NUMBER; + } else if (typeof value === "boolean") { + return nodeValueTypes.BOOLEAN; + } else if (typeof value === "string") { + return nodeValueTypes.STRING; + } else if (typeof value === "bigint") { + return nodeValueTypes.BIGINT; + } else if (typeof value === "object" && (value as any).type === 6) { + return nodeValueTypes.DATETIME; + } else { + return nodeValueTypes.EMPTY; + } +} + +function transform(json: Record, prefix: string = ""): Result[] { + const results: Result[] = []; + const nonObjectKeys: Record = {}; + const arrayResults: Result[] = []; + let otherObject; + + for (const key in json) { + const currentPath = `${prefix.replace(/^\//, "")}/${key.replace(/\*\*/g, "")}`; + const currentValue = json[key]; + const valueType = getType(currentValue); + + if (typeof currentValue === "string" && currentValue.length >= 50) { + arrayResults.push({ + path: currentPath, + content: { + type: valueType, + value: currentValue, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }); + // console.log(currentValue, "string"); + } + + if (Array.isArray(currentValue) && currentValue.length > 0 && currentValue.length <= 49) { + // Se for um array com valores, itera por cada elemento + for (let i = 0; i < currentValue.length; i++) { + results.push(...transform(currentValue[i] as Record, `${currentPath}[${i}]`)); + } + // Adiciona um resultado para o array vazio + arrayResults.push({ + path: currentPath, + content: { + type: nodeValueTypes.ARRAY, + value: {}, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }); + } else if (valueType === nodeValueTypes.OBJECT) { + results.push(...transform(currentValue as unknown as Record, currentPath)); + } else { + nonObjectKeys[key] = currentValue; + let ob = nonObjectKeys; + otherObject = Object.entries(ob) + .filter(([key, value]) => typeof value !== "string" || value.length < 49) + .reduce((acc, [key, value]) => { + acc[key] = value; + return acc; + }, {} as Record); + } + } + + // Adiciona um único resultado para chaves não objeto + + if (Object.keys(nonObjectKeys).length > 0) { + if (typeof otherObject === "object" && otherObject !== null) { + const nonObjectResult: Result = { + path: `${prefix.replace(/^\//, "")}`, + content: { + type: getType(nonObjectKeys), + value: filterKeysFromObject(otherObject), + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + + if (nonObjectResult.path) { + results.push(nonObjectResult); + } + } else { + console.error("otherObject is not an object"); + } + } + + function filterKeysFromObject(obj) { + function checkIsValidDate(string) { + // Expressão regular para validar o padrão da string de data + const datePattern = /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d{3})?([+-]\d{2}:\d{2})?Z?$/; + + if (datePattern.test(string)) { + let date = new Date(string); + return !isNaN(date.getTime()); + } + + return false; + } + + function processObject(inputObj) { + const filteredObject = {}; + + for (const key in inputObj) { + if (checkIsValidDate(inputObj[key])) { + let newDate = new Date(inputObj[key]); + filteredObject[key] = { + type: 6, + value: newDate.getTime(), + }; + } else if (typeof inputObj[key] === "object" && inputObj[key] !== null) { + // Recursively process nested objects + filteredObject[key] = processObject(inputObj[key]); + } else { + // Copy other types of values as is + filteredObject[key] = inputObj[key]; + } + } + + return filteredObject; + } + + return processObject(obj); + } + + // Se não há chaves não objeto, adiciona um resultado com objeto vazio + if (Object.keys(nonObjectKeys).length === 0) { + const nonObjectResult: Result = { + path: `${prefix.replace(/^\//, "")}`, + content: { + type: getType({}), + value: {} as any, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + if (nonObjectResult.path) { + results.push(nonObjectResult); + } + } + + // Adiciona resultados para arrays + results.push(...arrayResults); + + return results; +} + +function readPath() { + const fileName = "__movement_wallet__.json"; + + const filePath = path.join(__dirname, fileName); + + fs.readFile(filePath, "utf8", (err, data) => { + if (err) { + console.error("Error reading the file:", err); + return; + } + + try { + var dataToArray = JSON.parse(data); + + const result = transform(dataToArray); + + const dataJSONModel = JSON.stringify(result, null, 2); + + function afterRestructureSaveIntoJSONFile(dataWithOutPathFromMongodb) { + console.log(new Date().getSeconds(), "started"); + + const fileAddress: any = "./test/outputResultWithPathJSON.json"; + fs.writeFile(fileAddress, dataWithOutPathFromMongodb, (error) => { + if (error) { + console.error("Algum erro aconteceu", error); + } else { + console.log(fileAddress); + } + }); + + return dataWithOutPathFromMongodb; + } + afterRestructureSaveIntoJSONFile(dataJSONModel); + } catch (parseError) { + console.error("Error parsing JSON:", parseError); + } + }); + console.log(new Date().getSeconds(), "end"); +} +readPath(); diff --git a/test/set.ts b/test/set.ts new file mode 100644 index 00000000..73ae99e7 --- /dev/null +++ b/test/set.ts @@ -0,0 +1,705 @@ +import { MongoClient, Collection, Db } from "mongodb"; + +import fs from "fs"; +// import path from "path"; +import { randomUUID } from "crypto"; + +function generateShortUUID(): string { + const fullUUID = randomUUID(); + const shortUUID = fullUUID.replace(/-/g, "").slice(0, 24); + return shortUUID; +} +// type NodeValueType = keyof typeof nodeValueTypes; +// import Node, { nodeValueTypes } from "./../src/server/services/database/Node/index"; +import { PathInfo } from "ivipbase-core"; + +(async () => { + const client: MongoClient = await MongoClient.connect("mongodb://manager:9Hq91q5oExU9biOZ7yq98I8P1DU1ge@ivipcoin-api.com:4048"); + const db: Db = client.db("root"); + const collection: Collection = db.collection("ivipcoin-db"); + + type Result = { + path: string; + content: { + type: any; + value: Record | string | number; + revision: string; + revision_nr: number; + created: number; + modified: number; + }; + }; + + function set(path: string, value: any, options: { assert_revision?: string } = {}): Result[] { + const results: Result[] = []; + + // const pathParts = path.split("/"); + // let currentPath = ""; + + // PathInfo.get(path).keys.forEach((part, i) => { + // currentPath += (i > 0 ? "/" : "") + part; + + // const arrayResult = { + // path: currentPath.substring(1), + // content: { + // type: 2, + // value: {}, + // revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", + // revision_nr: 1, + // created: Date.now(), + // modified: Date.now(), + // }, + // }; + // if (arrayResult.path) { + // results.push(arrayResult); + // } + // }); + + if (path.trim() === "") { + throw new Error(`Invalid path node`); + } + + const pathInfo = PathInfo.get(path); + const theKey: any = pathInfo.key; + + if (Array.isArray(value) && value.length > 0) { + // If 'value' is an array, process each object in the array + value.forEach((obj, i) => { + const currentPath = `${path}[${i}]`; // Include the array index in the path + + const processedValue = { + [theKey]: obj, + }; + + const arrayResult: Result = { + path: currentPath, + content: { + type: 2, // Assuming it's still type 2 for non-array items + value: processedValue, + revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + + results.push(arrayResult); + }); + const arrayResult: Result = { + path: pathInfo.path, + content: { + type: 2, // Assuming it's still type 2 for non-array items + value: {}, + revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(arrayResult); + } else { + // If 'value' is not an array, create a single object + const processedValue = { + [theKey]: value, + }; + + if (typeof value === "string") { + const processedValue = { + [theKey]: value, + }; + const nonObjectResult: Result = { + path: pathInfo.parentPath as string, + content: { + type: 2, + value: processedValue, + revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(nonObjectResult); + } + } + if (typeof value === "object" && !Array.isArray(value)) { + // Encontrar chaves com valores maiores que 50 + const valueArray = Object.entries(value); + valueArray.forEach(([key, valueOfObj]) => { + const result = `${key}: ${valueOfObj}`; + + if (result.length >= 50) { + const nonObjectResult: Result = { + path: `${pathInfo.path}/${key}` as string, + content: { + type: 2, + value: valueOfObj as string, + revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(nonObjectResult); + } + }); + + const otherObject = Object.entries(value as any) + .filter(([key, value]) => typeof value !== "string" || value.length < 49) + .reduce((acc, [key, value]) => { + acc[key] = value; + return acc; + }, {} as Record); + const nonObjectResult: Result = { + path: (pathInfo.path + "DEUS") as string, + content: { + type: 2, + value: otherObject as any, + revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + + // Return the result (if necessary) + results.push(nonObjectResult); + } + return results; + } + + //Example usage: + // const rsul = set("/example/curenty_value_pedro_rosada_ivipi_tiago", [{ prop1: "value1" }, { prop2: "value2" }]); + // const x = set("ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/costs", [{ title: "Taxa de serviço", label: "Taxa de R$ 3,49", amount: 3.49 }]); + // console.log("-----------------------------------------------------------------------------"); + + // console.log(JSON.stringify(x, null, 2)); + // console.log("-----------------------------------------------------------------------------"); + + // console.log(JSON.stringify(rsul, null, 2)); + + // //Exemplo de uso: + + // //Exemplo de uso: + // console.log("-----------------------------------------------------------------------------"); + + //Exemplo de uso: + + // const xx = set("ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/currency_id", "DDDDD"); + // console.log(JSON.stringify(xx, null, 2)); + // console.log("-----------------------------------------------------------------------------"); + + // const t = set("ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/currency_id", { + // installments: 1, + // payment_method_reference_id: "10194042832", + // acquirer_reference: "Deposito de um valor R$ 60,00 para a carteira iVip 0005.2314.7298.6693-13", + // verification_code: "10194042832", + // net_received_amount: 0, + // total_paid_amount: 606.49, + // overpaid_amount: 0, + // installment_amount: "Deposito de um valor R$ 60,00 para a carteira iVip 0005.2314.7298.6693-13", + // financial_institution: "bradesco", + // }); + // console.log(JSON.stringify(t, null, 2)); + + // console.log("-----------------------------------------------------------------------------"); +})(); + +// OLH, EU TENHO ESSE PATH +// "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/currency_id" + +// "ivipcoin-db::__movement_wallet__" + +// "ivipcoin-db::__movement_wallet__/000523147298669313" + +// "ivipcoin-db::__movement_wallet__/000523147298669313/history" +// "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788" + +// type Result = { +// path: string; +// content: { +// type: any; +// value: Record | string | number; +// revision: string; +// revision_nr: number; +// created: number; +// modified: number; +// }; +// }; + +// function processObject(obj, pathInfo, results, options) { +// const currentPath = pathInfo.path; +// const { assert_revision = "lnt02q7v0007oohx37705737" } = options; +// const MAX_KEY_LENGTH = 50; + +// if (typeof obj !== "object" || Array.isArray(obj)) { +// // Caso seja um array, você pode adicionar lógica específica aqui, se necessário. +// return; +// } + +// const nonObjectKeys = {}; +// let otherObject; +// let maior; + +// for (const [key, value] of Object.entries(obj)) { +// const childPath = `${currentPath}/${key}`; + +// if (Array.isArray(value)) { +// // Se o valor for um array, processe cada elemento do array +// value.forEach((element, index) => { +// const arrayElementPath = `${childPath}[${index}]`; +// processObject(element, { path: arrayElementPath }, results, options); +// }); +// const resultContent = { +// path: childPath, // Use o caminho específico para valores longos +// content: { +// type: 2, +// value: {}, +// revision: assert_revision, +// revision_nr: 1, +// created: Date.now(), +// modified: Date.now(), +// }, +// }; +// results.push(resultContent); +// } else if (typeof value === "object") { +// // Se o valor é um objeto, chame a função novamente recursivamente +// processObject(value, { path: childPath }, results, options); +// } else { +// if (String(value).length >= MAX_KEY_LENGTH) { +// // Se o valor (considerando como string) tem mais de 50 caracteres, adicione um resultado para ele +// const resultContent = { +// path: childPath, // Use o caminho específico para valores longos +// content: { +// type: 2, +// value: value, +// revision: assert_revision, +// revision_nr: 1, +// created: Date.now(), +// modified: Date.now(), +// }, +// }; +// results.push(resultContent); +// } else { +// nonObjectKeys[key] = value; +// if (String(value).length >= MAX_KEY_LENGTH) { +// maior = Object.entries(nonObjectKeys) +// .filter(([k, v]) => typeof v !== "string" || String(v).length >= MAX_KEY_LENGTH) +// .reduce((acc, [k, v]) => { +// acc[k] = v; +// return acc; +// }, {}); +// } +// } +// } +// } + +// if (Object.keys(nonObjectKeys).length > 0) { +// const resultContent = { +// path: currentPath, +// content: { +// type: 1, +// value: otherObject || nonObjectKeys, +// revision: assert_revision, +// revision_nr: 1, +// created: Date.now(), +// modified: Date.now(), +// }, +// }; +// results.push(resultContent); +// } + +// if (maior) { +// const resultContent = { +// path: `${currentPath}/maior`, // Caminho específico para os objetos maiores +// content: { +// type: 1, +// value: maior, +// revision: assert_revision, +// revision_nr: 1, +// created: Date.now(), +// modified: Date.now(), +// }, +// }; +// results.push(resultContent); +// } +// } + +// function set(path: string, value: any, options: { assert_revision?: string } = {}): Result[] { +// const results: Result[] = []; + +// if (path.trim() === "") { +// throw new Error(`Invalid path node`); +// } + +// const pathInfo = PathInfo.get(path); + +// if (typeof value === "object" && !Array.isArray(value)) { +// processObject(value, { path: pathInfo.path }, results, options); +// } +// let currentPath = ""; + +// PathInfo.get(path).keys.forEach((part, i) => { +// currentPath += (i > 0 ? "/" : "") + part; + +// if (!Array.isArray(value)) { +// const arrayResult = { +// path: currentPath.substring(1), +// content: { +// type: 2, +// value: {}, +// revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", +// revision_nr: 1, +// created: Date.now(), +// modified: Date.now(), +// }, +// }; +// if (arrayResult.path) { +// results.push(arrayResult); +// } +// } +// }); + +// const theKey: any = pathInfo.key; + +// if (Array.isArray(value) && value.length > 0) { +// // If 'value' is an array, process each object in the array +// value.forEach((obj, i) => { +// const currentPath = `${path}[${i}]`; // Include the array index in the path + +// const processedValue = { +// [theKey]: obj, +// }; + +// const arrayResult: Result = { +// path: currentPath, +// content: { +// type: 2, // Assuming it's still type 2 for non-array items +// value: processedValue, +// revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", +// revision_nr: 1, +// created: Date.now(), +// modified: Date.now(), +// }, +// }; + +// results.push(arrayResult); +// }); +// const arrayResult: Result = { +// path: pathInfo.path, +// content: { +// type: 2, // Assuming it's still type 2 for non-array items +// value: {}, +// revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", +// revision_nr: 1, +// created: Date.now(), +// modified: Date.now(), +// }, +// }; +// results.push(arrayResult); +// } else { +// // If 'value' is not an array, create a single object +// const processedValue = { +// [theKey]: value, +// }; + +// if (typeof value === "string") { +// const processedValue = { +// [theKey]: value, +// }; +// const nonObjectResult: Result = { +// path: pathInfo.parentPath as string, +// content: { +// type: 2, +// value: processedValue, +// revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", +// revision_nr: 1, +// created: Date.now(), +// modified: Date.now(), +// }, +// }; +// results.push(nonObjectResult); +// } +// } +// return results; +// } + +const nodeValueTypes = { + EMPTY: 0, + OBJECT: 1, + ARRAY: 2, + NUMBER: 3, + BOOLEAN: 4, + STRING: 5, + DATETIME: 6, + BIGINT: 7, + BINARY: 8, + REFERENCE: 9, +} as const; + +type Result = { + path: string; + content: { + type: (typeof nodeValueTypes)[keyof typeof nodeValueTypes]; + value: Record | string | number; + revision: string; + revision_nr: number; + created: number; + modified: number; + }; +}; + +function getType(value: unknown): number { + if (Array.isArray(value)) { + return nodeValueTypes.ARRAY; + } else if (value && typeof value === "object") { + return nodeValueTypes.OBJECT; + } else if (typeof value === "number") { + return nodeValueTypes.NUMBER; + } else if (typeof value === "boolean") { + return nodeValueTypes.BOOLEAN; + } else if (typeof value === "string") { + return nodeValueTypes.STRING; + } else if (typeof value === "bigint") { + return nodeValueTypes.BIGINT; + } else if (typeof value === "object" && (value as any).type === 6) { + return nodeValueTypes.DATETIME; + } else { + return nodeValueTypes.EMPTY; + } +} + +function processObject(obj, pathInfo, results, options) { + const currentPath = pathInfo.path; + const { assert_revision = "lnt02q7v0007oohx37705737" } = options; + const MAX_KEY_LENGTH = 50; + + if (typeof obj !== "object" || Array.isArray(obj)) { + return; + } + + const nonObjectKeys = {}; + let otherObject; + let maior; + + for (const [key, value] of Object.entries(obj)) { + const childPath = `${currentPath}/${key}`; + + if (Array.isArray(value)) { + value.forEach((element, index) => { + const arrayElementPath = `${childPath}[${index}]`; + processObject(element, { path: arrayElementPath }, results, options); + }); + const resultContent = { + path: childPath, + content: { + type: nodeValueTypes.ARRAY, + value: {}, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(resultContent); + } else if (typeof value === "object") { + processObject(value, { path: childPath }, results, options); + } else { + const valueType = getType(value); + if (String(value).length >= MAX_KEY_LENGTH) { + const resultContent = { + path: childPath, + content: { + type: valueType, + value: value, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(resultContent); + } else { + nonObjectKeys[key] = value; + if (String(value).length >= MAX_KEY_LENGTH) { + maior = Object.entries(nonObjectKeys) + .filter(([k, v]) => typeof v !== "string" || String(v).length >= MAX_KEY_LENGTH) + .reduce((acc, [k, v]) => { + acc[k] = v; + return acc; + }, {}); + } + } + } + } + + if (Object.keys(nonObjectKeys).length > 0) { + const resultContent = { + path: currentPath, + content: { + type: nodeValueTypes.OBJECT, + value: otherObject || nonObjectKeys, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(resultContent); + } + + if (maior) { + const resultContent = { + path: `${currentPath}/maior`, + content: { + type: nodeValueTypes.OBJECT, + value: maior, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(resultContent); + } +} + +function set(path: string, value: any, options: { assert_revision?: string } = {}): Result[] { + const results: Result[] = []; + + if (path.trim() === "") { + throw new Error(`Invalid path node`); + } + + const pathInfo = PathInfo.get(path); + + if (typeof value === "object" && !Array.isArray(value)) { + processObject(value, { path: pathInfo.path }, results, options); + } + let currentPath = ""; + + PathInfo.get(path).keys.forEach((part, i) => { + currentPath += (i > 0 ? "/" : "") + part; + + if (!Array.isArray(value)) { + const arrayResult = { + path: currentPath.substring(1), + content: { + // type: nodeValueTypes.ARRAY, + type: getType(value), + value: {}, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + if (arrayResult.path) { + results.push(arrayResult as any); + } + } + }); + + const theKey: any = pathInfo.key; + + if (Array.isArray(value) && value.length > 0) { + value.forEach((obj, i) => { + const currentPath = `${path}[${i}]`; + const processedValue = { + [theKey]: obj, + }; + const arrayResult: Result = { + path: currentPath, + content: { + type: nodeValueTypes.ARRAY, + value: processedValue, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(arrayResult); + }); + const arrayResult: Result = { + path: pathInfo.path, + content: { + type: nodeValueTypes.ARRAY, + value: {}, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(arrayResult); + } else { + const valueType = getType(value); + const processedValue = { + [theKey]: value, + }; + + if (typeof value === "string") { + const processedValue = { + [theKey]: value, + }; + const nonObjectResult: Result = { + path: pathInfo.parentPath as string, + content: { + type: valueType as any, + value: processedValue, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(nonObjectResult); + } + } + return results; +} + +const options = { assert_revision: "algum_valor" }; + +// Exemplo de uso +const path = "ivipcoin-db::movement_wallet/000523147298669313/history/1677138262468"; +const value = { + type: "deposit", + wallet_type: + "Valor da string maior Valor da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres.Valor da string maior Valor da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres.....", + payment_method: "bolbradesco", + original_amount: 603, + total_amount: [{ title: "Taxa de serviço", label: "Taxa de R$ 3,49", amount: 3.49 }], + id: 1311772470, + operation_type: "regular_payment", + payment_type: "ticket", + status: { + payment_method: + "Valor da string maior Valor da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres.Valor da string maior Valor da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres.....", + original_amount: 603, + total_amount: 606.49, + id: [{ title: "Taxa de serviço", label: "Taxa de R$ 3,49", amount: 3.49 }], + operation_type: "regular_payment", + payment_type: "ticket", + currency_id: "BRL", + history_id: "1677138262468", + striue50: + "Valor da string maior Valor Valor da string maior Valor da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres... da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres...", + }, + status_detail: "pending_waiting_payment", + currency_id: "BRL", + history_id: "1677138262468", +}; + +// const rsul = set("/example/curenty_value_pedro_rosada_ivipi_tiago", [{ prop1: "value1" }, { prop2: "value2" }], options); +// const x = set("ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/costs", [{ title: "Taxa de serviço", label: "Taxa de R$ 3,49", amount: 3.49 }], options); +// console.log(JSON.stringify(rsul, null, 2)); + +// console.log("-----------------------------------------------------------------------------"); + +// console.log(JSON.stringify(x, null, 2)); +// console.log("-----------------------------------------------------------------------------"); + +const results = set(path, value, options); + +console.log(JSON.stringify(results, null, 2));